
    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_38f6df3f4355fb1ebcc8d09a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_42074bcb3f4faaab320a6506.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_8248555f550f77e3925141ad.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_636f94a54a09d772a5a761cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_44f4e4cfe5fdbf902011b632.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_36862e44d3173ba0db504dc8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_157ad458e43793e89ff2255c.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_fdf633646002a7e5c6758dc5.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_5f713dbbb778c5d5732a74eb.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_64f4da16cf4ec8645d5ac310.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_16da90d53a37444962648969.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v4{vertical-align:-11.019000px;}
.v8{vertical-align:-9.429600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v5{vertical-align:11.019000px;}
.v7{vertical-align:20.727000px;}
.v9{vertical-align:22.610400px;}
.v6{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls53{letter-spacing:-1.080000px;}
.ls58{letter-spacing:-0.960000px;}
.ls51{letter-spacing:-0.900000px;}
.ls5f{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.780000px;}
.lsa0{letter-spacing:-0.432000px;}
.ls4c{letter-spacing:-0.360000px;}
.ls74{letter-spacing:-0.300000px;}
.ls9f{letter-spacing:-0.288000px;}
.ls52{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.180000px;}
.lsa1{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.120000px;}
.ls38{letter-spacing:-0.060000px;}
.ls54{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005676px;}
.ls4{letter-spacing:0.019200px;}
.ls7{letter-spacing:0.019800px;}
.ls6{letter-spacing:0.020400px;}
.ls8{letter-spacing:0.032400px;}
.ls77{letter-spacing:0.047820px;}
.ls57{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.053400px;}
.ls26{letter-spacing:0.060000px;}
.ls5b{letter-spacing:0.064620px;}
.ls4a{letter-spacing:0.069132px;}
.ls6e{letter-spacing:0.094620px;}
.ls7f{letter-spacing:0.096000px;}
.ls49{letter-spacing:0.108000px;}
.ls6c{letter-spacing:0.109620px;}
.ls2c{letter-spacing:0.120000px;}
.ls4b{letter-spacing:0.123600px;}
.ls89{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls93{letter-spacing:0.192000px;}
.ls5c{letter-spacing:0.207420px;}
.ls2b{letter-spacing:0.240000px;}
.ls71{letter-spacing:0.269220px;}
.ls48{letter-spacing:0.275820px;}
.ls81{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.300000px;}
.ls70{letter-spacing:0.327420px;}
.ls5a{letter-spacing:0.331620px;}
.ls87{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.360000px;}
.lsaa{letter-spacing:0.365400px;}
.ls62{letter-spacing:0.384000px;}
.ls6d{letter-spacing:0.391020px;}
.lsa{letter-spacing:0.420000px;}
.ls5e{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.480000px;}
.lsab{letter-spacing:0.514800px;}
.ls68{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.540000px;}
.ls5d{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.600000px;}
.ls56{letter-spacing:0.624000px;}
.ls2a{letter-spacing:0.660000px;}
.ls9a{letter-spacing:0.672000px;}
.ls13{letter-spacing:0.720000px;}
.ls55{letter-spacing:0.768000px;}
.ls31{letter-spacing:0.780000px;}
.ls16{letter-spacing:0.840000px;}
.ls9d{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.900000px;}
.ls47{letter-spacing:0.908220px;}
.ls97{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.960000px;}
.ls80{letter-spacing:1.008000px;}
.ls37{letter-spacing:1.020000px;}
.ls85{letter-spacing:1.056000px;}
.ls1e{letter-spacing:1.080000px;}
.lsa4{letter-spacing:1.104000px;}
.ls3a{letter-spacing:1.140000px;}
.ls84{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.200000px;}
.ls92{letter-spacing:1.248000px;}
.ls2d{letter-spacing:1.260000px;}
.ls8f{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.320000px;}
.ls82{letter-spacing:1.344000px;}
.lsb{letter-spacing:1.380000px;}
.ls8a{letter-spacing:1.392000px;}
.ls17{letter-spacing:1.440000px;}
.ls8b{letter-spacing:1.488000px;}
.ls46{letter-spacing:1.500000px;}
.lsa7{letter-spacing:1.536000px;}
.lse{letter-spacing:1.560000px;}
.lsa6{letter-spacing:1.584000px;}
.ls3b{letter-spacing:1.620000px;}
.ls83{letter-spacing:1.632000px;}
.ls18{letter-spacing:1.680000px;}
.ls9c{letter-spacing:1.728000px;}
.ls32{letter-spacing:1.740000px;}
.lsa5{letter-spacing:1.776000px;}
.ls35{letter-spacing:1.800000px;}
.ls8d{letter-spacing:1.824000px;}
.ls2f{letter-spacing:1.860000px;}
.ls19{letter-spacing:1.920000px;}
.ls95{letter-spacing:1.968000px;}
.ls3c{letter-spacing:1.980000px;}
.ls27{letter-spacing:2.040000px;}
.ls8c{letter-spacing:2.064000px;}
.ls39{letter-spacing:2.100000px;}
.ls88{letter-spacing:2.112000px;}
.ls36{letter-spacing:2.160000px;}
.ls8e{letter-spacing:2.208000px;}
.ls3f{letter-spacing:2.220000px;}
.ls2e{letter-spacing:2.280000px;}
.ls98{letter-spacing:2.304000px;}
.ls3d{letter-spacing:2.340000px;}
.ls1c{letter-spacing:2.400000px;}
.ls9b{letter-spacing:2.448000px;}
.ls34{letter-spacing:2.460000px;}
.ls99{letter-spacing:2.496000px;}
.ls45{letter-spacing:2.520000px;}
.ls91{letter-spacing:2.544000px;}
.ls24{letter-spacing:2.580000px;}
.ls33{letter-spacing:2.640000px;}
.ls9e{letter-spacing:2.688000px;}
.ls3e{letter-spacing:2.700000px;}
.ls90{letter-spacing:2.736000px;}
.ls12{letter-spacing:2.760000px;}
.ls96{letter-spacing:2.784000px;}
.ls67{letter-spacing:2.820000px;}
.ls86{letter-spacing:2.832000px;}
.ls60{letter-spacing:2.880000px;}
.lsf{letter-spacing:2.940000px;}
.ls15{letter-spacing:3.000000px;}
.lsc{letter-spacing:3.060000px;}
.ls41{letter-spacing:3.180000px;}
.ls7e{letter-spacing:3.300000px;}
.ls94{letter-spacing:3.312000px;}
.ls40{letter-spacing:3.360000px;}
.lsa8{letter-spacing:3.408000px;}
.ls1a{letter-spacing:3.420000px;}
.ls61{letter-spacing:3.480000px;}
.ls4d{letter-spacing:3.540000px;}
.ls42{letter-spacing:3.600000px;}
.ls75{letter-spacing:3.660000px;}
.lsa2{letter-spacing:3.696000px;}
.ls4f{letter-spacing:3.840000px;}
.ls59{letter-spacing:3.900000px;}
.ls76{letter-spacing:3.960000px;}
.ls1b{letter-spacing:4.080000px;}
.ls6f{letter-spacing:4.320000px;}
.ls63{letter-spacing:4.368000px;}
.ls65{letter-spacing:4.380000px;}
.ls6b{letter-spacing:4.500000px;}
.ls4e{letter-spacing:4.560000px;}
.ls21{letter-spacing:4.800000px;}
.lsa3{letter-spacing:4.848000px;}
.ls22{letter-spacing:4.920000px;}
.ls73{letter-spacing:4.980000px;}
.ls6a{letter-spacing:5.100000px;}
.ls78{letter-spacing:5.355000px;}
.ls9{letter-spacing:5.400000px;}
.ls7b{letter-spacing:5.580000px;}
.ls64{letter-spacing:5.700000px;}
.ls7a{letter-spacing:5.760000px;}
.ls79{letter-spacing:5.820000px;}
.ls66{letter-spacing:5.940000px;}
.ls69{letter-spacing:6.240000px;}
.ls7c{letter-spacing:6.420000px;}
.ls72{letter-spacing:6.480000px;}
.lsa9{letter-spacing:7.200000px;}
.ls7d{letter-spacing:7.980000px;}
.ls0{letter-spacing:59.532876px;}
.ls2{letter-spacing:59.533476px;}
.ls50{letter-spacing:1149.744000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.wsae{word-spacing:-21.240000px;}
.wsb0{word-spacing:-19.500000px;}
.ws6f{word-spacing:-18.900000px;}
.ws10a{word-spacing:-18.180000px;}
.wsca{word-spacing:-18.000000px;}
.ws108{word-spacing:-17.820000px;}
.wsa3{word-spacing:-17.460000px;}
.wsac{word-spacing:-17.220000px;}
.wsb6{word-spacing:-17.160000px;}
.wsce{word-spacing:-17.100000px;}
.wsad{word-spacing:-16.800000px;}
.wsb4{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.wsb7{word-spacing:-16.560000px;}
.ws6e{word-spacing:-16.500000px;}
.ws70{word-spacing:-16.440000px;}
.ws89{word-spacing:-16.320000px;}
.wsb5{word-spacing:-16.260000px;}
.wscc{word-spacing:-16.200000px;}
.wsb1{word-spacing:-16.140000px;}
.wsb3{word-spacing:-16.080000px;}
.wsaf{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.960000px;}
.wscd{word-spacing:-15.900000px;}
.ws45{word-spacing:-15.780000px;}
.ws31{word-spacing:-15.720000px;}
.ws99{word-spacing:-15.660000px;}
.wscb{word-spacing:-15.600000px;}
.ws6d{word-spacing:-15.420000px;}
.wsb2{word-spacing:-15.360000px;}
.ws88{word-spacing:-15.240000px;}
.wsb8{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws109{word-spacing:-14.940000px;}
.ws104{word-spacing:-14.832000px;}
.ws107{word-spacing:-14.820000px;}
.wsed{word-spacing:-14.736000px;}
.wsf3{word-spacing:-14.688000px;}
.wsd3{word-spacing:-14.112000px;}
.ws103{word-spacing:-13.776000px;}
.ws106{word-spacing:-13.536000px;}
.ws6{word-spacing:-13.344000px;}
.wsef{word-spacing:-13.152000px;}
.wsee{word-spacing:-13.056000px;}
.wsd5{word-spacing:-12.960000px;}
.wsf0{word-spacing:-12.864000px;}
.wsd4{word-spacing:-12.720000px;}
.wsf1{word-spacing:-12.672000px;}
.ws8a{word-spacing:-12.576000px;}
.wsa4{word-spacing:-12.528000px;}
.ws5{word-spacing:-12.510000px;}
.ws9a{word-spacing:-12.432000px;}
.ws9b{word-spacing:-12.384000px;}
.wsd2{word-spacing:-12.336000px;}
.wsd6{word-spacing:-12.288000px;}
.wsf2{word-spacing:-12.048000px;}
.ws8b{word-spacing:-12.000000px;}
.wsec{word-spacing:-11.952000px;}
.ws105{word-spacing:-11.568000px;}
.ws1{word-spacing:-10.210662px;}
.ws4{word-spacing:-9.724440px;}
.ws30{word-spacing:-9.108000px;}
.ws23{word-spacing:-8.745000px;}
.ws8c{word-spacing:-6.996000px;}
.wsbb{word-spacing:-6.240000px;}
.wsbc{word-spacing:-5.100000px;}
.ws2e{word-spacing:-4.080000px;}
.ws84{word-spacing:-3.900000px;}
.wsfe{word-spacing:-3.696000px;}
.ws3d{word-spacing:-3.180000px;}
.ws1a{word-spacing:-3.000000px;}
.ws8{word-spacing:-2.886000px;}
.ws10e{word-spacing:-2.832000px;}
.ws114{word-spacing:-2.820000px;}
.wsf9{word-spacing:-2.736000px;}
.ws6c{word-spacing:-2.640000px;}
.ws3c{word-spacing:-2.580000px;}
.wsa9{word-spacing:-2.460000px;}
.ws13{word-spacing:-2.400000px;}
.wsb9{word-spacing:-2.220000px;}
.wsd{word-spacing:-2.160000px;}
.wse1{word-spacing:-2.064000px;}
.wsf4{word-spacing:-1.968000px;}
.wsba{word-spacing:-1.800000px;}
.ws10b{word-spacing:-1.776000px;}
.ws26{word-spacing:-1.740000px;}
.ws8f{word-spacing:-1.680000px;}
.ws3f{word-spacing:-1.620000px;}
.ws10c{word-spacing:-1.584000px;}
.wsc4{word-spacing:-1.560000px;}
.ws81{word-spacing:-1.500000px;}
.wse2{word-spacing:-1.488000px;}
.ws85{word-spacing:-1.440000px;}
.ws101{word-spacing:-1.392000px;}
.wsc9{word-spacing:-1.380000px;}
.wsd8{word-spacing:-1.344000px;}
.ws39{word-spacing:-1.320000px;}
.wse3{word-spacing:-1.296000px;}
.wsbd{word-spacing:-1.260000px;}
.ws91{word-spacing:-1.200000px;}
.wsfc{word-spacing:-1.152000px;}
.ws3e{word-spacing:-1.140000px;}
.wsbf{word-spacing:-1.080000px;}
.wsda{word-spacing:-1.056000px;}
.ws19{word-spacing:-1.020000px;}
.wsd7{word-spacing:-1.008000px;}
.ws18{word-spacing:-0.960000px;}
.wsf7{word-spacing:-0.912000px;}
.wsd0{word-spacing:-0.900000px;}
.ws56{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.780000px;}
.ws3b{word-spacing:-0.720000px;}
.wsfa{word-spacing:-0.672000px;}
.ws1c{word-spacing:-0.660000px;}
.wse6{word-spacing:-0.624000px;}
.wse{word-spacing:-0.600000px;}
.ws94{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.480000px;}
.ws97{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.420000px;}
.wsf6{word-spacing:-0.384000px;}
.ws14{word-spacing:-0.360000px;}
.wsea{word-spacing:-0.336000px;}
.ws16{word-spacing:-0.300000px;}
.wse7{word-spacing:-0.288000px;}
.ws5f{word-spacing:-0.240000px;}
.ws24{word-spacing:-0.180000px;}
.wseb{word-spacing:-0.144000px;}
.wsc8{word-spacing:-0.120000px;}
.wsdf{word-spacing:-0.096000px;}
.wsc{word-spacing:-0.060000px;}
.ws5e{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wsdd{word-spacing:0.048000px;}
.ws22{word-spacing:0.060000px;}
.wsf8{word-spacing:0.096000px;}
.wsfd{word-spacing:0.144000px;}
.ws25{word-spacing:0.180000px;}
.wsfb{word-spacing:0.192000px;}
.ws54{word-spacing:0.240000px;}
.ws37{word-spacing:0.300000px;}
.ws110{word-spacing:0.336000px;}
.wsff{word-spacing:0.384000px;}
.wsc6{word-spacing:0.420000px;}
.wse9{word-spacing:0.432000px;}
.ws113{word-spacing:0.540000px;}
.ws10d{word-spacing:0.576000px;}
.ws55{word-spacing:0.600000px;}
.wsc0{word-spacing:0.660000px;}
.ws102{word-spacing:0.672000px;}
.ws36{word-spacing:0.720000px;}
.ws112{word-spacing:0.780000px;}
.wse8{word-spacing:0.816000px;}
.ws12{word-spacing:0.840000px;}
.ws98{word-spacing:0.864000px;}
.ws2b{word-spacing:0.900000px;}
.wsdb{word-spacing:0.960000px;}
.wsa2{word-spacing:1.008000px;}
.ws10f{word-spacing:1.056000px;}
.ws82{word-spacing:1.080000px;}
.wsa1{word-spacing:1.152000px;}
.wscf{word-spacing:1.200000px;}
.wsde{word-spacing:1.296000px;}
.ws28{word-spacing:1.320000px;}
.ws5a{word-spacing:1.380000px;}
.ws60{word-spacing:1.392000px;}
.wsc5{word-spacing:1.440000px;}
.ws100{word-spacing:1.488000px;}
.ws9e{word-spacing:1.500000px;}
.ws10{word-spacing:1.560000px;}
.ws115{word-spacing:1.620000px;}
.ws34{word-spacing:1.740000px;}
.wsa7{word-spacing:1.800000px;}
.ws1f{word-spacing:1.920000px;}
.wse5{word-spacing:1.968000px;}
.wse0{word-spacing:2.016000px;}
.wsa6{word-spacing:2.040000px;}
.wsaa{word-spacing:2.064000px;}
.wsa0{word-spacing:2.112000px;}
.ws6b{word-spacing:2.160000px;}
.ws7f{word-spacing:2.220000px;}
.ws2f{word-spacing:2.340000px;}
.wsa8{word-spacing:2.400000px;}
.ws21{word-spacing:2.460000px;}
.wsf5{word-spacing:2.496000px;}
.ws3a{word-spacing:2.520000px;}
.wsc7{word-spacing:2.580000px;}
.ws111{word-spacing:2.592000px;}
.ws53{word-spacing:2.640000px;}
.ws80{word-spacing:2.700000px;}
.wsab{word-spacing:2.736000px;}
.ws86{word-spacing:2.760000px;}
.ws96{word-spacing:2.784000px;}
.ws42{word-spacing:2.820000px;}
.ws9d{word-spacing:2.880000px;}
.ws11{word-spacing:3.000000px;}
.wse4{word-spacing:3.024000px;}
.wsbe{word-spacing:3.060000px;}
.ws9f{word-spacing:3.072000px;}
.ws92{word-spacing:3.120000px;}
.ws5b{word-spacing:3.180000px;}
.wsd9{word-spacing:3.216000px;}
.wsf{word-spacing:3.240000px;}
.wsa5{word-spacing:3.300000px;}
.ws1e{word-spacing:3.360000px;}
.ws40{word-spacing:3.420000px;}
.wsdc{word-spacing:3.456000px;}
.ws8d{word-spacing:3.480000px;}
.ws95{word-spacing:3.504000px;}
.ws93{word-spacing:3.540000px;}
.ws2c{word-spacing:3.600000px;}
.ws38{word-spacing:3.660000px;}
.ws27{word-spacing:3.720000px;}
.ws43{word-spacing:3.780000px;}
.ws2a{word-spacing:3.840000px;}
.ws9c{word-spacing:3.900000px;}
.ws5d{word-spacing:3.936000px;}
.ws44{word-spacing:3.960000px;}
.ws5c{word-spacing:3.984000px;}
.ws1d{word-spacing:4.020000px;}
.ws83{word-spacing:4.080000px;}
.ws32{word-spacing:4.140000px;}
.ws35{word-spacing:4.200000px;}
.ws90{word-spacing:4.260000px;}
.ws33{word-spacing:4.320000px;}
.ws41{word-spacing:4.380000px;}
.ws17{word-spacing:4.440000px;}
.ws87{word-spacing:4.560000px;}
.ws20{word-spacing:4.620000px;}
.ws1b{word-spacing:4.680000px;}
.ws29{word-spacing:4.740000px;}
.wsd1{word-spacing:4.800000px;}
.wsc2{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.wsc1{word-spacing:5.160000px;}
.ws59{word-spacing:5.340000px;}
.ws8e{word-spacing:6.000000px;}
.ws57{word-spacing:6.060000px;}
.wsc3{word-spacing:6.600000px;}
.ws46{word-spacing:28.896000px;}
.ws48{word-spacing:30.672000px;}
.ws4d{word-spacing:32.448000px;}
.ws51{word-spacing:124.896000px;}
.ws49{word-spacing:139.584000px;}
.ws4f{word-spacing:140.928000px;}
.ws4b{word-spacing:143.616000px;}
.ws4e{word-spacing:147.600000px;}
.ws50{word-spacing:148.944000px;}
.ws52{word-spacing:150.240000px;}
.ws7e{word-spacing:169.248000px;}
.ws78{word-spacing:170.592000px;}
.ws4a{word-spacing:179.136000px;}
.ws47{word-spacing:191.136000px;}
.ws6a{word-spacing:218.880000px;}
.ws68{word-spacing:219.504000px;}
.ws73{word-spacing:220.800000px;}
.ws76{word-spacing:223.920000px;}
.ws65{word-spacing:229.344000px;}
.ws4c{word-spacing:230.352000px;}
.ws64{word-spacing:232.416000px;}
.ws67{word-spacing:233.328000px;}
.ws66{word-spacing:233.760000px;}
.ws77{word-spacing:235.008000px;}
.ws79{word-spacing:239.088000px;}
.ws61{word-spacing:245.760000px;}
.ws62{word-spacing:256.416000px;}
.ws69{word-spacing:257.808000px;}
.ws71{word-spacing:260.784000px;}
.ws72{word-spacing:261.696000px;}
.ws7d{word-spacing:263.088000px;}
.ws7a{word-spacing:285.696000px;}
.ws63{word-spacing:286.176000px;}
.ws75{word-spacing:293.616000px;}
.ws74{word-spacing:294.576000px;}
.ws7c{word-spacing:296.352000px;}
.ws7b{word-spacing:318.576000px;}
._b{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._e{margin-left:-7.650000px;}
._4{margin-left:-6.502200px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.663600px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.237800px;}
._9{width:1.260000px;}
._7{width:2.763600px;}
._5{width:4.200000px;}
._8{width:5.760000px;}
._6{width:7.020000px;}
._a{width:8.283600px;}
._c{width:9.716400px;}
._88{width:12.096000px;}
._20{width:47.760000px;}
._16{width:74.400000px;}
._18{width:76.464000px;}
._81{width:81.318000px;}
._58{width:118.896000px;}
._65{width:121.968000px;}
._14{width:128.400000px;}
._5d{width:129.600000px;}
._60{width:134.400000px;}
._23{width:137.424000px;}
._21{width:139.440000px;}
._22{width:141.744000px;}
._15{width:149.856000px;}
._6f{width:153.178200px;}
._5f{width:154.230000px;}
._38{width:158.496000px;}
._13{width:160.752000px;}
._12{width:165.024000px;}
._1e{width:166.224000px;}
._1b{width:169.056000px;}
._6e{width:174.384000px;}
._70{width:175.407600px;}
._55{width:180.480000px;}
._68{width:187.968000px;}
._2d{width:190.416000px;}
._6d{width:193.968000px;}
._63{width:197.328000px;}
._26{width:199.728000px;}
._2c{width:200.832000px;}
._2f{width:202.416000px;}
._17{width:204.816000px;}
._61{width:206.832000px;}
._82{width:209.077800px;}
._19{width:210.816000px;}
._2e{width:212.832000px;}
._5c{width:216.486000px;}
._25{width:220.176000px;}
._84{width:224.214000px;}
._83{width:229.200000px;}
._24{width:233.478000px;}
._40{width:236.490000px;}
._6c{width:243.114000px;}
._29{width:244.554000px;}
._64{width:246.096000px;}
._3b{width:249.072000px;}
._f{width:256.038000px;}
._62{width:258.096000px;}
._3a{width:259.488000px;}
._31{width:263.136000px;}
._1a{width:265.632000px;}
._28{width:275.136000px;}
._10{width:281.472000px;}
._2b{width:287.136000px;}
._11{width:295.824000px;}
._3c{width:299.136000px;}
._1d{width:300.816000px;}
._1f{width:306.229800px;}
._1c{width:307.440000px;}
._3f{width:311.136000px;}
._73{width:314.101800px;}
._74{width:325.158000px;}
._42{width:333.654000px;}
._4c{width:341.136000px;}
._7e{width:344.886000px;}
._85{width:357.408000px;}
._56{width:360.918000px;}
._4a{width:363.030000px;}
._37{width:369.792000px;}
._33{width:383.856000px;}
._72{width:391.477800px;}
._3e{width:404.448000px;}
._30{width:406.416000px;}
._6a{width:409.626000px;}
._4d{width:414.432000px;}
._86{width:416.928000px;}
._7f{width:418.944000px;}
._57{width:429.696000px;}
._39{width:435.792000px;}
._32{width:440.448000px;}
._3d{width:448.416000px;}
._67{width:450.426000px;}
._59{width:455.958000px;}
._4e{width:471.558000px;}
._35{width:476.448000px;}
._80{width:477.504000px;}
._4b{width:485.088000px;}
._27{width:491.040000px;}
._5a{width:492.144000px;}
._48{width:506.262000px;}
._53{width:508.278000px;}
._47{width:510.288000px;}
._7c{width:511.686000px;}
._69{width:521.136000px;}
._66{width:523.968000px;}
._44{width:529.152000px;}
._41{width:531.072000px;}
._2a{width:534.384000px;}
._7d{width:535.632000px;}
._76{width:537.648000px;}
._79{width:539.131800px;}
._4f{width:544.416000px;}
._71{width:546.624000px;}
._5e{width:548.592000px;}
._36{width:549.744000px;}
._45{width:554.934000px;}
._7b{width:558.006000px;}
._50{width:562.230000px;}
._77{width:564.534000px;}
._34{width:567.072000px;}
._49{width:580.416000px;}
._78{width:598.224000px;}
._87{width:603.996000px;}
._46{width:615.744000px;}
._7a{width:616.944000px;}
._5b{width:628.086000px;}
._51{width:629.526000px;}
._54{width:636.672000px;}
._6b{width:656.346000px;}
._43{width:665.712000px;}
._75{width:674.208000px;}
._52{width:703.446000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:20.988000px;}
.fs5{font-size:26.235000px;}
.fsd{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs8{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;}
.y2e{bottom:47.777250px;}
.y1e9{bottom:80.121900px;}
.y22a{bottom:80.263500px;}
.y135{bottom:83.272050px;}
.y1b7{bottom:83.507100px;}
.y1a9{bottom:83.635350px;}
.y184{bottom:83.714400px;}
.y64{bottom:83.770350px;}
.yde{bottom:83.912100px;}
.y8c{bottom:83.920350px;}
.yaa{bottom:84.070350px;}
.y25{bottom:88.023000px;}
.y1e8{bottom:95.121900px;}
.y229{bottom:95.263500px;}
.y134{bottom:99.016050px;}
.y183{bottom:99.458400px;}
.y1a8{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.ydd{bottom:101.912100px;}
.y8b{bottom:101.920350px;}
.y17d{bottom:101.949450px;}
.ya9{bottom:102.070350px;}
.y24{bottom:103.023000px;}
.y15b{bottom:105.235050px;}
.y1e7{bottom:110.121900px;}
.y228{bottom:110.263500px;}
.y133{bottom:114.760050px;}
.y182{bottom:115.220400px;}
.y122{bottom:117.883350px;}
.y17c{bottom:118.197450px;}
.y1a7{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.ydc{bottom:119.912100px;}
.y8a{bottom:119.920350px;}
.ya8{bottom:120.070350px;}
.y19e{bottom:120.559050px;}
.y15a{bottom:121.483050px;}
.y1e6{bottom:125.121900px;}
.y227{bottom:125.263500px;}
.y132{bottom:130.504050px;}
.y181{bottom:130.964400px;}
.y23f{bottom:131.914350px;}
.y121{bottom:134.383350px;}
.y17b{bottom:134.445450px;}
.y19d{bottom:136.303050px;}
.y1b6{bottom:137.507100px;}
.y1a6{bottom:137.635350px;}
.y159{bottom:137.731050px;}
.y61{bottom:137.770350px;}
.ydb{bottom:137.912100px;}
.y89{bottom:137.920350px;}
.ya7{bottom:138.070350px;}
.y1e5{bottom:140.121900px;}
.y226{bottom:140.263500px;}
.y131{bottom:146.248050px;}
.y180{bottom:146.708400px;}
.y23e{bottom:149.914350px;}
.y120{bottom:150.631350px;}
.y17a{bottom:150.693450px;}
.y19c{bottom:152.047050px;}
.y158{bottom:154.231050px;}
.y1e4{bottom:155.121900px;}
.y225{bottom:155.263500px;}
.y1a5{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.yda{bottom:155.912100px;}
.y88{bottom:155.920350px;}
.ya6{bottom:156.070350px;}
.y29{bottom:160.874850px;}
.y130{bottom:161.992050px;}
.y17f{bottom:162.452400px;}
.y179{bottom:166.941450px;}
.y11f{bottom:167.131350px;}
.y19b{bottom:167.791050px;}
.y1e3{bottom:170.121900px;}
.y224{bottom:170.263500px;}
.y157{bottom:170.479050px;}
.y1a4{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.yd9{bottom:173.912100px;}
.y87{bottom:173.920350px;}
.ya5{bottom:174.070350px;}
.y12f{bottom:177.736050px;}
.y28{bottom:178.874850px;}
.y178{bottom:183.189450px;}
.y11e{bottom:183.379350px;}
.y19a{bottom:183.559050px;}
.y1e2{bottom:185.121900px;}
.y223{bottom:185.263500px;}
.y23d{bottom:185.914350px;}
.y156{bottom:186.727050px;}
.y1a3{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.yd8{bottom:191.912100px;}
.y86{bottom:191.920350px;}
.ya4{bottom:192.070350px;}
.y12e{bottom:193.480050px;}
.y27{bottom:196.874850px;}
.y199{bottom:199.303050px;}
.y177{bottom:199.437450px;}
.y11d{bottom:199.879350px;}
.y1e1{bottom:200.121900px;}
.y222{bottom:200.263500px;}
.y155{bottom:202.975050px;}
.y23c{bottom:203.914350px;}
.y12d{bottom:209.224050px;}
.y1a2{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.yd7{bottom:209.912100px;}
.y85{bottom:209.920350px;}
.ya3{bottom:210.070350px;}
.y2b{bottom:214.874850px;}
.y198{bottom:215.047050px;}
.y1e0{bottom:215.121900px;}
.y221{bottom:215.263500px;}
.y176{bottom:215.685450px;}
.y11c{bottom:216.127350px;}
.y154{bottom:219.223050px;}
.y1a1{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.yd6{bottom:227.912100px;}
.y84{bottom:227.920350px;}
.ya2{bottom:228.070350px;}
.y1df{bottom:230.121900px;}
.y220{bottom:230.263500px;}
.y197{bottom:230.791050px;}
.y175{bottom:231.933450px;}
.y26{bottom:232.469850px;}
.y11b{bottom:232.627350px;}
.y2a{bottom:232.874850px;}
.y153{bottom:235.471050px;}
.y23b{bottom:239.509350px;}
.y1de{bottom:245.121900px;}
.y21f{bottom:245.263500px;}
.y5b{bottom:245.770350px;}
.yd5{bottom:245.912100px;}
.y83{bottom:245.920350px;}
.ya1{bottom:246.070350px;}
.y196{bottom:246.535050px;}
.y174{bottom:248.181450px;}
.y11a{bottom:248.875350px;}
.y152{bottom:252.583050px;}
.y1dd{bottom:260.121900px;}
.y21e{bottom:260.263500px;}
.y1a0{bottom:263.230350px;}
.y5a{bottom:263.770350px;}
.yd4{bottom:263.912100px;}
.y82{bottom:263.920350px;}
.ya0{bottom:264.070350px;}
.y173{bottom:264.429450px;}
.y119{bottom:265.375350px;}
.y151{bottom:268.831050px;}
.y1dc{bottom:275.121900px;}
.y21d{bottom:275.263500px;}
.y172{bottom:280.677450px;}
.y118{bottom:281.623350px;}
.y59{bottom:281.770350px;}
.yd3{bottom:281.912100px;}
.y81{bottom:281.920350px;}
.y9f{bottom:282.070350px;}
.y150{bottom:285.079050px;}
.y1db{bottom:290.121900px;}
.y21c{bottom:290.263500px;}
.y171{bottom:296.925450px;}
.y117{bottom:298.123350px;}
.y1b5{bottom:299.507100px;}
.y58{bottom:299.770350px;}
.yd2{bottom:299.912100px;}
.y80{bottom:299.920350px;}
.y9e{bottom:300.070350px;}
.y14f{bottom:301.327050px;}
.y23{bottom:304.554900px;}
.y1da{bottom:305.121900px;}
.y21b{bottom:305.263500px;}
.y170{bottom:313.173450px;}
.y116{bottom:314.371350px;}
.y14e{bottom:317.575050px;}
.y57{bottom:317.770350px;}
.yd1{bottom:317.912100px;}
.y7f{bottom:317.920350px;}
.y9d{bottom:318.070350px;}
.y1d9{bottom:320.121900px;}
.y21a{bottom:320.263500px;}
.y22{bottom:322.564200px;}
.y115{bottom:330.871350px;}
.y14d{bottom:333.823050px;}
.y1d8{bottom:335.121900px;}
.y219{bottom:335.263500px;}
.y56{bottom:335.770350px;}
.yd0{bottom:335.912100px;}
.y7e{bottom:335.920350px;}
.y9c{bottom:336.070350px;}
.y16f{bottom:342.177450px;}
.y114{bottom:347.119350px;}
.y21{bottom:349.909200px;}
.y14c{bottom:350.071050px;}
.y1d7{bottom:350.121900px;}
.y218{bottom:350.263500px;}
.y55{bottom:353.770350px;}
.ycf{bottom:353.912100px;}
.y7d{bottom:353.920350px;}
.y9b{bottom:354.070350px;}
.y16e{bottom:358.677450px;}
.y113{bottom:363.619350px;}
.y1d6{bottom:365.121900px;}
.y217{bottom:365.263500px;}
.y20{bottom:367.909200px;}
.y54{bottom:371.770350px;}
.yce{bottom:371.912100px;}
.y7c{bottom:371.920350px;}
.y9a{bottom:372.070350px;}
.y14b{bottom:379.075050px;}
.y112{bottom:379.867350px;}
.y1d5{bottom:380.121900px;}
.y216{bottom:380.263500px;}
.y1f{bottom:385.909200px;}
.y53{bottom:389.770350px;}
.y1b4{bottom:389.912100px;}
.y7b{bottom:389.920350px;}
.ycd{bottom:389.935350px;}
.y1d4{bottom:395.121900px;}
.y215{bottom:395.263500px;}
.y14a{bottom:395.575050px;}
.y111{bottom:396.367350px;}
.y1e{bottom:403.909200px;}
.y99{bottom:407.665350px;}
.y52{bottom:407.770350px;}
.y1b3{bottom:407.912100px;}
.y7a{bottom:407.920350px;}
.ycc{bottom:407.935350px;}
.y16d{bottom:409.745700px;}
.y1d3{bottom:410.121900px;}
.y214{bottom:410.263500px;}
.y110{bottom:412.615350px;}
.y1d{bottom:421.909200px;}
.y1d2{bottom:425.121900px;}
.y213{bottom:425.263500px;}
.y98{bottom:425.665350px;}
.y51{bottom:425.770350px;}
.y1b2{bottom:425.912100px;}
.y79{bottom:425.920350px;}
.ycb{bottom:425.935350px;}
.y16c{bottom:425.993700px;}
.y10f{bottom:429.115350px;}
.y1c{bottom:439.909200px;}
.y1d1{bottom:440.121900px;}
.y212{bottom:440.263500px;}
.y16b{bottom:442.241700px;}
.y97{bottom:443.665350px;}
.y50{bottom:443.770350px;}
.y1b1{bottom:443.912100px;}
.y78{bottom:443.920350px;}
.yca{bottom:443.935350px;}
.y10e{bottom:445.363350px;}
.y149{bottom:446.647200px;}
.y1d0{bottom:455.121900px;}
.y211{bottom:455.263500px;}
.y1b{bottom:457.909200px;}
.y16a{bottom:458.489700px;}
.y4f{bottom:461.770350px;}
.y10d{bottom:461.863350px;}
.y1b0{bottom:461.912100px;}
.y77{bottom:461.920350px;}
.yc9{bottom:461.935350px;}
.y148{bottom:462.895200px;}
.y1cf{bottom:470.121900px;}
.y210{bottom:470.263500px;}
.y169{bottom:474.737700px;}
.y1a{bottom:475.909200px;}
.y147{bottom:479.143200px;}
.y1af{bottom:479.507100px;}
.y4e{bottom:479.770350px;}
.y76{bottom:479.920350px;}
.yc8{bottom:479.935350px;}
.y1ce{bottom:485.121900px;}
.y20f{bottom:485.263500px;}
.y10c{bottom:490.867350px;}
.y168{bottom:490.985700px;}
.y19{bottom:493.909200px;}
.y146{bottom:495.391200px;}
.y4d{bottom:497.770350px;}
.y75{bottom:497.920350px;}
.yc7{bottom:497.935350px;}
.y1cd{bottom:500.121900px;}
.y20e{bottom:500.263500px;}
.y167{bottom:507.233700px;}
.y10b{bottom:507.367350px;}
.y145{bottom:511.639200px;}
.y18{bottom:511.909200px;}
.y1cc{bottom:515.121900px;}
.y20d{bottom:515.263500px;}
.y4c{bottom:515.770350px;}
.y1ae{bottom:515.912100px;}
.y74{bottom:515.920350px;}
.yc6{bottom:515.935350px;}
.y166{bottom:523.481700px;}
.y144{bottom:527.887200px;}
.y17{bottom:529.909200px;}
.y1cb{bottom:530.121900px;}
.y20c{bottom:530.263500px;}
.y4b{bottom:533.770350px;}
.y1ad{bottom:533.912100px;}
.y73{bottom:533.920350px;}
.yc5{bottom:533.935350px;}
.y165{bottom:539.729700px;}
.y10a{bottom:539.762100px;}
.y143{bottom:544.135200px;}
.y1ca{bottom:545.121900px;}
.y20b{bottom:545.263500px;}
.y16{bottom:547.909200px;}
.y4a{bottom:551.770350px;}
.y1ac{bottom:551.912100px;}
.y72{bottom:551.920350px;}
.yc4{bottom:551.935350px;}
.y164{bottom:555.977700px;}
.y1c9{bottom:560.121900px;}
.y20a{bottom:560.263500px;}
.y142{bottom:560.383200px;}
.y15{bottom:565.909200px;}
.y49{bottom:569.770350px;}
.y1ab{bottom:569.912100px;}
.y71{bottom:569.920350px;}
.yc3{bottom:569.935350px;}
.y163{bottom:572.225700px;}
.y1c8{bottom:575.121900px;}
.y209{bottom:575.263500px;}
.y141{bottom:576.631200px;}
.y14{bottom:583.909200px;}
.y48{bottom:587.770350px;}
.y109{bottom:587.777100px;}
.yf3{bottom:587.912100px;}
.y70{bottom:587.920350px;}
.yc2{bottom:587.935350px;}
.y162{bottom:588.473700px;}
.y1c7{bottom:590.121900px;}
.y208{bottom:590.263500px;}
.y140{bottom:592.879200px;}
.y13{bottom:601.909200px;}
.y161{bottom:604.721700px;}
.y1c6{bottom:605.121900px;}
.y207{bottom:605.263500px;}
.y47{bottom:605.770350px;}
.y108{bottom:605.777100px;}
.yf2{bottom:605.912100px;}
.y6f{bottom:605.920350px;}
.yc1{bottom:605.935350px;}
.y13f{bottom:609.127200px;}
.y12{bottom:619.909200px;}
.y1c5{bottom:620.121900px;}
.y206{bottom:620.263500px;}
.y160{bottom:620.969700px;}
.y46{bottom:623.770350px;}
.y107{bottom:623.777100px;}
.yf1{bottom:623.912100px;}
.y6e{bottom:623.920350px;}
.yc0{bottom:623.935350px;}
.y13e{bottom:625.375200px;}
.y1c4{bottom:635.121900px;}
.y205{bottom:635.263500px;}
.y11{bottom:637.909200px;}
.y13d{bottom:641.623200px;}
.y45{bottom:641.770350px;}
.y106{bottom:641.777100px;}
.yf0{bottom:641.912100px;}
.y6d{bottom:641.920350px;}
.ybf{bottom:641.935350px;}
.y15f{bottom:649.973700px;}
.y1c3{bottom:650.121900px;}
.y204{bottom:650.263500px;}
.y10{bottom:655.909200px;}
.y13c{bottom:657.871200px;}
.y44{bottom:659.770350px;}
.y105{bottom:659.777100px;}
.yef{bottom:659.912100px;}
.y6c{bottom:659.920350px;}
.ybe{bottom:659.935350px;}
.y1c2{bottom:665.121900px;}
.y203{bottom:665.263500px;}
.yf{bottom:673.909200px;}
.y13b{bottom:674.119200px;}
.y195{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y104{bottom:677.777100px;}
.yee{bottom:677.912100px;}
.y96{bottom:677.920350px;}
.ybd{bottom:677.935350px;}
.y1c1{bottom:680.121900px;}
.y202{bottom:680.263500px;}
.y15e{bottom:682.367100px;}
.y1c0{bottom:695.121900px;}
.y201{bottom:695.263500px;}
.y6b{bottom:695.515350px;}
.y194{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y103{bottom:695.777100px;}
.yed{bottom:695.912100px;}
.y95{bottom:695.920350px;}
.ybc{bottom:695.935350px;}
.y15d{bottom:701.867100px;}
.y13a{bottom:703.123200px;}
.y1bf{bottom:710.121900px;}
.y200{bottom:710.263500px;}
.y6a{bottom:713.515350px;}
.y193{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y102{bottom:713.777100px;}
.yec{bottom:713.912100px;}
.y94{bottom:713.920350px;}
.ybb{bottom:713.935350px;}
.ye{bottom:719.067300px;}
.y1be{bottom:725.121900px;}
.y1ff{bottom:725.263500px;}
.yd{bottom:731.518050px;}
.y192{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y101{bottom:731.777100px;}
.yeb{bottom:731.912100px;}
.y93{bottom:731.920350px;}
.yba{bottom:731.935350px;}
.y139{bottom:735.520350px;}
.y1bd{bottom:740.121900px;}
.y1fe{bottom:740.263500px;}
.y191{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y100{bottom:749.777100px;}
.y24e{bottom:749.779350px;}
.yea{bottom:749.912100px;}
.y92{bottom:749.920350px;}
.yb9{bottom:749.935350px;}
.y138{bottom:755.020350px;}
.y1bc{bottom:755.121900px;}
.y1fd{bottom:755.263500px;}
.yc{bottom:763.233600px;}
.y190{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.yff{bottom:767.777100px;}
.y24d{bottom:767.779350px;}
.ye9{bottom:767.912100px;}
.y91{bottom:767.920350px;}
.yb8{bottom:767.935350px;}
.y1bb{bottom:770.121900px;}
.y1fc{bottom:770.263500px;}
.yb{bottom:782.158950px;}
.y1fb{bottom:785.263500px;}
.y18f{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.yfe{bottom:785.777100px;}
.y24c{bottom:785.779350px;}
.y90{bottom:785.920350px;}
.yb7{bottom:785.935350px;}
.ya{bottom:790.233600px;}
.y1fa{bottom:800.263500px;}
.y1ba{bottom:803.230350px;}
.y18e{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.yfd{bottom:803.777100px;}
.y24b{bottom:803.779350px;}
.y8f{bottom:803.920350px;}
.yb6{bottom:803.935350px;}
.y1f9{bottom:815.263500px;}
.y18d{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.yfc{bottom:821.777100px;}
.y24a{bottom:821.779350px;}
.ye8{bottom:821.920350px;}
.yb5{bottom:821.935350px;}
.y8{bottom:822.658950px;}
.y23a{bottom:830.263500px;}
.y1f8{bottom:830.265900px;}
.y8e{bottom:839.515350px;}
.y18c{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.yfb{bottom:839.777100px;}
.y249{bottom:839.779350px;}
.ye7{bottom:839.920350px;}
.y239{bottom:845.263500px;}
.y1f7{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y8d{bottom:857.515350px;}
.yb4{bottom:857.530350px;}
.y18b{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.yfa{bottom:857.777100px;}
.y248{bottom:857.779350px;}
.ye6{bottom:857.920350px;}
.y238{bottom:860.263500px;}
.y1f6{bottom:860.265900px;}
.y237{bottom:875.263500px;}
.y1f5{bottom:875.265900px;}
.y137{bottom:875.515350px;}
.y18a{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.yf9{bottom:875.777100px;}
.y247{bottom:875.779350px;}
.ye5{bottom:875.920350px;}
.y236{bottom:890.263500px;}
.y1f4{bottom:890.265900px;}
.y37{bottom:893.770350px;}
.y246{bottom:893.779350px;}
.yb3{bottom:893.785350px;}
.ye4{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y235{bottom:905.263500px;}
.y1f3{bottom:905.265900px;}
.y189{bottom:911.230350px;}
.yf8{bottom:911.372100px;}
.y36{bottom:911.770350px;}
.y245{bottom:911.779350px;}
.yb2{bottom:911.785350px;}
.ye3{bottom:911.920350px;}
.y234{bottom:920.263500px;}
.y1f2{bottom:920.265900px;}
.y67{bottom:929.365350px;}
.yf7{bottom:929.372100px;}
.y35{bottom:929.770350px;}
.yb1{bottom:929.785350px;}
.ye2{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y233{bottom:935.263500px;}
.y1f1{bottom:935.265900px;}
.y1b9{bottom:947.365350px;}
.y187{bottom:947.515350px;}
.y34{bottom:947.770350px;}
.y128{bottom:947.772600px;}
.y244{bottom:947.779350px;}
.yb0{bottom:947.785350px;}
.ye1{bottom:947.920350px;}
.y232{bottom:950.263500px;}
.y1f0{bottom:950.265900px;}
.y66{bottom:965.230350px;}
.yf6{bottom:965.237100px;}
.y231{bottom:965.263500px;}
.y1ef{bottom:965.265900px;}
.y186{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y127{bottom:965.772600px;}
.y243{bottom:965.779350px;}
.yaf{bottom:965.785350px;}
.ye0{bottom:965.920350px;}
.y4{bottom:970.465200px;}
.y230{bottom:980.263500px;}
.y1ee{bottom:980.265900px;}
.y1b8{bottom:983.365350px;}
.y32{bottom:983.770350px;}
.y12c{bottom:983.772600px;}
.y242{bottom:983.779350px;}
.yae{bottom:983.785350px;}
.y22f{bottom:995.263500px;}
.y1ed{bottom:995.265900px;}
.y126{bottom:1001.367600px;}
.ydf{bottom:1001.515350px;}
.y31{bottom:1001.770350px;}
.y12b{bottom:1001.772600px;}
.y188{bottom:1001.777100px;}
.yad{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y22e{bottom:1010.263500px;}
.y1ec{bottom:1010.265900px;}
.y69{bottom:1019.365350px;}
.y125{bottom:1019.367600px;}
.y30{bottom:1019.770350px;}
.y12a{bottom:1019.772600px;}
.yf5{bottom:1019.777100px;}
.y241{bottom:1019.779350px;}
.yac{bottom:1019.785350px;}
.y22d{bottom:1025.263500px;}
.y1eb{bottom:1025.265900px;}
.y68{bottom:1037.365350px;}
.y124{bottom:1037.367600px;}
.y1aa{bottom:1037.763600px;}
.y2f{bottom:1037.770350px;}
.y129{bottom:1037.772600px;}
.yf4{bottom:1037.777100px;}
.y240{bottom:1037.779350px;}
.yab{bottom:1037.785350px;}
.y22c{bottom:1040.263500px;}
.y1ea{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y65{bottom:1132.418700px;}
.y136{bottom:1132.421700px;}
.y19f{bottom:1132.423050px;}
.y22b{bottom:1132.423500px;}
.y185{bottom:1132.430400px;}
.y123{bottom:1132.459350px;}
.y15c{bottom:1132.471050px;}
.y17e{bottom:1132.473450px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.hd{height:41.689453px;}
.h13{height:41.716453px;}
.h14{height:42.054361px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h10{height:52.567951px;}
.h11{height:52.758872px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:70.582650px;}
.xb{left:76.535400px;}
.x22{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x29{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x2a{left:123.307050px;}
.x3{left:125.427900px;}
.x7{left:131.816400px;}
.x11{left:165.985350px;}
.x5{left:191.338500px;}
.x28{left:194.285400px;}
.x27{left:211.390350px;}
.x6{left:212.876400px;}
.x17{left:385.341300px;}
.x1c{left:448.569300px;}
.xa{left:455.041500px;}
.xd{left:457.055400px;}
.x12{left:478.345350px;}
.x8{left:480.476400px;}
.x20{left:483.477300px;}
.xe{left:491.075400px;}
.x2b{left:503.839050px;}
.x13{left:512.365350px;}
.x18{left:516.969300px;}
.x24{left:579.421350px;}
.x15{left:612.906150px;}
.x10{left:663.492300px;}
.x23{left:691.801350px;}
.x2{left:693.365400px;}
.x19{left:700.065300px;}
.x1d{left:704.061300px;}
.x1f{left:710.937300px;}
.x25{left:721.712400px;}
.xf{left:728.391600px;}
.x21{left:730.077300px;}
.x26{left:743.871000px;}
.x14{left:749.651400px;}
.x1b{left:758.949300px;}
.x1a{left:768.009300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-9.794667pt;}
.v8{vertical-align:-8.381867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v5{vertical-align:9.794667pt;}
.v7{vertical-align:18.424000pt;}
.v9{vertical-align:20.098133pt;}
.v6{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls53{letter-spacing:-0.960000pt;}
.ls58{letter-spacing:-0.853333pt;}
.ls51{letter-spacing:-0.800000pt;}
.ls5f{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsa0{letter-spacing:-0.384000pt;}
.ls4c{letter-spacing:-0.320000pt;}
.ls74{letter-spacing:-0.266667pt;}
.ls9f{letter-spacing:-0.256000pt;}
.ls52{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.160000pt;}
.lsa1{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.106667pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls54{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.005045pt;}
.ls4{letter-spacing:0.017067pt;}
.ls7{letter-spacing:0.017600pt;}
.ls6{letter-spacing:0.018133pt;}
.ls8{letter-spacing:0.028800pt;}
.ls77{letter-spacing:0.042507pt;}
.ls57{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.047467pt;}
.ls26{letter-spacing:0.053333pt;}
.ls5b{letter-spacing:0.057440pt;}
.ls4a{letter-spacing:0.061451pt;}
.ls6e{letter-spacing:0.084107pt;}
.ls7f{letter-spacing:0.085333pt;}
.ls49{letter-spacing:0.096000pt;}
.ls6c{letter-spacing:0.097440pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls4b{letter-spacing:0.109867pt;}
.ls89{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls93{letter-spacing:0.170667pt;}
.ls5c{letter-spacing:0.184373pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls71{letter-spacing:0.239307pt;}
.ls48{letter-spacing:0.245173pt;}
.ls81{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.266667pt;}
.ls70{letter-spacing:0.291040pt;}
.ls5a{letter-spacing:0.294773pt;}
.ls87{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.320000pt;}
.lsaa{letter-spacing:0.324800pt;}
.ls62{letter-spacing:0.341333pt;}
.ls6d{letter-spacing:0.347573pt;}
.lsa{letter-spacing:0.373333pt;}
.ls5e{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.426667pt;}
.lsab{letter-spacing:0.457600pt;}
.ls68{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls5d{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls56{letter-spacing:0.554667pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls9a{letter-spacing:0.597333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls55{letter-spacing:0.682667pt;}
.ls31{letter-spacing:0.693333pt;}
.ls16{letter-spacing:0.746667pt;}
.ls9d{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls47{letter-spacing:0.807307pt;}
.ls97{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls80{letter-spacing:0.896000pt;}
.ls37{letter-spacing:0.906667pt;}
.ls85{letter-spacing:0.938667pt;}
.ls1e{letter-spacing:0.960000pt;}
.lsa4{letter-spacing:0.981333pt;}
.ls3a{letter-spacing:1.013333pt;}
.ls84{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.066667pt;}
.ls92{letter-spacing:1.109333pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls8f{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.173333pt;}
.ls82{letter-spacing:1.194667pt;}
.lsb{letter-spacing:1.226667pt;}
.ls8a{letter-spacing:1.237333pt;}
.ls17{letter-spacing:1.280000pt;}
.ls8b{letter-spacing:1.322667pt;}
.ls46{letter-spacing:1.333333pt;}
.lsa7{letter-spacing:1.365333pt;}
.lse{letter-spacing:1.386667pt;}
.lsa6{letter-spacing:1.408000pt;}
.ls3b{letter-spacing:1.440000pt;}
.ls83{letter-spacing:1.450667pt;}
.ls18{letter-spacing:1.493333pt;}
.ls9c{letter-spacing:1.536000pt;}
.ls32{letter-spacing:1.546667pt;}
.lsa5{letter-spacing:1.578667pt;}
.ls35{letter-spacing:1.600000pt;}
.ls8d{letter-spacing:1.621333pt;}
.ls2f{letter-spacing:1.653333pt;}
.ls19{letter-spacing:1.706667pt;}
.ls95{letter-spacing:1.749333pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls27{letter-spacing:1.813333pt;}
.ls8c{letter-spacing:1.834667pt;}
.ls39{letter-spacing:1.866667pt;}
.ls88{letter-spacing:1.877333pt;}
.ls36{letter-spacing:1.920000pt;}
.ls8e{letter-spacing:1.962667pt;}
.ls3f{letter-spacing:1.973333pt;}
.ls2e{letter-spacing:2.026667pt;}
.ls98{letter-spacing:2.048000pt;}
.ls3d{letter-spacing:2.080000pt;}
.ls1c{letter-spacing:2.133333pt;}
.ls9b{letter-spacing:2.176000pt;}
.ls34{letter-spacing:2.186667pt;}
.ls99{letter-spacing:2.218667pt;}
.ls45{letter-spacing:2.240000pt;}
.ls91{letter-spacing:2.261333pt;}
.ls24{letter-spacing:2.293333pt;}
.ls33{letter-spacing:2.346667pt;}
.ls9e{letter-spacing:2.389333pt;}
.ls3e{letter-spacing:2.400000pt;}
.ls90{letter-spacing:2.432000pt;}
.ls12{letter-spacing:2.453333pt;}
.ls96{letter-spacing:2.474667pt;}
.ls67{letter-spacing:2.506667pt;}
.ls86{letter-spacing:2.517333pt;}
.ls60{letter-spacing:2.560000pt;}
.lsf{letter-spacing:2.613333pt;}
.ls15{letter-spacing:2.666667pt;}
.lsc{letter-spacing:2.720000pt;}
.ls41{letter-spacing:2.826667pt;}
.ls7e{letter-spacing:2.933333pt;}
.ls94{letter-spacing:2.944000pt;}
.ls40{letter-spacing:2.986667pt;}
.lsa8{letter-spacing:3.029333pt;}
.ls1a{letter-spacing:3.040000pt;}
.ls61{letter-spacing:3.093333pt;}
.ls4d{letter-spacing:3.146667pt;}
.ls42{letter-spacing:3.200000pt;}
.ls75{letter-spacing:3.253333pt;}
.lsa2{letter-spacing:3.285333pt;}
.ls4f{letter-spacing:3.413333pt;}
.ls59{letter-spacing:3.466667pt;}
.ls76{letter-spacing:3.520000pt;}
.ls1b{letter-spacing:3.626667pt;}
.ls6f{letter-spacing:3.840000pt;}
.ls63{letter-spacing:3.882667pt;}
.ls65{letter-spacing:3.893333pt;}
.ls6b{letter-spacing:4.000000pt;}
.ls4e{letter-spacing:4.053333pt;}
.ls21{letter-spacing:4.266667pt;}
.lsa3{letter-spacing:4.309333pt;}
.ls22{letter-spacing:4.373333pt;}
.ls73{letter-spacing:4.426667pt;}
.ls6a{letter-spacing:4.533333pt;}
.ls78{letter-spacing:4.760000pt;}
.ls9{letter-spacing:4.800000pt;}
.ls7b{letter-spacing:4.960000pt;}
.ls64{letter-spacing:5.066667pt;}
.ls7a{letter-spacing:5.120000pt;}
.ls79{letter-spacing:5.173333pt;}
.ls66{letter-spacing:5.280000pt;}
.ls69{letter-spacing:5.546667pt;}
.ls7c{letter-spacing:5.706667pt;}
.ls72{letter-spacing:5.760000pt;}
.lsa9{letter-spacing:6.400000pt;}
.ls7d{letter-spacing:7.093333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls2{letter-spacing:52.918645pt;}
.ls50{letter-spacing:1021.994667pt;}
.ws0{word-spacing:-31.284267pt;}
.wsae{word-spacing:-18.880000pt;}
.wsb0{word-spacing:-17.333333pt;}
.ws6f{word-spacing:-16.800000pt;}
.ws10a{word-spacing:-16.160000pt;}
.wsca{word-spacing:-16.000000pt;}
.ws108{word-spacing:-15.840000pt;}
.wsa3{word-spacing:-15.520000pt;}
.wsac{word-spacing:-15.306667pt;}
.wsb6{word-spacing:-15.253333pt;}
.wsce{word-spacing:-15.200000pt;}
.wsad{word-spacing:-14.933333pt;}
.wsb4{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.wsb7{word-spacing:-14.720000pt;}
.ws6e{word-spacing:-14.666667pt;}
.ws70{word-spacing:-14.613333pt;}
.ws89{word-spacing:-14.506667pt;}
.wsb5{word-spacing:-14.453333pt;}
.wscc{word-spacing:-14.400000pt;}
.wsb1{word-spacing:-14.346667pt;}
.wsb3{word-spacing:-14.293333pt;}
.wsaf{word-spacing:-14.240000pt;}
.wsb{word-spacing:-14.186667pt;}
.wscd{word-spacing:-14.133333pt;}
.ws45{word-spacing:-14.026667pt;}
.ws31{word-spacing:-13.973333pt;}
.ws99{word-spacing:-13.920000pt;}
.wscb{word-spacing:-13.866667pt;}
.ws6d{word-spacing:-13.706667pt;}
.wsb2{word-spacing:-13.653333pt;}
.ws88{word-spacing:-13.546667pt;}
.wsb8{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws109{word-spacing:-13.280000pt;}
.ws104{word-spacing:-13.184000pt;}
.ws107{word-spacing:-13.173333pt;}
.wsed{word-spacing:-13.098667pt;}
.wsf3{word-spacing:-13.056000pt;}
.wsd3{word-spacing:-12.544000pt;}
.ws103{word-spacing:-12.245333pt;}
.ws106{word-spacing:-12.032000pt;}
.ws6{word-spacing:-11.861333pt;}
.wsef{word-spacing:-11.690667pt;}
.wsee{word-spacing:-11.605333pt;}
.wsd5{word-spacing:-11.520000pt;}
.wsf0{word-spacing:-11.434667pt;}
.wsd4{word-spacing:-11.306667pt;}
.wsf1{word-spacing:-11.264000pt;}
.ws8a{word-spacing:-11.178667pt;}
.wsa4{word-spacing:-11.136000pt;}
.ws5{word-spacing:-11.120000pt;}
.ws9a{word-spacing:-11.050667pt;}
.ws9b{word-spacing:-11.008000pt;}
.wsd2{word-spacing:-10.965333pt;}
.wsd6{word-spacing:-10.922667pt;}
.wsf2{word-spacing:-10.709333pt;}
.ws8b{word-spacing:-10.666667pt;}
.wsec{word-spacing:-10.624000pt;}
.ws105{word-spacing:-10.282667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws4{word-spacing:-8.643947pt;}
.ws30{word-spacing:-8.096000pt;}
.ws23{word-spacing:-7.773333pt;}
.ws8c{word-spacing:-6.218667pt;}
.wsbb{word-spacing:-5.546667pt;}
.wsbc{word-spacing:-4.533333pt;}
.ws2e{word-spacing:-3.626667pt;}
.ws84{word-spacing:-3.466667pt;}
.wsfe{word-spacing:-3.285333pt;}
.ws3d{word-spacing:-2.826667pt;}
.ws1a{word-spacing:-2.666667pt;}
.ws8{word-spacing:-2.565333pt;}
.ws10e{word-spacing:-2.517333pt;}
.ws114{word-spacing:-2.506667pt;}
.wsf9{word-spacing:-2.432000pt;}
.ws6c{word-spacing:-2.346667pt;}
.ws3c{word-spacing:-2.293333pt;}
.wsa9{word-spacing:-2.186667pt;}
.ws13{word-spacing:-2.133333pt;}
.wsb9{word-spacing:-1.973333pt;}
.wsd{word-spacing:-1.920000pt;}
.wse1{word-spacing:-1.834667pt;}
.wsf4{word-spacing:-1.749333pt;}
.wsba{word-spacing:-1.600000pt;}
.ws10b{word-spacing:-1.578667pt;}
.ws26{word-spacing:-1.546667pt;}
.ws8f{word-spacing:-1.493333pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws10c{word-spacing:-1.408000pt;}
.wsc4{word-spacing:-1.386667pt;}
.ws81{word-spacing:-1.333333pt;}
.wse2{word-spacing:-1.322667pt;}
.ws85{word-spacing:-1.280000pt;}
.ws101{word-spacing:-1.237333pt;}
.wsc9{word-spacing:-1.226667pt;}
.wsd8{word-spacing:-1.194667pt;}
.ws39{word-spacing:-1.173333pt;}
.wse3{word-spacing:-1.152000pt;}
.wsbd{word-spacing:-1.120000pt;}
.ws91{word-spacing:-1.066667pt;}
.wsfc{word-spacing:-1.024000pt;}
.ws3e{word-spacing:-1.013333pt;}
.wsbf{word-spacing:-0.960000pt;}
.wsda{word-spacing:-0.938667pt;}
.ws19{word-spacing:-0.906667pt;}
.wsd7{word-spacing:-0.896000pt;}
.ws18{word-spacing:-0.853333pt;}
.wsf7{word-spacing:-0.810667pt;}
.wsd0{word-spacing:-0.800000pt;}
.ws56{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.693333pt;}
.ws3b{word-spacing:-0.640000pt;}
.wsfa{word-spacing:-0.597333pt;}
.ws1c{word-spacing:-0.586667pt;}
.wse6{word-spacing:-0.554667pt;}
.wse{word-spacing:-0.533333pt;}
.ws94{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.426667pt;}
.ws97{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.373333pt;}
.wsf6{word-spacing:-0.341333pt;}
.ws14{word-spacing:-0.320000pt;}
.wsea{word-spacing:-0.298667pt;}
.ws16{word-spacing:-0.266667pt;}
.wse7{word-spacing:-0.256000pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws24{word-spacing:-0.160000pt;}
.wseb{word-spacing:-0.128000pt;}
.wsc8{word-spacing:-0.106667pt;}
.wsdf{word-spacing:-0.085333pt;}
.wsc{word-spacing:-0.053333pt;}
.ws5e{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.042667pt;}
.ws22{word-spacing:0.053333pt;}
.wsf8{word-spacing:0.085333pt;}
.wsfd{word-spacing:0.128000pt;}
.ws25{word-spacing:0.160000pt;}
.wsfb{word-spacing:0.170667pt;}
.ws54{word-spacing:0.213333pt;}
.ws37{word-spacing:0.266667pt;}
.ws110{word-spacing:0.298667pt;}
.wsff{word-spacing:0.341333pt;}
.wsc6{word-spacing:0.373333pt;}
.wse9{word-spacing:0.384000pt;}
.ws113{word-spacing:0.480000pt;}
.ws10d{word-spacing:0.512000pt;}
.ws55{word-spacing:0.533333pt;}
.wsc0{word-spacing:0.586667pt;}
.ws102{word-spacing:0.597333pt;}
.ws36{word-spacing:0.640000pt;}
.ws112{word-spacing:0.693333pt;}
.wse8{word-spacing:0.725333pt;}
.ws12{word-spacing:0.746667pt;}
.ws98{word-spacing:0.768000pt;}
.ws2b{word-spacing:0.800000pt;}
.wsdb{word-spacing:0.853333pt;}
.wsa2{word-spacing:0.896000pt;}
.ws10f{word-spacing:0.938667pt;}
.ws82{word-spacing:0.960000pt;}
.wsa1{word-spacing:1.024000pt;}
.wscf{word-spacing:1.066667pt;}
.wsde{word-spacing:1.152000pt;}
.ws28{word-spacing:1.173333pt;}
.ws5a{word-spacing:1.226667pt;}
.ws60{word-spacing:1.237333pt;}
.wsc5{word-spacing:1.280000pt;}
.ws100{word-spacing:1.322667pt;}
.ws9e{word-spacing:1.333333pt;}
.ws10{word-spacing:1.386667pt;}
.ws115{word-spacing:1.440000pt;}
.ws34{word-spacing:1.546667pt;}
.wsa7{word-spacing:1.600000pt;}
.ws1f{word-spacing:1.706667pt;}
.wse5{word-spacing:1.749333pt;}
.wse0{word-spacing:1.792000pt;}
.wsa6{word-spacing:1.813333pt;}
.wsaa{word-spacing:1.834667pt;}
.wsa0{word-spacing:1.877333pt;}
.ws6b{word-spacing:1.920000pt;}
.ws7f{word-spacing:1.973333pt;}
.ws2f{word-spacing:2.080000pt;}
.wsa8{word-spacing:2.133333pt;}
.ws21{word-spacing:2.186667pt;}
.wsf5{word-spacing:2.218667pt;}
.ws3a{word-spacing:2.240000pt;}
.wsc7{word-spacing:2.293333pt;}
.ws111{word-spacing:2.304000pt;}
.ws53{word-spacing:2.346667pt;}
.ws80{word-spacing:2.400000pt;}
.wsab{word-spacing:2.432000pt;}
.ws86{word-spacing:2.453333pt;}
.ws96{word-spacing:2.474667pt;}
.ws42{word-spacing:2.506667pt;}
.ws9d{word-spacing:2.560000pt;}
.ws11{word-spacing:2.666667pt;}
.wse4{word-spacing:2.688000pt;}
.wsbe{word-spacing:2.720000pt;}
.ws9f{word-spacing:2.730667pt;}
.ws92{word-spacing:2.773333pt;}
.ws5b{word-spacing:2.826667pt;}
.wsd9{word-spacing:2.858667pt;}
.wsf{word-spacing:2.880000pt;}
.wsa5{word-spacing:2.933333pt;}
.ws1e{word-spacing:2.986667pt;}
.ws40{word-spacing:3.040000pt;}
.wsdc{word-spacing:3.072000pt;}
.ws8d{word-spacing:3.093333pt;}
.ws95{word-spacing:3.114667pt;}
.ws93{word-spacing:3.146667pt;}
.ws2c{word-spacing:3.200000pt;}
.ws38{word-spacing:3.253333pt;}
.ws27{word-spacing:3.306667pt;}
.ws43{word-spacing:3.360000pt;}
.ws2a{word-spacing:3.413333pt;}
.ws9c{word-spacing:3.466667pt;}
.ws5d{word-spacing:3.498667pt;}
.ws44{word-spacing:3.520000pt;}
.ws5c{word-spacing:3.541333pt;}
.ws1d{word-spacing:3.573333pt;}
.ws83{word-spacing:3.626667pt;}
.ws32{word-spacing:3.680000pt;}
.ws35{word-spacing:3.733333pt;}
.ws90{word-spacing:3.786667pt;}
.ws33{word-spacing:3.840000pt;}
.ws41{word-spacing:3.893333pt;}
.ws17{word-spacing:3.946667pt;}
.ws87{word-spacing:4.053333pt;}
.ws20{word-spacing:4.106667pt;}
.ws1b{word-spacing:4.160000pt;}
.ws29{word-spacing:4.213333pt;}
.wsd1{word-spacing:4.266667pt;}
.wsc2{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.wsc1{word-spacing:4.586667pt;}
.ws59{word-spacing:4.746667pt;}
.ws8e{word-spacing:5.333333pt;}
.ws57{word-spacing:5.386667pt;}
.wsc3{word-spacing:5.866667pt;}
.ws46{word-spacing:25.685333pt;}
.ws48{word-spacing:27.264000pt;}
.ws4d{word-spacing:28.842667pt;}
.ws51{word-spacing:111.018667pt;}
.ws49{word-spacing:124.074667pt;}
.ws4f{word-spacing:125.269333pt;}
.ws4b{word-spacing:127.658667pt;}
.ws4e{word-spacing:131.200000pt;}
.ws50{word-spacing:132.394667pt;}
.ws52{word-spacing:133.546667pt;}
.ws7e{word-spacing:150.442667pt;}
.ws78{word-spacing:151.637333pt;}
.ws4a{word-spacing:159.232000pt;}
.ws47{word-spacing:169.898667pt;}
.ws6a{word-spacing:194.560000pt;}
.ws68{word-spacing:195.114667pt;}
.ws73{word-spacing:196.266667pt;}
.ws76{word-spacing:199.040000pt;}
.ws65{word-spacing:203.861333pt;}
.ws4c{word-spacing:204.757333pt;}
.ws64{word-spacing:206.592000pt;}
.ws67{word-spacing:207.402667pt;}
.ws66{word-spacing:207.786667pt;}
.ws77{word-spacing:208.896000pt;}
.ws79{word-spacing:212.522667pt;}
.ws61{word-spacing:218.453333pt;}
.ws62{word-spacing:227.925333pt;}
.ws69{word-spacing:229.162667pt;}
.ws71{word-spacing:231.808000pt;}
.ws72{word-spacing:232.618667pt;}
.ws7d{word-spacing:233.856000pt;}
.ws7a{word-spacing:253.952000pt;}
.ws63{word-spacing:254.378667pt;}
.ws75{word-spacing:260.992000pt;}
.ws74{word-spacing:261.845333pt;}
.ws7c{word-spacing:263.424000pt;}
.ws7b{word-spacing:283.178667pt;}
._b{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._e{margin-left:-6.800000pt;}
._4{margin-left:-5.779733pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.256533pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.100267pt;}
._9{width:1.120000pt;}
._7{width:2.456533pt;}
._5{width:3.733333pt;}
._8{width:5.120000pt;}
._6{width:6.240000pt;}
._a{width:7.363200pt;}
._c{width:8.636800pt;}
._88{width:10.752000pt;}
._20{width:42.453333pt;}
._16{width:66.133333pt;}
._18{width:67.968000pt;}
._81{width:72.282667pt;}
._58{width:105.685333pt;}
._65{width:108.416000pt;}
._14{width:114.133333pt;}
._5d{width:115.200000pt;}
._60{width:119.466667pt;}
._23{width:122.154667pt;}
._21{width:123.946667pt;}
._22{width:125.994667pt;}
._15{width:133.205333pt;}
._6f{width:136.158400pt;}
._5f{width:137.093333pt;}
._38{width:140.885333pt;}
._13{width:142.890667pt;}
._12{width:146.688000pt;}
._1e{width:147.754667pt;}
._1b{width:150.272000pt;}
._6e{width:155.008000pt;}
._70{width:155.917867pt;}
._55{width:160.426667pt;}
._68{width:167.082667pt;}
._2d{width:169.258667pt;}
._6d{width:172.416000pt;}
._63{width:175.402667pt;}
._26{width:177.536000pt;}
._2c{width:178.517333pt;}
._2f{width:179.925333pt;}
._17{width:182.058667pt;}
._61{width:183.850667pt;}
._82{width:185.846933pt;}
._19{width:187.392000pt;}
._2e{width:189.184000pt;}
._5c{width:192.432000pt;}
._25{width:195.712000pt;}
._84{width:199.301333pt;}
._83{width:203.733333pt;}
._24{width:207.536000pt;}
._40{width:210.213333pt;}
._6c{width:216.101333pt;}
._29{width:217.381333pt;}
._64{width:218.752000pt;}
._3b{width:221.397333pt;}
._f{width:227.589333pt;}
._62{width:229.418667pt;}
._3a{width:230.656000pt;}
._31{width:233.898667pt;}
._1a{width:236.117333pt;}
._28{width:244.565333pt;}
._10{width:250.197333pt;}
._2b{width:255.232000pt;}
._11{width:262.954667pt;}
._3c{width:265.898667pt;}
._1d{width:267.392000pt;}
._1f{width:272.204267pt;}
._1c{width:273.280000pt;}
._3f{width:276.565333pt;}
._73{width:279.201600pt;}
._74{width:289.029333pt;}
._42{width:296.581333pt;}
._4c{width:303.232000pt;}
._7e{width:306.565333pt;}
._85{width:317.696000pt;}
._56{width:320.816000pt;}
._4a{width:322.693333pt;}
._37{width:328.704000pt;}
._33{width:341.205333pt;}
._72{width:347.980267pt;}
._3e{width:359.509333pt;}
._30{width:361.258667pt;}
._6a{width:364.112000pt;}
._4d{width:368.384000pt;}
._86{width:370.602667pt;}
._7f{width:372.394667pt;}
._57{width:381.952000pt;}
._39{width:387.370667pt;}
._32{width:391.509333pt;}
._3d{width:398.592000pt;}
._67{width:400.378667pt;}
._59{width:405.296000pt;}
._4e{width:419.162667pt;}
._35{width:423.509333pt;}
._80{width:424.448000pt;}
._4b{width:431.189333pt;}
._27{width:436.480000pt;}
._5a{width:437.461333pt;}
._48{width:450.010667pt;}
._53{width:451.802667pt;}
._47{width:453.589333pt;}
._7c{width:454.832000pt;}
._69{width:463.232000pt;}
._66{width:465.749333pt;}
._44{width:470.357333pt;}
._41{width:472.064000pt;}
._2a{width:475.008000pt;}
._7d{width:476.117333pt;}
._76{width:477.909333pt;}
._79{width:479.228267pt;}
._4f{width:483.925333pt;}
._71{width:485.888000pt;}
._5e{width:487.637333pt;}
._36{width:488.661333pt;}
._45{width:493.274667pt;}
._7b{width:496.005333pt;}
._50{width:499.760000pt;}
._77{width:501.808000pt;}
._34{width:504.064000pt;}
._49{width:515.925333pt;}
._78{width:531.754667pt;}
._87{width:536.885333pt;}
._46{width:547.328000pt;}
._7a{width:548.394667pt;}
._5b{width:558.298667pt;}
._51{width:559.578667pt;}
._54{width:565.930667pt;}
._6b{width:583.418667pt;}
._43{width:591.744000pt;}
._75{width:599.296000pt;}
._52{width:625.285333pt;}
.fsc{font-size:18.656000pt;}
.fs5{font-size:23.320000pt;}
.fsd{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs8{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;}
.y2e{bottom:42.468667pt;}
.y1e9{bottom:71.219467pt;}
.y22a{bottom:71.345333pt;}
.y135{bottom:74.019600pt;}
.y1b7{bottom:74.228533pt;}
.y1a9{bottom:74.342533pt;}
.y184{bottom:74.412800pt;}
.y64{bottom:74.462533pt;}
.yde{bottom:74.588533pt;}
.y8c{bottom:74.595867pt;}
.yaa{bottom:74.729200pt;}
.y25{bottom:78.242667pt;}
.y1e8{bottom:84.552800pt;}
.y229{bottom:84.678667pt;}
.y134{bottom:88.014267pt;}
.y183{bottom:88.407467pt;}
.y1a8{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.ydd{bottom:90.588533pt;}
.y8b{bottom:90.595867pt;}
.y17d{bottom:90.621733pt;}
.ya9{bottom:90.729200pt;}
.y24{bottom:91.576000pt;}
.y15b{bottom:93.542267pt;}
.y1e7{bottom:97.886133pt;}
.y228{bottom:98.012000pt;}
.y133{bottom:102.008933pt;}
.y182{bottom:102.418133pt;}
.y122{bottom:104.785200pt;}
.y17c{bottom:105.064400pt;}
.y1a7{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.ydc{bottom:106.588533pt;}
.y8a{bottom:106.595867pt;}
.ya8{bottom:106.729200pt;}
.y19e{bottom:107.163600pt;}
.y15a{bottom:107.984933pt;}
.y1e6{bottom:111.219467pt;}
.y227{bottom:111.345333pt;}
.y132{bottom:116.003600pt;}
.y181{bottom:116.412800pt;}
.y23f{bottom:117.257200pt;}
.y121{bottom:119.451867pt;}
.y17b{bottom:119.507067pt;}
.y19d{bottom:121.158267pt;}
.y1b6{bottom:122.228533pt;}
.y1a6{bottom:122.342533pt;}
.y159{bottom:122.427600pt;}
.y61{bottom:122.462533pt;}
.ydb{bottom:122.588533pt;}
.y89{bottom:122.595867pt;}
.ya7{bottom:122.729200pt;}
.y1e5{bottom:124.552800pt;}
.y226{bottom:124.678667pt;}
.y131{bottom:129.998267pt;}
.y180{bottom:130.407467pt;}
.y23e{bottom:133.257200pt;}
.y120{bottom:133.894533pt;}
.y17a{bottom:133.949733pt;}
.y19c{bottom:135.152933pt;}
.y158{bottom:137.094267pt;}
.y1e4{bottom:137.886133pt;}
.y225{bottom:138.012000pt;}
.y1a5{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.yda{bottom:138.588533pt;}
.y88{bottom:138.595867pt;}
.ya6{bottom:138.729200pt;}
.y29{bottom:142.999867pt;}
.y130{bottom:143.992933pt;}
.y17f{bottom:144.402133pt;}
.y179{bottom:148.392400pt;}
.y11f{bottom:148.561200pt;}
.y19b{bottom:149.147600pt;}
.y1e3{bottom:151.219467pt;}
.y224{bottom:151.345333pt;}
.y157{bottom:151.536933pt;}
.y1a4{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.yd9{bottom:154.588533pt;}
.y87{bottom:154.595867pt;}
.ya5{bottom:154.729200pt;}
.y12f{bottom:157.987600pt;}
.y28{bottom:158.999867pt;}
.y178{bottom:162.835067pt;}
.y11e{bottom:163.003867pt;}
.y19a{bottom:163.163600pt;}
.y1e2{bottom:164.552800pt;}
.y223{bottom:164.678667pt;}
.y23d{bottom:165.257200pt;}
.y156{bottom:165.979600pt;}
.y1a3{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.yd8{bottom:170.588533pt;}
.y86{bottom:170.595867pt;}
.ya4{bottom:170.729200pt;}
.y12e{bottom:171.982267pt;}
.y27{bottom:174.999867pt;}
.y199{bottom:177.158267pt;}
.y177{bottom:177.277733pt;}
.y11d{bottom:177.670533pt;}
.y1e1{bottom:177.886133pt;}
.y222{bottom:178.012000pt;}
.y155{bottom:180.422267pt;}
.y23c{bottom:181.257200pt;}
.y12d{bottom:185.976933pt;}
.y1a2{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.yd7{bottom:186.588533pt;}
.y85{bottom:186.595867pt;}
.ya3{bottom:186.729200pt;}
.y2b{bottom:190.999867pt;}
.y198{bottom:191.152933pt;}
.y1e0{bottom:191.219467pt;}
.y221{bottom:191.345333pt;}
.y176{bottom:191.720400pt;}
.y11c{bottom:192.113200pt;}
.y154{bottom:194.864933pt;}
.y1a1{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.yd6{bottom:202.588533pt;}
.y84{bottom:202.595867pt;}
.ya2{bottom:202.729200pt;}
.y1df{bottom:204.552800pt;}
.y220{bottom:204.678667pt;}
.y197{bottom:205.147600pt;}
.y175{bottom:206.163067pt;}
.y26{bottom:206.639867pt;}
.y11b{bottom:206.779867pt;}
.y2a{bottom:206.999867pt;}
.y153{bottom:209.307600pt;}
.y23b{bottom:212.897200pt;}
.y1de{bottom:217.886133pt;}
.y21f{bottom:218.012000pt;}
.y5b{bottom:218.462533pt;}
.yd5{bottom:218.588533pt;}
.y83{bottom:218.595867pt;}
.ya1{bottom:218.729200pt;}
.y196{bottom:219.142267pt;}
.y174{bottom:220.605733pt;}
.y11a{bottom:221.222533pt;}
.y152{bottom:224.518267pt;}
.y1dd{bottom:231.219467pt;}
.y21e{bottom:231.345333pt;}
.y1a0{bottom:233.982533pt;}
.y5a{bottom:234.462533pt;}
.yd4{bottom:234.588533pt;}
.y82{bottom:234.595867pt;}
.ya0{bottom:234.729200pt;}
.y173{bottom:235.048400pt;}
.y119{bottom:235.889200pt;}
.y151{bottom:238.960933pt;}
.y1dc{bottom:244.552800pt;}
.y21d{bottom:244.678667pt;}
.y172{bottom:249.491067pt;}
.y118{bottom:250.331867pt;}
.y59{bottom:250.462533pt;}
.yd3{bottom:250.588533pt;}
.y81{bottom:250.595867pt;}
.y9f{bottom:250.729200pt;}
.y150{bottom:253.403600pt;}
.y1db{bottom:257.886133pt;}
.y21c{bottom:258.012000pt;}
.y171{bottom:263.933733pt;}
.y117{bottom:264.998533pt;}
.y1b5{bottom:266.228533pt;}
.y58{bottom:266.462533pt;}
.yd2{bottom:266.588533pt;}
.y80{bottom:266.595867pt;}
.y9e{bottom:266.729200pt;}
.y14f{bottom:267.846267pt;}
.y23{bottom:270.715467pt;}
.y1da{bottom:271.219467pt;}
.y21b{bottom:271.345333pt;}
.y170{bottom:278.376400pt;}
.y116{bottom:279.441200pt;}
.y14e{bottom:282.288933pt;}
.y57{bottom:282.462533pt;}
.yd1{bottom:282.588533pt;}
.y7f{bottom:282.595867pt;}
.y9d{bottom:282.729200pt;}
.y1d9{bottom:284.552800pt;}
.y21a{bottom:284.678667pt;}
.y22{bottom:286.723733pt;}
.y115{bottom:294.107867pt;}
.y14d{bottom:296.731600pt;}
.y1d8{bottom:297.886133pt;}
.y219{bottom:298.012000pt;}
.y56{bottom:298.462533pt;}
.yd0{bottom:298.588533pt;}
.y7e{bottom:298.595867pt;}
.y9c{bottom:298.729200pt;}
.y16f{bottom:304.157733pt;}
.y114{bottom:308.550533pt;}
.y21{bottom:311.030400pt;}
.y14c{bottom:311.174267pt;}
.y1d7{bottom:311.219467pt;}
.y218{bottom:311.345333pt;}
.y55{bottom:314.462533pt;}
.ycf{bottom:314.588533pt;}
.y7d{bottom:314.595867pt;}
.y9b{bottom:314.729200pt;}
.y16e{bottom:318.824400pt;}
.y113{bottom:323.217200pt;}
.y1d6{bottom:324.552800pt;}
.y217{bottom:324.678667pt;}
.y20{bottom:327.030400pt;}
.y54{bottom:330.462533pt;}
.yce{bottom:330.588533pt;}
.y7c{bottom:330.595867pt;}
.y9a{bottom:330.729200pt;}
.y14b{bottom:336.955600pt;}
.y112{bottom:337.659867pt;}
.y1d5{bottom:337.886133pt;}
.y216{bottom:338.012000pt;}
.y1f{bottom:343.030400pt;}
.y53{bottom:346.462533pt;}
.y1b4{bottom:346.588533pt;}
.y7b{bottom:346.595867pt;}
.ycd{bottom:346.609200pt;}
.y1d4{bottom:351.219467pt;}
.y215{bottom:351.345333pt;}
.y14a{bottom:351.622267pt;}
.y111{bottom:352.326533pt;}
.y1e{bottom:359.030400pt;}
.y99{bottom:362.369200pt;}
.y52{bottom:362.462533pt;}
.y1b3{bottom:362.588533pt;}
.y7a{bottom:362.595867pt;}
.ycc{bottom:362.609200pt;}
.y16d{bottom:364.218400pt;}
.y1d3{bottom:364.552800pt;}
.y214{bottom:364.678667pt;}
.y110{bottom:366.769200pt;}
.y1d{bottom:375.030400pt;}
.y1d2{bottom:377.886133pt;}
.y213{bottom:378.012000pt;}
.y98{bottom:378.369200pt;}
.y51{bottom:378.462533pt;}
.y1b2{bottom:378.588533pt;}
.y79{bottom:378.595867pt;}
.ycb{bottom:378.609200pt;}
.y16c{bottom:378.661067pt;}
.y10f{bottom:381.435867pt;}
.y1c{bottom:391.030400pt;}
.y1d1{bottom:391.219467pt;}
.y212{bottom:391.345333pt;}
.y16b{bottom:393.103733pt;}
.y97{bottom:394.369200pt;}
.y50{bottom:394.462533pt;}
.y1b1{bottom:394.588533pt;}
.y78{bottom:394.595867pt;}
.yca{bottom:394.609200pt;}
.y10e{bottom:395.878533pt;}
.y149{bottom:397.019733pt;}
.y1d0{bottom:404.552800pt;}
.y211{bottom:404.678667pt;}
.y1b{bottom:407.030400pt;}
.y16a{bottom:407.546400pt;}
.y4f{bottom:410.462533pt;}
.y10d{bottom:410.545200pt;}
.y1b0{bottom:410.588533pt;}
.y77{bottom:410.595867pt;}
.yc9{bottom:410.609200pt;}
.y148{bottom:411.462400pt;}
.y1cf{bottom:417.886133pt;}
.y210{bottom:418.012000pt;}
.y169{bottom:421.989067pt;}
.y1a{bottom:423.030400pt;}
.y147{bottom:425.905067pt;}
.y1af{bottom:426.228533pt;}
.y4e{bottom:426.462533pt;}
.y76{bottom:426.595867pt;}
.yc8{bottom:426.609200pt;}
.y1ce{bottom:431.219467pt;}
.y20f{bottom:431.345333pt;}
.y10c{bottom:436.326533pt;}
.y168{bottom:436.431733pt;}
.y19{bottom:439.030400pt;}
.y146{bottom:440.347733pt;}
.y4d{bottom:442.462533pt;}
.y75{bottom:442.595867pt;}
.yc7{bottom:442.609200pt;}
.y1cd{bottom:444.552800pt;}
.y20e{bottom:444.678667pt;}
.y167{bottom:450.874400pt;}
.y10b{bottom:450.993200pt;}
.y145{bottom:454.790400pt;}
.y18{bottom:455.030400pt;}
.y1cc{bottom:457.886133pt;}
.y20d{bottom:458.012000pt;}
.y4c{bottom:458.462533pt;}
.y1ae{bottom:458.588533pt;}
.y74{bottom:458.595867pt;}
.yc6{bottom:458.609200pt;}
.y166{bottom:465.317067pt;}
.y144{bottom:469.233067pt;}
.y17{bottom:471.030400pt;}
.y1cb{bottom:471.219467pt;}
.y20c{bottom:471.345333pt;}
.y4b{bottom:474.462533pt;}
.y1ad{bottom:474.588533pt;}
.y73{bottom:474.595867pt;}
.yc5{bottom:474.609200pt;}
.y165{bottom:479.759733pt;}
.y10a{bottom:479.788533pt;}
.y143{bottom:483.675733pt;}
.y1ca{bottom:484.552800pt;}
.y20b{bottom:484.678667pt;}
.y16{bottom:487.030400pt;}
.y4a{bottom:490.462533pt;}
.y1ac{bottom:490.588533pt;}
.y72{bottom:490.595867pt;}
.yc4{bottom:490.609200pt;}
.y164{bottom:494.202400pt;}
.y1c9{bottom:497.886133pt;}
.y20a{bottom:498.012000pt;}
.y142{bottom:498.118400pt;}
.y15{bottom:503.030400pt;}
.y49{bottom:506.462533pt;}
.y1ab{bottom:506.588533pt;}
.y71{bottom:506.595867pt;}
.yc3{bottom:506.609200pt;}
.y163{bottom:508.645067pt;}
.y1c8{bottom:511.219467pt;}
.y209{bottom:511.345333pt;}
.y141{bottom:512.561067pt;}
.y14{bottom:519.030400pt;}
.y48{bottom:522.462533pt;}
.y109{bottom:522.468533pt;}
.yf3{bottom:522.588533pt;}
.y70{bottom:522.595867pt;}
.yc2{bottom:522.609200pt;}
.y162{bottom:523.087733pt;}
.y1c7{bottom:524.552800pt;}
.y208{bottom:524.678667pt;}
.y140{bottom:527.003733pt;}
.y13{bottom:535.030400pt;}
.y161{bottom:537.530400pt;}
.y1c6{bottom:537.886133pt;}
.y207{bottom:538.012000pt;}
.y47{bottom:538.462533pt;}
.y108{bottom:538.468533pt;}
.yf2{bottom:538.588533pt;}
.y6f{bottom:538.595867pt;}
.yc1{bottom:538.609200pt;}
.y13f{bottom:541.446400pt;}
.y12{bottom:551.030400pt;}
.y1c5{bottom:551.219467pt;}
.y206{bottom:551.345333pt;}
.y160{bottom:551.973067pt;}
.y46{bottom:554.462533pt;}
.y107{bottom:554.468533pt;}
.yf1{bottom:554.588533pt;}
.y6e{bottom:554.595867pt;}
.yc0{bottom:554.609200pt;}
.y13e{bottom:555.889067pt;}
.y1c4{bottom:564.552800pt;}
.y205{bottom:564.678667pt;}
.y11{bottom:567.030400pt;}
.y13d{bottom:570.331733pt;}
.y45{bottom:570.462533pt;}
.y106{bottom:570.468533pt;}
.yf0{bottom:570.588533pt;}
.y6d{bottom:570.595867pt;}
.ybf{bottom:570.609200pt;}
.y15f{bottom:577.754400pt;}
.y1c3{bottom:577.886133pt;}
.y204{bottom:578.012000pt;}
.y10{bottom:583.030400pt;}
.y13c{bottom:584.774400pt;}
.y44{bottom:586.462533pt;}
.y105{bottom:586.468533pt;}
.yef{bottom:586.588533pt;}
.y6c{bottom:586.595867pt;}
.ybe{bottom:586.609200pt;}
.y1c2{bottom:591.219467pt;}
.y203{bottom:591.345333pt;}
.yf{bottom:599.030400pt;}
.y13b{bottom:599.217067pt;}
.y195{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y104{bottom:602.468533pt;}
.yee{bottom:602.588533pt;}
.y96{bottom:602.595867pt;}
.ybd{bottom:602.609200pt;}
.y1c1{bottom:604.552800pt;}
.y202{bottom:604.678667pt;}
.y15e{bottom:606.548533pt;}
.y1c0{bottom:617.886133pt;}
.y201{bottom:618.012000pt;}
.y6b{bottom:618.235867pt;}
.y194{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y103{bottom:618.468533pt;}
.yed{bottom:618.588533pt;}
.y95{bottom:618.595867pt;}
.ybc{bottom:618.609200pt;}
.y15d{bottom:623.881867pt;}
.y13a{bottom:624.998400pt;}
.y1bf{bottom:631.219467pt;}
.y200{bottom:631.345333pt;}
.y6a{bottom:634.235867pt;}
.y193{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y102{bottom:634.468533pt;}
.yec{bottom:634.588533pt;}
.y94{bottom:634.595867pt;}
.ybb{bottom:634.609200pt;}
.ye{bottom:639.170933pt;}
.y1be{bottom:644.552800pt;}
.y1ff{bottom:644.678667pt;}
.yd{bottom:650.238267pt;}
.y192{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y101{bottom:650.468533pt;}
.yeb{bottom:650.588533pt;}
.y93{bottom:650.595867pt;}
.yba{bottom:650.609200pt;}
.y139{bottom:653.795867pt;}
.y1bd{bottom:657.886133pt;}
.y1fe{bottom:658.012000pt;}
.y191{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y100{bottom:666.468533pt;}
.y24e{bottom:666.470533pt;}
.yea{bottom:666.588533pt;}
.y92{bottom:666.595867pt;}
.yb9{bottom:666.609200pt;}
.y138{bottom:671.129200pt;}
.y1bc{bottom:671.219467pt;}
.y1fd{bottom:671.345333pt;}
.yc{bottom:678.429867pt;}
.y190{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.yff{bottom:682.468533pt;}
.y24d{bottom:682.470533pt;}
.ye9{bottom:682.588533pt;}
.y91{bottom:682.595867pt;}
.yb8{bottom:682.609200pt;}
.y1bb{bottom:684.552800pt;}
.y1fc{bottom:684.678667pt;}
.yb{bottom:695.252400pt;}
.y1fb{bottom:698.012000pt;}
.y18f{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.yfe{bottom:698.468533pt;}
.y24c{bottom:698.470533pt;}
.y90{bottom:698.595867pt;}
.yb7{bottom:698.609200pt;}
.ya{bottom:702.429867pt;}
.y1fa{bottom:711.345333pt;}
.y1ba{bottom:713.982533pt;}
.y18e{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.yfd{bottom:714.468533pt;}
.y24b{bottom:714.470533pt;}
.y8f{bottom:714.595867pt;}
.yb6{bottom:714.609200pt;}
.y1f9{bottom:724.678667pt;}
.y18d{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.yfc{bottom:730.468533pt;}
.y24a{bottom:730.470533pt;}
.ye8{bottom:730.595867pt;}
.yb5{bottom:730.609200pt;}
.y8{bottom:731.252400pt;}
.y23a{bottom:738.012000pt;}
.y1f8{bottom:738.014133pt;}
.y8e{bottom:746.235867pt;}
.y18c{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.yfb{bottom:746.468533pt;}
.y249{bottom:746.470533pt;}
.ye7{bottom:746.595867pt;}
.y239{bottom:751.345333pt;}
.y1f7{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y8d{bottom:762.235867pt;}
.yb4{bottom:762.249200pt;}
.y18b{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.yfa{bottom:762.468533pt;}
.y248{bottom:762.470533pt;}
.ye6{bottom:762.595867pt;}
.y238{bottom:764.678667pt;}
.y1f6{bottom:764.680800pt;}
.y237{bottom:778.012000pt;}
.y1f5{bottom:778.014133pt;}
.y137{bottom:778.235867pt;}
.y18a{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.yf9{bottom:778.468533pt;}
.y247{bottom:778.470533pt;}
.ye5{bottom:778.595867pt;}
.y236{bottom:791.345333pt;}
.y1f4{bottom:791.347467pt;}
.y37{bottom:794.462533pt;}
.y246{bottom:794.470533pt;}
.yb3{bottom:794.475867pt;}
.ye4{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y235{bottom:804.678667pt;}
.y1f3{bottom:804.680800pt;}
.y189{bottom:809.982533pt;}
.yf8{bottom:810.108533pt;}
.y36{bottom:810.462533pt;}
.y245{bottom:810.470533pt;}
.yb2{bottom:810.475867pt;}
.ye3{bottom:810.595867pt;}
.y234{bottom:818.012000pt;}
.y1f2{bottom:818.014133pt;}
.y67{bottom:826.102533pt;}
.yf7{bottom:826.108533pt;}
.y35{bottom:826.462533pt;}
.yb1{bottom:826.475867pt;}
.ye2{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y233{bottom:831.345333pt;}
.y1f1{bottom:831.347467pt;}
.y1b9{bottom:842.102533pt;}
.y187{bottom:842.235867pt;}
.y34{bottom:842.462533pt;}
.y128{bottom:842.464533pt;}
.y244{bottom:842.470533pt;}
.yb0{bottom:842.475867pt;}
.ye1{bottom:842.595867pt;}
.y232{bottom:844.678667pt;}
.y1f0{bottom:844.680800pt;}
.y66{bottom:857.982533pt;}
.yf6{bottom:857.988533pt;}
.y231{bottom:858.012000pt;}
.y1ef{bottom:858.014133pt;}
.y186{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y127{bottom:858.464533pt;}
.y243{bottom:858.470533pt;}
.yaf{bottom:858.475867pt;}
.ye0{bottom:858.595867pt;}
.y4{bottom:862.635733pt;}
.y230{bottom:871.345333pt;}
.y1ee{bottom:871.347467pt;}
.y1b8{bottom:874.102533pt;}
.y32{bottom:874.462533pt;}
.y12c{bottom:874.464533pt;}
.y242{bottom:874.470533pt;}
.yae{bottom:874.475867pt;}
.y22f{bottom:884.678667pt;}
.y1ed{bottom:884.680800pt;}
.y126{bottom:890.104533pt;}
.ydf{bottom:890.235867pt;}
.y31{bottom:890.462533pt;}
.y12b{bottom:890.464533pt;}
.y188{bottom:890.468533pt;}
.yad{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y22e{bottom:898.012000pt;}
.y1ec{bottom:898.014133pt;}
.y69{bottom:906.102533pt;}
.y125{bottom:906.104533pt;}
.y30{bottom:906.462533pt;}
.y12a{bottom:906.464533pt;}
.yf5{bottom:906.468533pt;}
.y241{bottom:906.470533pt;}
.yac{bottom:906.475867pt;}
.y22d{bottom:911.345333pt;}
.y1eb{bottom:911.347467pt;}
.y68{bottom:922.102533pt;}
.y124{bottom:922.104533pt;}
.y1aa{bottom:922.456533pt;}
.y2f{bottom:922.462533pt;}
.y129{bottom:922.464533pt;}
.yf4{bottom:922.468533pt;}
.y240{bottom:922.470533pt;}
.yab{bottom:922.475867pt;}
.y22c{bottom:924.678667pt;}
.y1ea{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y65{bottom:1006.594400pt;}
.y136{bottom:1006.597067pt;}
.y19f{bottom:1006.598267pt;}
.y22b{bottom:1006.598667pt;}
.y185{bottom:1006.604800pt;}
.y123{bottom:1006.630533pt;}
.y15c{bottom:1006.640933pt;}
.y17e{bottom:1006.643067pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.hd{height:37.057292pt;}
.h13{height:37.081292pt;}
.h14{height:37.381654pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h10{height:46.727068pt;}
.h11{height:46.896775pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:62.740133pt;}
.xb{left:68.031467pt;}
.x22{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x29{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x2a{left:109.606267pt;}
.x3{left:111.491467pt;}
.x7{left:117.170133pt;}
.x11{left:147.542533pt;}
.x5{left:170.078667pt;}
.x28{left:172.698133pt;}
.x27{left:187.902533pt;}
.x6{left:189.223467pt;}
.x17{left:342.525600pt;}
.x1c{left:398.728267pt;}
.xa{left:404.481333pt;}
.xd{left:406.271467pt;}
.x12{left:425.195867pt;}
.x8{left:427.090133pt;}
.x20{left:429.757600pt;}
.xe{left:436.511467pt;}
.x2b{left:447.856933pt;}
.x13{left:455.435867pt;}
.x18{left:459.528267pt;}
.x24{left:515.041200pt;}
.x15{left:544.805467pt;}
.x10{left:589.770933pt;}
.x23{left:614.934533pt;}
.x2{left:616.324800pt;}
.x19{left:622.280267pt;}
.x1d{left:625.832267pt;}
.x1f{left:631.944267pt;}
.x25{left:641.522133pt;}
.xf{left:647.459200pt;}
.x21{left:648.957600pt;}
.x26{left:661.218667pt;}
.x14{left:666.356800pt;}
.x1b{left:674.621600pt;}
.x1a{left:682.674933pt;}
}




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