
    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_106b5cb0fc6dfd03f5e07b11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c1eb98c21ed80bc11e056c1a.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_ebb7012fcbbc85b4ad2b8df5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27dc12c994fe83cb5ff01fc1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8141af5d74041fd3e46360c0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cc4ec3099872e2301ca80128.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_508856526abf94a79f1ff5a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_034231c2bdb57aea8a8f42f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_ee8e44b5cb8eb2ea0e67d2b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_8e02d905848fbed854c6dd01.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e92a6b8cd445a45a5e67d632.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:20.569200px;}
.v1{vertical-align:22.655400px;}
.ls75{letter-spacing:-3.552000px;}
.lsa6{letter-spacing:-2.640000px;}
.ls74{letter-spacing:-0.900000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.600000px;}
.ls53{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.432000px;}
.ls5d{letter-spacing:-0.420000px;}
.lsa3{letter-spacing:-0.384000px;}
.ls43{letter-spacing:-0.336000px;}
.ls5e{letter-spacing:-0.300000px;}
.ls69{letter-spacing:-0.288000px;}
.lsa4{letter-spacing:-0.240000px;}
.ls41{letter-spacing:-0.180000px;}
.ls5f{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.120000px;}
.lsa5{letter-spacing:-0.096000px;}
.ls40{letter-spacing:-0.060000px;}
.ls1b{letter-spacing:-0.048000px;}
.ls19{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls7b{letter-spacing:0.048000px;}
.ls47{letter-spacing:0.060000px;}
.ls83{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls7d{letter-spacing:0.288000px;}
.ls3e{letter-spacing:0.300000px;}
.lse{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.384000px;}
.ls1e{letter-spacing:0.420000px;}
.ls87{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.528000px;}
.ls51{letter-spacing:0.540000px;}
.ls92{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.600000px;}
.ls9a{letter-spacing:0.624000px;}
.ls64{letter-spacing:0.660000px;}
.lsa0{letter-spacing:0.672000px;}
.ls14{letter-spacing:0.720000px;}
.ls81{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.780000px;}
.ls91{letter-spacing:0.816000px;}
.ls2e{letter-spacing:0.840000px;}
.ls89{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.ls3c{letter-spacing:0.960000px;}
.ls98{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.ls7c{letter-spacing:1.056000px;}
.ls18{letter-spacing:1.080000px;}
.ls99{letter-spacing:1.104000px;}
.ls4b{letter-spacing:1.140000px;}
.ls27{letter-spacing:1.156200px;}
.ls3d{letter-spacing:1.200000px;}
.ls7f{letter-spacing:1.248000px;}
.ls8{letter-spacing:1.260000px;}
.ls96{letter-spacing:1.296000px;}
.ls11{letter-spacing:1.320000px;}
.ls4c{letter-spacing:1.380000px;}
.ls9d{letter-spacing:1.392000px;}
.ls65{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.500000px;}
.ls9b{letter-spacing:1.536000px;}
.lsd{letter-spacing:1.560000px;}
.ls94{letter-spacing:1.584000px;}
.ls56{letter-spacing:1.620000px;}
.ls86{letter-spacing:1.632000px;}
.ls21{letter-spacing:1.680000px;}
.ls25{letter-spacing:1.740000px;}
.lsa2{letter-spacing:1.776000px;}
.ls57{letter-spacing:1.800000px;}
.ls97{letter-spacing:1.824000px;}
.lsb{letter-spacing:1.860000px;}
.ls78{letter-spacing:1.872000px;}
.ls10{letter-spacing:1.920000px;}
.ls12{letter-spacing:1.980000px;}
.ls8d{letter-spacing:2.016000px;}
.ls37{letter-spacing:2.040000px;}
.ls5c{letter-spacing:2.100000px;}
.ls7e{letter-spacing:2.112000px;}
.ls36{letter-spacing:2.160000px;}
.lsa7{letter-spacing:2.208000px;}
.ls52{letter-spacing:2.220000px;}
.ls9f{letter-spacing:2.256000px;}
.ls1f{letter-spacing:2.280000px;}
.lsa8{letter-spacing:2.304000px;}
.ls60{letter-spacing:2.340000px;}
.ls34{letter-spacing:2.400000px;}
.ls8c{letter-spacing:2.448000px;}
.ls7{letter-spacing:2.460000px;}
.ls8a{letter-spacing:2.496000px;}
.ls67{letter-spacing:2.520000px;}
.ls90{letter-spacing:2.544000px;}
.ls4f{letter-spacing:2.580000px;}
.ls80{letter-spacing:2.592000px;}
.ls30{letter-spacing:2.640000px;}
.ls95{letter-spacing:2.688000px;}
.ls32{letter-spacing:2.700000px;}
.ls2c{letter-spacing:2.760000px;}
.ls4d{letter-spacing:2.820000px;}
.ls9c{letter-spacing:2.832000px;}
.ls46{letter-spacing:2.880000px;}
.lsa{letter-spacing:2.940000px;}
.ls3b{letter-spacing:3.000000px;}
.ls29{letter-spacing:3.060000px;}
.ls9e{letter-spacing:3.072000px;}
.ls5b{letter-spacing:3.120000px;}
.lsa9{letter-spacing:3.180000px;}
.ls9{letter-spacing:3.240000px;}
.ls82{letter-spacing:3.264000px;}
.ls45{letter-spacing:3.300000px;}
.ls61{letter-spacing:3.360000px;}
.ls8e{letter-spacing:3.408000px;}
.ls2b{letter-spacing:3.420000px;}
.ls85{letter-spacing:3.456000px;}
.ls2f{letter-spacing:3.480000px;}
.ls39{letter-spacing:3.540000px;}
.ls17{letter-spacing:3.600000px;}
.ls58{letter-spacing:3.660000px;}
.ls6{letter-spacing:3.720000px;}
.ls84{letter-spacing:3.744000px;}
.ls49{letter-spacing:3.780000px;}
.ls48{letter-spacing:3.900000px;}
.ls88{letter-spacing:3.936000px;}
.ls33{letter-spacing:3.960000px;}
.ls7a{letter-spacing:3.984000px;}
.ls23{letter-spacing:4.020000px;}
.ls68{letter-spacing:4.080000px;}
.ls42{letter-spacing:4.140000px;}
.ls35{letter-spacing:4.200000px;}
.ls20{letter-spacing:4.260000px;}
.ls44{letter-spacing:4.320000px;}
.ls28{letter-spacing:4.440000px;}
.ls1d{letter-spacing:4.500000px;}
.ls8b{letter-spacing:4.512000px;}
.ls5{letter-spacing:4.620000px;}
.ls4a{letter-spacing:4.680000px;}
.ls8f{letter-spacing:4.752000px;}
.ls62{letter-spacing:4.860000px;}
.ls93{letter-spacing:4.944000px;}
.ls24{letter-spacing:5.040000px;}
.lsa1{letter-spacing:5.088000px;}
.ls31{letter-spacing:5.100000px;}
.ls76{letter-spacing:5.280000px;}
.ls3a{letter-spacing:5.400000px;}
.ls55{letter-spacing:5.460000px;}
.ls6b{letter-spacing:5.520000px;}
.ls13{letter-spacing:5.580000px;}
.ls6d{letter-spacing:5.760000px;}
.ls50{letter-spacing:5.880000px;}
.ls59{letter-spacing:5.940000px;}
.ls63{letter-spacing:6.120000px;}
.ls6c{letter-spacing:6.360000px;}
.ls38{letter-spacing:6.420000px;}
.ls26{letter-spacing:6.540000px;}
.ls4e{letter-spacing:6.600000px;}
.ls5a{letter-spacing:8.340000px;}
.ls6f{letter-spacing:81.504000px;}
.ls71{letter-spacing:83.484000px;}
.ls70{letter-spacing:85.056000px;}
.ls72{letter-spacing:108.192000px;}
.ls6e{letter-spacing:109.392000px;}
.ls73{letter-spacing:120.096000px;}
.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;}
}
.ws21{word-spacing:-60.000000px;}
.ws52{word-spacing:-21.300000px;}
.ws4e{word-spacing:-21.000000px;}
.ws85{word-spacing:-20.100000px;}
.ws65{word-spacing:-19.500000px;}
.wsd6{word-spacing:-18.960000px;}
.ws96{word-spacing:-18.840000px;}
.ws86{word-spacing:-18.660000px;}
.wsa9{word-spacing:-17.856000px;}
.ws95{word-spacing:-17.640000px;}
.ws83{word-spacing:-17.520000px;}
.ws2{word-spacing:-17.400000px;}
.ws70{word-spacing:-17.340000px;}
.ws53{word-spacing:-17.100000px;}
.ws84{word-spacing:-17.040000px;}
.wsa7{word-spacing:-16.944000px;}
.ws4f{word-spacing:-16.680000px;}
.ws51{word-spacing:-16.560000px;}
.wsae{word-spacing:-15.792000px;}
.wsa5{word-spacing:-15.744000px;}
.wsa4{word-spacing:-15.216000px;}
.wsad{word-spacing:-15.168000px;}
.ws50{word-spacing:-15.012000px;}
.wsb0{word-spacing:-14.400000px;}
.ws22{word-spacing:-14.178000px;}
.wsb1{word-spacing:-14.016000px;}
.wsaa{word-spacing:-13.920000px;}
.ws97{word-spacing:-13.872000px;}
.ws7e{word-spacing:-13.728000px;}
.wsab{word-spacing:-13.536000px;}
.wsa8{word-spacing:-13.440000px;}
.ws1{word-spacing:-13.344000px;}
.wsa6{word-spacing:-13.248000px;}
.wsaf{word-spacing:-13.008000px;}
.ws0{word-spacing:-11.008800px;}
.wsac{word-spacing:-10.704000px;}
.ws90{word-spacing:-9.792000px;}
.ws2e{word-spacing:-6.540000px;}
.ws44{word-spacing:-6.420000px;}
.ws1b{word-spacing:-5.580000px;}
.ws93{word-spacing:-5.520000px;}
.ws62{word-spacing:-5.460000px;}
.ws46{word-spacing:-5.400000px;}
.ws3b{word-spacing:-5.100000px;}
.ws2c{word-spacing:-5.040000px;}
.ws74{word-spacing:-4.860000px;}
.wsc2{word-spacing:-4.752000px;}
.ws99{word-spacing:-4.680000px;}
.ws36{word-spacing:-4.620000px;}
.wsbe{word-spacing:-4.512000px;}
.ws23{word-spacing:-4.500000px;}
.ws30{word-spacing:-4.440000px;}
.ws54{word-spacing:-4.320000px;}
.ws27{word-spacing:-4.260000px;}
.ws2f{word-spacing:-4.200000px;}
.ws4a{word-spacing:-4.140000px;}
.ws7b{word-spacing:-4.080000px;}
.ws2b{word-spacing:-4.020000px;}
.ws9e{word-spacing:-3.984000px;}
.ws3e{word-spacing:-3.960000px;}
.ws58{word-spacing:-3.900000px;}
.ws59{word-spacing:-3.780000px;}
.wsb8{word-spacing:-3.744000px;}
.wsc{word-spacing:-3.720000px;}
.ws67{word-spacing:-3.660000px;}
.ws1f{word-spacing:-3.600000px;}
.ws45{word-spacing:-3.540000px;}
.ws37{word-spacing:-3.480000px;}
.wsb9{word-spacing:-3.456000px;}
.ws33{word-spacing:-3.420000px;}
.wsc1{word-spacing:-3.408000px;}
.ws72{word-spacing:-3.360000px;}
.ws73{word-spacing:-3.300000px;}
.wsb6{word-spacing:-3.264000px;}
.wsf{word-spacing:-3.240000px;}
.wsd8{word-spacing:-3.180000px;}
.ws80{word-spacing:-3.120000px;}
.wsd2{word-spacing:-3.072000px;}
.ws31{word-spacing:-3.060000px;}
.ws47{word-spacing:-3.000000px;}
.ws10{word-spacing:-2.940000px;}
.ws56{word-spacing:-2.880000px;}
.wsd0{word-spacing:-2.832000px;}
.ws5c{word-spacing:-2.820000px;}
.ws34{word-spacing:-2.760000px;}
.ws3d{word-spacing:-2.700000px;}
.wsc8{word-spacing:-2.688000px;}
.ws4{word-spacing:-2.664000px;}
.ws3a{word-spacing:-2.640000px;}
.wsa2{word-spacing:-2.592000px;}
.ws5d{word-spacing:-2.580000px;}
.wsc3{word-spacing:-2.544000px;}
.ws79{word-spacing:-2.520000px;}
.wsbd{word-spacing:-2.496000px;}
.wsd{word-spacing:-2.460000px;}
.wsbf{word-spacing:-2.448000px;}
.ws41{word-spacing:-2.400000px;}
.ws71{word-spacing:-2.340000px;}
.wsd7{word-spacing:-2.304000px;}
.ws26{word-spacing:-2.280000px;}
.wsd3{word-spacing:-2.256000px;}
.ws2a{word-spacing:-2.220000px;}
.wscf{word-spacing:-2.208000px;}
.ws42{word-spacing:-2.160000px;}
.wsa1{word-spacing:-2.112000px;}
.ws6b{word-spacing:-2.100000px;}
.ws43{word-spacing:-2.040000px;}
.wsc0{word-spacing:-2.016000px;}
.ws3c{word-spacing:-1.980000px;}
.ws16{word-spacing:-1.920000px;}
.ws9c{word-spacing:-1.872000px;}
.ws11{word-spacing:-1.860000px;}
.wsca{word-spacing:-1.824000px;}
.ws66{word-spacing:-1.800000px;}
.wsd5{word-spacing:-1.776000px;}
.ws2d{word-spacing:-1.740000px;}
.ws28{word-spacing:-1.680000px;}
.wsbb{word-spacing:-1.632000px;}
.ws63{word-spacing:-1.620000px;}
.wsc7{word-spacing:-1.584000px;}
.ws13{word-spacing:-1.560000px;}
.wsce{word-spacing:-1.536000px;}
.ws19{word-spacing:-1.500000px;}
.ws75{word-spacing:-1.440000px;}
.wsd1{word-spacing:-1.392000px;}
.ws5b{word-spacing:-1.380000px;}
.ws18{word-spacing:-1.320000px;}
.wsc9{word-spacing:-1.296000px;}
.wse{word-spacing:-1.260000px;}
.wsa3{word-spacing:-1.248000px;}
.ws49{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.140000px;}
.wscc{word-spacing:-1.104000px;}
.ws20{word-spacing:-1.080000px;}
.wsa0{word-spacing:-1.056000px;}
.ws1e{word-spacing:-1.020000px;}
.wscb{word-spacing:-1.008000px;}
.ws48{word-spacing:-0.960000px;}
.ws9b{word-spacing:-0.912000px;}
.ws15{word-spacing:-0.900000px;}
.wsbc{word-spacing:-0.864000px;}
.ws40{word-spacing:-0.840000px;}
.wsc4{word-spacing:-0.816000px;}
.ws1d{word-spacing:-0.780000px;}
.wsb3{word-spacing:-0.768000px;}
.ws1c{word-spacing:-0.720000px;}
.wsd4{word-spacing:-0.672000px;}
.ws77{word-spacing:-0.660000px;}
.wscd{word-spacing:-0.624000px;}
.ws29{word-spacing:-0.600000px;}
.wsc6{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.528000px;}
.ws12{word-spacing:-0.480000px;}
.ws60{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.420000px;}
.ws7f{word-spacing:-0.384000px;}
.ws14{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.300000px;}
.ws7d{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.240000px;}
.ws8{word-spacing:-0.192000px;}
.ws35{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.120000px;}
.wsb7{word-spacing:-0.096000px;}
.ws57{word-spacing:-0.060000px;}
.ws9f{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsb2{word-spacing:0.048000px;}
.ws38{word-spacing:0.060000px;}
.wsba{word-spacing:0.096000px;}
.ws24{word-spacing:0.120000px;}
.ws6d{word-spacing:0.144000px;}
.ws39{word-spacing:0.180000px;}
.wsb5{word-spacing:0.240000px;}
.ws7c{word-spacing:0.288000px;}
.ws69{word-spacing:0.300000px;}
.ws4d{word-spacing:0.336000px;}
.wsb4{word-spacing:0.384000px;}
.ws68{word-spacing:0.420000px;}
.ws61{word-spacing:0.432000px;}
.wsc5{word-spacing:0.528000px;}
.ws55{word-spacing:0.540000px;}
.ws76{word-spacing:0.600000px;}
.ws6e{word-spacing:0.672000px;}
.ws7a{word-spacing:0.768000px;}
.ws5{word-spacing:1.104000px;}
.ws81{word-spacing:1.140000px;}
.wsa{word-spacing:1.152000px;}
.ws94{word-spacing:2.100000px;}
.ws64{word-spacing:2.160000px;}
.ws82{word-spacing:2.208000px;}
.ws9a{word-spacing:3.060000px;}
.ws6f{word-spacing:3.168000px;}
.ws92{word-spacing:3.540000px;}
.ws6c{word-spacing:3.600000px;}
.ws17{word-spacing:4.080000px;}
.ws78{word-spacing:4.140000px;}
.ws4c{word-spacing:4.368000px;}
.ws6{word-spacing:4.416000px;}
.ws6a{word-spacing:4.620000px;}
.ws3f{word-spacing:5.040000px;}
.ws5f{word-spacing:5.160000px;}
.ws98{word-spacing:5.220000px;}
.wsb{word-spacing:5.460000px;}
.ws1a{word-spacing:5.520000px;}
.ws8f{word-spacing:29.280000px;}
.ws8a{word-spacing:29.328000px;}
.ws91{word-spacing:32.880000px;}
.ws8e{word-spacing:56.016000px;}
.ws8d{word-spacing:67.920000px;}
.ws89{word-spacing:69.360000px;}
.ws88{word-spacing:78.240000px;}
.ws8c{word-spacing:81.360000px;}
.ws87{word-spacing:96.048000px;}
.ws8b{word-spacing:106.752000px;}
._e{margin-left:-2898.126000px;}
._f{margin-left:-2874.309000px;}
._3{margin-left:-7.098000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.158000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.074000px;}
._5{width:1.344000px;}
._8{width:3.264000px;}
._6{width:4.368000px;}
._7{width:5.376000px;}
._b{width:6.720000px;}
._a{width:7.980000px;}
._9{width:9.180000px;}
._c{width:10.920000px;}
._d{width:12.000000px;}
._24{width:42.672000px;}
._13{width:46.224000px;}
._26{width:55.872000px;}
._14{width:68.628000px;}
._19{width:70.092000px;}
._15{width:81.264000px;}
._18{width:82.800000px;}
._11{width:84.480000px;}
._27{width:94.704000px;}
._10{width:96.048000px;}
._12{width:150.126000px;}
._1f{width:283.344000px;}
._25{width:294.000000px;}
._20{width:368.688000px;}
._1d{width:371.376000px;}
._1c{width:382.128000px;}
._1e{width:392.736000px;}
._21{width:407.520000px;}
._22{width:421.968000px;}
._28{width:427.344000px;}
._17{width:430.080000px;}
._16{width:443.424000px;}
._1b{width:470.112000px;}
._1a{width:480.768000px;}
._23{width:494.112000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y132{bottom:82.594800px;}
.y1a4{bottom:82.796700px;}
.y11d{bottom:82.925400px;}
.y11b{bottom:83.135100px;}
.yf5{bottom:83.138100px;}
.y5f{bottom:83.222100px;}
.y18c{bottom:83.228850px;}
.y99{bottom:83.338950px;}
.y95{bottom:83.357100px;}
.y11a{bottom:83.363850px;}
.yf1{bottom:83.372700px;}
.y12a{bottom:83.457000px;}
.y2b{bottom:83.493900px;}
.yf3{bottom:83.560350px;}
.ybb{bottom:88.592700px;}
.y174{bottom:93.038100px;}
.y1e4{bottom:94.938300px;}
.y1a3{bottom:97.796700px;}
.y131{bottom:98.338800px;}
.y11c{bottom:98.669400px;}
.yf4{bottom:98.882100px;}
.y98{bottom:99.082950px;}
.y129{bottom:99.201000px;}
.yf2{bottom:99.307200px;}
.y5e{bottom:101.222100px;}
.y18b{bottom:101.228850px;}
.y94{bottom:101.357100px;}
.y119{bottom:101.363850px;}
.yf0{bottom:101.372700px;}
.yba{bottom:106.592700px;}
.y173{bottom:109.298100px;}
.y1e3{bottom:109.938300px;}
.y1a2{bottom:112.796700px;}
.y130{bottom:114.082800px;}
.y97{bottom:114.826950px;}
.y5d{bottom:119.222100px;}
.y18a{bottom:119.228850px;}
.y93{bottom:119.357100px;}
.y118{bottom:119.363850px;}
.yef{bottom:119.372700px;}
.y17{bottom:121.518300px;}
.yb9{bottom:124.592700px;}
.y1e2{bottom:124.938300px;}
.y172{bottom:125.546100px;}
.y1a1{bottom:127.796700px;}
.y5c{bottom:137.222100px;}
.y189{bottom:137.228850px;}
.y92{bottom:137.357100px;}
.y117{bottom:137.363850px;}
.yee{bottom:137.372700px;}
.y1e1{bottom:139.938300px;}
.y171{bottom:141.825900px;}
.yb8{bottom:142.592700px;}
.y1a0{bottom:142.796700px;}
.y9c{bottom:151.281150px;}
.y1e0{bottom:154.938300px;}
.y5b{bottom:155.222100px;}
.y188{bottom:155.228850px;}
.y91{bottom:155.357100px;}
.y116{bottom:155.363850px;}
.yed{bottom:155.372700px;}
.y19f{bottom:157.796700px;}
.y170{bottom:158.073900px;}
.yb7{bottom:160.592700px;}
.y1df{bottom:169.938300px;}
.y19e{bottom:172.796700px;}
.y5a{bottom:173.222100px;}
.y187{bottom:173.228850px;}
.y90{bottom:173.357100px;}
.y115{bottom:173.363850px;}
.yec{bottom:173.372700px;}
.y16f{bottom:174.321900px;}
.y27{bottom:175.351800px;}
.yb6{bottom:178.592700px;}
.y1de{bottom:184.938300px;}
.y19d{bottom:187.796700px;}
.y16e{bottom:190.569900px;}
.y59{bottom:191.222100px;}
.y186{bottom:191.228850px;}
.y8f{bottom:191.357100px;}
.y114{bottom:191.363850px;}
.yeb{bottom:191.372700px;}
.y26{bottom:193.351800px;}
.yb5{bottom:196.592700px;}
.y1dd{bottom:199.938300px;}
.y19c{bottom:202.796700px;}
.y16d{bottom:206.817900px;}
.y58{bottom:209.222100px;}
.y185{bottom:209.228850px;}
.y8e{bottom:209.357100px;}
.y113{bottom:209.363850px;}
.yea{bottom:209.372700px;}
.y25{bottom:211.351800px;}
.yb4{bottom:214.592700px;}
.y1dc{bottom:214.938300px;}
.y19b{bottom:217.796700px;}
.y16c{bottom:223.065900px;}
.y57{bottom:227.222100px;}
.y184{bottom:227.228850px;}
.y8d{bottom:227.357100px;}
.y112{bottom:227.363850px;}
.ye9{bottom:227.372700px;}
.y24{bottom:229.351800px;}
.y1db{bottom:229.938300px;}
.yb3{bottom:232.592700px;}
.y19a{bottom:232.796700px;}
.y16b{bottom:239.313900px;}
.y1da{bottom:244.938300px;}
.y56{bottom:245.222100px;}
.y183{bottom:245.228850px;}
.y8c{bottom:245.357100px;}
.y111{bottom:245.363850px;}
.ye8{bottom:245.372700px;}
.y23{bottom:247.351800px;}
.y199{bottom:247.796700px;}
.yb2{bottom:250.592700px;}
.y16a{bottom:255.585600px;}
.y1d9{bottom:259.938300px;}
.y198{bottom:262.796700px;}
.y55{bottom:263.222100px;}
.y182{bottom:263.228850px;}
.y8b{bottom:263.357100px;}
.y110{bottom:263.363850px;}
.ye7{bottom:263.372700px;}
.y22{bottom:265.351800px;}
.yb1{bottom:268.592700px;}
.y169{bottom:271.833600px;}
.y1d8{bottom:274.938300px;}
.y197{bottom:277.796700px;}
.y54{bottom:281.222100px;}
.y181{bottom:281.228850px;}
.y8a{bottom:281.357100px;}
.y10f{bottom:281.363850px;}
.ye6{bottom:281.372700px;}
.y21{bottom:283.351800px;}
.yb0{bottom:286.592700px;}
.y168{bottom:288.081600px;}
.y1d7{bottom:289.938300px;}
.y196{bottom:292.796700px;}
.y53{bottom:299.222100px;}
.y180{bottom:299.228850px;}
.y89{bottom:299.357100px;}
.y10e{bottom:299.363850px;}
.ye5{bottom:299.372700px;}
.y20{bottom:301.351800px;}
.y167{bottom:304.329600px;}
.yaf{bottom:304.592700px;}
.y1d6{bottom:304.938300px;}
.y195{bottom:307.796700px;}
.y52{bottom:317.222100px;}
.y17f{bottom:317.228850px;}
.y88{bottom:317.357100px;}
.y10d{bottom:317.363850px;}
.ye4{bottom:317.372700px;}
.y1f{bottom:319.351800px;}
.y1d5{bottom:319.938300px;}
.y166{bottom:320.577600px;}
.yae{bottom:322.592700px;}
.y194{bottom:322.796700px;}
.y1d4{bottom:334.938300px;}
.y51{bottom:335.222100px;}
.y17e{bottom:335.228850px;}
.y87{bottom:335.357100px;}
.y10c{bottom:335.363850px;}
.ye3{bottom:335.372700px;}
.y165{bottom:336.825600px;}
.y1e{bottom:337.351800px;}
.y193{bottom:337.796700px;}
.yad{bottom:340.592700px;}
.y1d3{bottom:349.938300px;}
.y192{bottom:352.796700px;}
.y164{bottom:353.073600px;}
.y50{bottom:353.222100px;}
.y86{bottom:353.357100px;}
.y10b{bottom:353.363850px;}
.ye2{bottom:353.372700px;}
.y1d{bottom:355.351800px;}
.yac{bottom:358.592700px;}
.y1d2{bottom:364.938300px;}
.y191{bottom:367.796700px;}
.y4f{bottom:371.222100px;}
.y17d{bottom:371.228850px;}
.y85{bottom:371.357100px;}
.y10a{bottom:371.363850px;}
.ye1{bottom:371.372700px;}
.y1c{bottom:373.351800px;}
.yab{bottom:376.592700px;}
.y1d1{bottom:379.938300px;}
.y190{bottom:382.796700px;}
.y163{bottom:384.585600px;}
.y4e{bottom:389.222100px;}
.y17c{bottom:389.228850px;}
.y84{bottom:389.357100px;}
.y109{bottom:389.363850px;}
.ye0{bottom:389.372700px;}
.y1b{bottom:391.351800px;}
.yaa{bottom:394.592700px;}
.y1d0{bottom:394.938300px;}
.y18f{bottom:397.796700px;}
.y4d{bottom:407.222100px;}
.y17b{bottom:407.228850px;}
.y83{bottom:407.357100px;}
.y108{bottom:407.363850px;}
.ydf{bottom:407.372700px;}
.y1a{bottom:409.351800px;}
.y1cf{bottom:409.938300px;}
.ya9{bottom:412.592700px;}
.y18e{bottom:412.796700px;}
.y162{bottom:419.423850px;}
.y1ce{bottom:424.938300px;}
.y4c{bottom:425.222100px;}
.y17a{bottom:425.228850px;}
.y82{bottom:425.357100px;}
.y107{bottom:425.363850px;}
.yde{bottom:425.372700px;}
.y19{bottom:427.351800px;}
.y18d{bottom:427.796700px;}
.ya8{bottom:430.592700px;}
.y161{bottom:438.923850px;}
.y1cd{bottom:439.938300px;}
.y4b{bottom:443.222100px;}
.y179{bottom:443.228850px;}
.y81{bottom:443.357100px;}
.y106{bottom:443.363850px;}
.ydd{bottom:443.372700px;}
.y28{bottom:445.351800px;}
.ya7{bottom:448.592700px;}
.y1cc{bottom:454.938300px;}
.y4a{bottom:461.222100px;}
.y178{bottom:461.228850px;}
.y80{bottom:461.357100px;}
.y105{bottom:461.363850px;}
.ydc{bottom:461.372700px;}
.y18{bottom:463.351800px;}
.y9b{bottom:468.897150px;}
.y1cb{bottom:469.938300px;}
.y49{bottom:479.222100px;}
.y177{bottom:479.228850px;}
.y7f{bottom:479.357100px;}
.y104{bottom:479.363850px;}
.ydb{bottom:479.372700px;}
.ya6{bottom:484.592700px;}
.y1ca{bottom:484.938300px;}
.y48{bottom:497.228850px;}
.y7e{bottom:497.357100px;}
.y103{bottom:497.363850px;}
.yda{bottom:497.372700px;}
.y160{bottom:497.378850px;}
.y141{bottom:497.513850px;}
.y1c9{bottom:499.938300px;}
.y1c8{bottom:514.938300px;}
.y47{bottom:515.228850px;}
.y7d{bottom:515.357100px;}
.y102{bottom:515.363850px;}
.yd9{bottom:515.372700px;}
.y15f{bottom:515.378850px;}
.y140{bottom:515.513850px;}
.ya5{bottom:519.328500px;}
.y1c7{bottom:529.938300px;}
.y46{bottom:533.228850px;}
.y7c{bottom:533.357100px;}
.y101{bottom:533.363850px;}
.yd8{bottom:533.372700px;}
.y15e{bottom:533.378850px;}
.y13f{bottom:533.513850px;}
.y16{bottom:533.894550px;}
.ya4{bottom:534.934500px;}
.y1c6{bottom:544.938300px;}
.y45{bottom:551.228850px;}
.y7b{bottom:551.357100px;}
.y100{bottom:551.363850px;}
.yd7{bottom:551.372700px;}
.y15d{bottom:551.378850px;}
.y13e{bottom:551.513850px;}
.ya3{bottom:551.648850px;}
.y1c5{bottom:559.938300px;}
.y15{bottom:566.750550px;}
.y44{bottom:569.228850px;}
.y7a{bottom:569.357100px;}
.yff{bottom:569.363850px;}
.yd6{bottom:569.372700px;}
.y15c{bottom:569.378850px;}
.y13d{bottom:569.513850px;}
.y1c4{bottom:574.938300px;}
.y14{bottom:581.750550px;}
.y43{bottom:587.228850px;}
.y79{bottom:587.357100px;}
.yfe{bottom:587.363850px;}
.yd5{bottom:587.372700px;}
.y15b{bottom:587.378850px;}
.ya2{bottom:587.498850px;}
.y13c{bottom:587.513850px;}
.y1c3{bottom:589.938300px;}
.y13{bottom:596.750550px;}
.y1c2{bottom:604.938300px;}
.y42{bottom:605.228850px;}
.y78{bottom:605.357100px;}
.yfd{bottom:605.363850px;}
.yd4{bottom:605.372700px;}
.y15a{bottom:605.378850px;}
.ya1{bottom:605.498850px;}
.y13b{bottom:605.513850px;}
.y12{bottom:611.750550px;}
.y1c1{bottom:619.938300px;}
.y41{bottom:623.228850px;}
.y77{bottom:623.357100px;}
.yfc{bottom:623.363850px;}
.yd3{bottom:623.372700px;}
.y159{bottom:623.378850px;}
.ya0{bottom:623.498850px;}
.y13a{bottom:623.513850px;}
.y11{bottom:626.750550px;}
.y1c0{bottom:634.938300px;}
.y40{bottom:641.228850px;}
.y76{bottom:641.357100px;}
.yfb{bottom:641.363850px;}
.yd2{bottom:641.372700px;}
.y158{bottom:641.378850px;}
.y9f{bottom:641.498850px;}
.y139{bottom:641.513850px;}
.y10{bottom:641.750550px;}
.y1bf{bottom:649.938300px;}
.yf{bottom:656.750550px;}
.y3f{bottom:659.228850px;}
.y75{bottom:659.357100px;}
.yfa{bottom:659.363850px;}
.yd1{bottom:659.372700px;}
.y157{bottom:659.378850px;}
.y138{bottom:659.513850px;}
.y1be{bottom:664.938300px;}
.ye{bottom:671.750550px;}
.y3e{bottom:677.228850px;}
.y74{bottom:677.357100px;}
.y9e{bottom:677.363850px;}
.yd0{bottom:677.372700px;}
.y156{bottom:677.378850px;}
.y137{bottom:677.513850px;}
.y1bd{bottom:679.938300px;}
.yd{bottom:686.750550px;}
.y1bc{bottom:694.938300px;}
.y176{bottom:695.228850px;}
.y73{bottom:695.357100px;}
.yf9{bottom:695.363850px;}
.ycf{bottom:695.372700px;}
.y155{bottom:695.378850px;}
.y136{bottom:695.513850px;}
.yc{bottom:701.750550px;}
.y1bb{bottom:709.938300px;}
.y3d{bottom:713.228850px;}
.y72{bottom:713.357100px;}
.yf8{bottom:713.363850px;}
.yce{bottom:713.372700px;}
.y154{bottom:713.378850px;}
.y135{bottom:713.513850px;}
.y1ba{bottom:724.938300px;}
.y71{bottom:731.357100px;}
.yf7{bottom:731.363850px;}
.ycd{bottom:731.372700px;}
.y153{bottom:731.378850px;}
.y134{bottom:731.513850px;}
.y1b9{bottom:739.938300px;}
.y175{bottom:749.228850px;}
.y70{bottom:749.357100px;}
.yf6{bottom:749.363850px;}
.ycc{bottom:749.372700px;}
.y152{bottom:749.378850px;}
.y128{bottom:749.513850px;}
.yb{bottom:750.494550px;}
.y1b8{bottom:754.938300px;}
.y6f{bottom:767.357100px;}
.y3c{bottom:767.363850px;}
.ycb{bottom:767.372700px;}
.y151{bottom:767.378850px;}
.y127{bottom:767.513850px;}
.y1b7{bottom:769.938300px;}
.y1b6{bottom:784.938300px;}
.ya{bottom:784.994550px;}
.y6e{bottom:785.357100px;}
.y3b{bottom:785.363850px;}
.yca{bottom:785.372700px;}
.y150{bottom:785.378850px;}
.y126{bottom:785.513850px;}
.y9a{bottom:792.261150px;}
.y1b5{bottom:799.938300px;}
.y6d{bottom:803.357100px;}
.y3a{bottom:803.363850px;}
.yc9{bottom:803.372700px;}
.y14f{bottom:803.378850px;}
.y125{bottom:803.513850px;}
.y9{bottom:805.612500px;}
.y1b4{bottom:814.938300px;}
.y8{bottom:817.994550px;}
.y6c{bottom:821.357100px;}
.y39{bottom:821.363850px;}
.yc8{bottom:821.372700px;}
.y14e{bottom:821.378850px;}
.y124{bottom:821.513850px;}
.y1b3{bottom:829.938300px;}
.y7{bottom:838.612500px;}
.y6b{bottom:839.357100px;}
.y38{bottom:839.363850px;}
.yc7{bottom:839.372700px;}
.y14d{bottom:839.378850px;}
.y123{bottom:839.513850px;}
.y1b2{bottom:844.938300px;}
.y6{bottom:853.879800px;}
.y9d{bottom:853.914750px;}
.y6a{bottom:857.357100px;}
.y37{bottom:857.363850px;}
.yc6{bottom:857.372700px;}
.y14c{bottom:857.378850px;}
.y122{bottom:857.513850px;}
.y1b1{bottom:859.938300px;}
.y1b0{bottom:874.938300px;}
.y69{bottom:875.357100px;}
.y36{bottom:875.363850px;}
.yc5{bottom:875.372700px;}
.y14b{bottom:875.378850px;}
.y121{bottom:875.513850px;}
.y5{bottom:881.263200px;}
.y1af{bottom:889.938300px;}
.y68{bottom:893.357100px;}
.y35{bottom:893.363850px;}
.yc4{bottom:893.372700px;}
.y14a{bottom:893.378850px;}
.y120{bottom:893.513850px;}
.y1ae{bottom:904.938300px;}
.y4{bottom:908.269200px;}
.y67{bottom:911.357100px;}
.y34{bottom:911.363850px;}
.yc3{bottom:911.372700px;}
.y149{bottom:911.378850px;}
.y12f{bottom:911.498850px;}
.y133{bottom:911.513850px;}
.y1ad{bottom:919.938300px;}
.y66{bottom:929.357100px;}
.y33{bottom:929.363850px;}
.y1eb{bottom:929.367600px;}
.yc2{bottom:929.372700px;}
.y148{bottom:929.378850px;}
.y12e{bottom:929.498850px;}
.y11f{bottom:929.513850px;}
.y1ac{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y65{bottom:947.357100px;}
.y32{bottom:947.363850px;}
.y1ea{bottom:947.367600px;}
.yc1{bottom:947.372700px;}
.y147{bottom:947.378850px;}
.y12d{bottom:947.498850px;}
.y11e{bottom:947.513850px;}
.y1ab{bottom:949.938300px;}
.y1aa{bottom:964.938300px;}
.y64{bottom:965.357100px;}
.y31{bottom:965.363850px;}
.y1e9{bottom:965.367600px;}
.yc0{bottom:965.372700px;}
.y146{bottom:965.378850px;}
.y12c{bottom:965.498850px;}
.y1a9{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y63{bottom:983.357100px;}
.y30{bottom:983.363850px;}
.y1e8{bottom:983.367600px;}
.ybf{bottom:983.372700px;}
.y145{bottom:983.378850px;}
.y1a8{bottom:994.938300px;}
.y62{bottom:1001.357100px;}
.y2f{bottom:1001.363850px;}
.y1e7{bottom:1001.367600px;}
.ybe{bottom:1001.372700px;}
.y144{bottom:1001.378850px;}
.y12b{bottom:1001.498850px;}
.y1a7{bottom:1009.938300px;}
.y61{bottom:1019.357100px;}
.y2e{bottom:1019.363850px;}
.y1e6{bottom:1019.367600px;}
.ybd{bottom:1019.372700px;}
.y143{bottom:1019.378850px;}
.y1a6{bottom:1024.938300px;}
.y60{bottom:1037.357100px;}
.y2d{bottom:1037.363850px;}
.y1e5{bottom:1037.367600px;}
.ybc{bottom:1037.372700px;}
.y142{bottom:1037.378850px;}
.y1a5{bottom:1039.938300px;}
.y2a{bottom:1070.766450px;}
.y96{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:30.577148px;}
.h8{height:34.945312px;}
.h7{height:34.992188px;}
.ha{height:42.998250px;}
.h12{height:43.019250px;}
.h11{height:43.019850px;}
.h9{height:43.031250px;}
.hb{height:43.681641px;}
.h10{height:43.740234px;}
.hd{height:45.708703px;}
.he{height:45.720703px;}
.hf{height:48.410156px;}
.h5{height:51.485283px;}
.h3{height:52.417969px;}
.hc{height:53.789062px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1a{left:77.836050px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x22{left:99.988950px;}
.x27{left:106.299150px;}
.xc{left:110.555400px;}
.x19{left:123.586200px;}
.x3{left:125.427600px;}
.x12{left:128.409450px;}
.x6{left:131.816400px;}
.xd{left:144.725400px;}
.x4{left:161.571600px;}
.x15{left:184.970700px;}
.x18{left:192.766200px;}
.x23{left:195.140400px;}
.x1b{left:196.514550px;}
.x17{left:211.096200px;}
.x5{left:212.876400px;}
.x13{left:278.505450px;}
.x21{left:285.796950px;}
.xa{left:455.041500px;}
.xe{left:457.092150px;}
.x14{left:468.573450px;}
.x1c{left:478.341000px;}
.x7{left:480.476400px;}
.x25{left:486.846600px;}
.xf{left:491.127150px;}
.x26{left:508.063350px;}
.x1d{left:512.361000px;}
.x8{left:514.496400px;}
.x24{left:574.835400px;}
.x20{left:600.685350px;}
.x11{left:663.492300px;}
.x2{left:704.338650px;}
.x1e{left:717.130200px;}
.x10{left:724.221150px;}
.x1f{left:739.336350px;}
.x16{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:18.283733pt;}
.v1{vertical-align:20.138133pt;}
.ls75{letter-spacing:-3.157333pt;}
.lsa6{letter-spacing:-2.346667pt;}
.ls74{letter-spacing:-0.800000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.533333pt;}
.ls53{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.384000pt;}
.ls5d{letter-spacing:-0.373333pt;}
.lsa3{letter-spacing:-0.341333pt;}
.ls43{letter-spacing:-0.298667pt;}
.ls5e{letter-spacing:-0.266667pt;}
.ls69{letter-spacing:-0.256000pt;}
.lsa4{letter-spacing:-0.213333pt;}
.ls41{letter-spacing:-0.160000pt;}
.ls5f{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.106667pt;}
.lsa5{letter-spacing:-0.085333pt;}
.ls40{letter-spacing:-0.053333pt;}
.ls1b{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls7b{letter-spacing:0.042667pt;}
.ls47{letter-spacing:0.053333pt;}
.ls83{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls7d{letter-spacing:0.256000pt;}
.ls3e{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.341333pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls87{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.469333pt;}
.ls51{letter-spacing:0.480000pt;}
.ls92{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.533333pt;}
.ls9a{letter-spacing:0.554667pt;}
.ls64{letter-spacing:0.586667pt;}
.lsa0{letter-spacing:0.597333pt;}
.ls14{letter-spacing:0.640000pt;}
.ls81{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.693333pt;}
.ls91{letter-spacing:0.725333pt;}
.ls2e{letter-spacing:0.746667pt;}
.ls89{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.ls3c{letter-spacing:0.853333pt;}
.ls98{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls7c{letter-spacing:0.938667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls99{letter-spacing:0.981333pt;}
.ls4b{letter-spacing:1.013333pt;}
.ls27{letter-spacing:1.027733pt;}
.ls3d{letter-spacing:1.066667pt;}
.ls7f{letter-spacing:1.109333pt;}
.ls8{letter-spacing:1.120000pt;}
.ls96{letter-spacing:1.152000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls4c{letter-spacing:1.226667pt;}
.ls9d{letter-spacing:1.237333pt;}
.ls65{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls9b{letter-spacing:1.365333pt;}
.lsd{letter-spacing:1.386667pt;}
.ls94{letter-spacing:1.408000pt;}
.ls56{letter-spacing:1.440000pt;}
.ls86{letter-spacing:1.450667pt;}
.ls21{letter-spacing:1.493333pt;}
.ls25{letter-spacing:1.546667pt;}
.lsa2{letter-spacing:1.578667pt;}
.ls57{letter-spacing:1.600000pt;}
.ls97{letter-spacing:1.621333pt;}
.lsb{letter-spacing:1.653333pt;}
.ls78{letter-spacing:1.664000pt;}
.ls10{letter-spacing:1.706667pt;}
.ls12{letter-spacing:1.760000pt;}
.ls8d{letter-spacing:1.792000pt;}
.ls37{letter-spacing:1.813333pt;}
.ls5c{letter-spacing:1.866667pt;}
.ls7e{letter-spacing:1.877333pt;}
.ls36{letter-spacing:1.920000pt;}
.lsa7{letter-spacing:1.962667pt;}
.ls52{letter-spacing:1.973333pt;}
.ls9f{letter-spacing:2.005333pt;}
.ls1f{letter-spacing:2.026667pt;}
.lsa8{letter-spacing:2.048000pt;}
.ls60{letter-spacing:2.080000pt;}
.ls34{letter-spacing:2.133333pt;}
.ls8c{letter-spacing:2.176000pt;}
.ls7{letter-spacing:2.186667pt;}
.ls8a{letter-spacing:2.218667pt;}
.ls67{letter-spacing:2.240000pt;}
.ls90{letter-spacing:2.261333pt;}
.ls4f{letter-spacing:2.293333pt;}
.ls80{letter-spacing:2.304000pt;}
.ls30{letter-spacing:2.346667pt;}
.ls95{letter-spacing:2.389333pt;}
.ls32{letter-spacing:2.400000pt;}
.ls2c{letter-spacing:2.453333pt;}
.ls4d{letter-spacing:2.506667pt;}
.ls9c{letter-spacing:2.517333pt;}
.ls46{letter-spacing:2.560000pt;}
.lsa{letter-spacing:2.613333pt;}
.ls3b{letter-spacing:2.666667pt;}
.ls29{letter-spacing:2.720000pt;}
.ls9e{letter-spacing:2.730667pt;}
.ls5b{letter-spacing:2.773333pt;}
.lsa9{letter-spacing:2.826667pt;}
.ls9{letter-spacing:2.880000pt;}
.ls82{letter-spacing:2.901333pt;}
.ls45{letter-spacing:2.933333pt;}
.ls61{letter-spacing:2.986667pt;}
.ls8e{letter-spacing:3.029333pt;}
.ls2b{letter-spacing:3.040000pt;}
.ls85{letter-spacing:3.072000pt;}
.ls2f{letter-spacing:3.093333pt;}
.ls39{letter-spacing:3.146667pt;}
.ls17{letter-spacing:3.200000pt;}
.ls58{letter-spacing:3.253333pt;}
.ls6{letter-spacing:3.306667pt;}
.ls84{letter-spacing:3.328000pt;}
.ls49{letter-spacing:3.360000pt;}
.ls48{letter-spacing:3.466667pt;}
.ls88{letter-spacing:3.498667pt;}
.ls33{letter-spacing:3.520000pt;}
.ls7a{letter-spacing:3.541333pt;}
.ls23{letter-spacing:3.573333pt;}
.ls68{letter-spacing:3.626667pt;}
.ls42{letter-spacing:3.680000pt;}
.ls35{letter-spacing:3.733333pt;}
.ls20{letter-spacing:3.786667pt;}
.ls44{letter-spacing:3.840000pt;}
.ls28{letter-spacing:3.946667pt;}
.ls1d{letter-spacing:4.000000pt;}
.ls8b{letter-spacing:4.010667pt;}
.ls5{letter-spacing:4.106667pt;}
.ls4a{letter-spacing:4.160000pt;}
.ls8f{letter-spacing:4.224000pt;}
.ls62{letter-spacing:4.320000pt;}
.ls93{letter-spacing:4.394667pt;}
.ls24{letter-spacing:4.480000pt;}
.lsa1{letter-spacing:4.522667pt;}
.ls31{letter-spacing:4.533333pt;}
.ls76{letter-spacing:4.693333pt;}
.ls3a{letter-spacing:4.800000pt;}
.ls55{letter-spacing:4.853333pt;}
.ls6b{letter-spacing:4.906667pt;}
.ls13{letter-spacing:4.960000pt;}
.ls6d{letter-spacing:5.120000pt;}
.ls50{letter-spacing:5.226667pt;}
.ls59{letter-spacing:5.280000pt;}
.ls63{letter-spacing:5.440000pt;}
.ls6c{letter-spacing:5.653333pt;}
.ls38{letter-spacing:5.706667pt;}
.ls26{letter-spacing:5.813333pt;}
.ls4e{letter-spacing:5.866667pt;}
.ls5a{letter-spacing:7.413333pt;}
.ls6f{letter-spacing:72.448000pt;}
.ls71{letter-spacing:74.208000pt;}
.ls70{letter-spacing:75.605333pt;}
.ls72{letter-spacing:96.170667pt;}
.ls6e{letter-spacing:97.237333pt;}
.ls73{letter-spacing:106.752000pt;}
.ws21{word-spacing:-53.333333pt;}
.ws52{word-spacing:-18.933333pt;}
.ws4e{word-spacing:-18.666667pt;}
.ws85{word-spacing:-17.866667pt;}
.ws65{word-spacing:-17.333333pt;}
.wsd6{word-spacing:-16.853333pt;}
.ws96{word-spacing:-16.746667pt;}
.ws86{word-spacing:-16.586667pt;}
.wsa9{word-spacing:-15.872000pt;}
.ws95{word-spacing:-15.680000pt;}
.ws83{word-spacing:-15.573333pt;}
.ws2{word-spacing:-15.466667pt;}
.ws70{word-spacing:-15.413333pt;}
.ws53{word-spacing:-15.200000pt;}
.ws84{word-spacing:-15.146667pt;}
.wsa7{word-spacing:-15.061333pt;}
.ws4f{word-spacing:-14.826667pt;}
.ws51{word-spacing:-14.720000pt;}
.wsae{word-spacing:-14.037333pt;}
.wsa5{word-spacing:-13.994667pt;}
.wsa4{word-spacing:-13.525333pt;}
.wsad{word-spacing:-13.482667pt;}
.ws50{word-spacing:-13.344000pt;}
.wsb0{word-spacing:-12.800000pt;}
.ws22{word-spacing:-12.602667pt;}
.wsb1{word-spacing:-12.458667pt;}
.wsaa{word-spacing:-12.373333pt;}
.ws97{word-spacing:-12.330667pt;}
.ws7e{word-spacing:-12.202667pt;}
.wsab{word-spacing:-12.032000pt;}
.wsa8{word-spacing:-11.946667pt;}
.ws1{word-spacing:-11.861333pt;}
.wsa6{word-spacing:-11.776000pt;}
.wsaf{word-spacing:-11.562667pt;}
.ws0{word-spacing:-9.785600pt;}
.wsac{word-spacing:-9.514667pt;}
.ws90{word-spacing:-8.704000pt;}
.ws2e{word-spacing:-5.813333pt;}
.ws44{word-spacing:-5.706667pt;}
.ws1b{word-spacing:-4.960000pt;}
.ws93{word-spacing:-4.906667pt;}
.ws62{word-spacing:-4.853333pt;}
.ws46{word-spacing:-4.800000pt;}
.ws3b{word-spacing:-4.533333pt;}
.ws2c{word-spacing:-4.480000pt;}
.ws74{word-spacing:-4.320000pt;}
.wsc2{word-spacing:-4.224000pt;}
.ws99{word-spacing:-4.160000pt;}
.ws36{word-spacing:-4.106667pt;}
.wsbe{word-spacing:-4.010667pt;}
.ws23{word-spacing:-4.000000pt;}
.ws30{word-spacing:-3.946667pt;}
.ws54{word-spacing:-3.840000pt;}
.ws27{word-spacing:-3.786667pt;}
.ws2f{word-spacing:-3.733333pt;}
.ws4a{word-spacing:-3.680000pt;}
.ws7b{word-spacing:-3.626667pt;}
.ws2b{word-spacing:-3.573333pt;}
.ws9e{word-spacing:-3.541333pt;}
.ws3e{word-spacing:-3.520000pt;}
.ws58{word-spacing:-3.466667pt;}
.ws59{word-spacing:-3.360000pt;}
.wsb8{word-spacing:-3.328000pt;}
.wsc{word-spacing:-3.306667pt;}
.ws67{word-spacing:-3.253333pt;}
.ws1f{word-spacing:-3.200000pt;}
.ws45{word-spacing:-3.146667pt;}
.ws37{word-spacing:-3.093333pt;}
.wsb9{word-spacing:-3.072000pt;}
.ws33{word-spacing:-3.040000pt;}
.wsc1{word-spacing:-3.029333pt;}
.ws72{word-spacing:-2.986667pt;}
.ws73{word-spacing:-2.933333pt;}
.wsb6{word-spacing:-2.901333pt;}
.wsf{word-spacing:-2.880000pt;}
.wsd8{word-spacing:-2.826667pt;}
.ws80{word-spacing:-2.773333pt;}
.wsd2{word-spacing:-2.730667pt;}
.ws31{word-spacing:-2.720000pt;}
.ws47{word-spacing:-2.666667pt;}
.ws10{word-spacing:-2.613333pt;}
.ws56{word-spacing:-2.560000pt;}
.wsd0{word-spacing:-2.517333pt;}
.ws5c{word-spacing:-2.506667pt;}
.ws34{word-spacing:-2.453333pt;}
.ws3d{word-spacing:-2.400000pt;}
.wsc8{word-spacing:-2.389333pt;}
.ws4{word-spacing:-2.368000pt;}
.ws3a{word-spacing:-2.346667pt;}
.wsa2{word-spacing:-2.304000pt;}
.ws5d{word-spacing:-2.293333pt;}
.wsc3{word-spacing:-2.261333pt;}
.ws79{word-spacing:-2.240000pt;}
.wsbd{word-spacing:-2.218667pt;}
.wsd{word-spacing:-2.186667pt;}
.wsbf{word-spacing:-2.176000pt;}
.ws41{word-spacing:-2.133333pt;}
.ws71{word-spacing:-2.080000pt;}
.wsd7{word-spacing:-2.048000pt;}
.ws26{word-spacing:-2.026667pt;}
.wsd3{word-spacing:-2.005333pt;}
.ws2a{word-spacing:-1.973333pt;}
.wscf{word-spacing:-1.962667pt;}
.ws42{word-spacing:-1.920000pt;}
.wsa1{word-spacing:-1.877333pt;}
.ws6b{word-spacing:-1.866667pt;}
.ws43{word-spacing:-1.813333pt;}
.wsc0{word-spacing:-1.792000pt;}
.ws3c{word-spacing:-1.760000pt;}
.ws16{word-spacing:-1.706667pt;}
.ws9c{word-spacing:-1.664000pt;}
.ws11{word-spacing:-1.653333pt;}
.wsca{word-spacing:-1.621333pt;}
.ws66{word-spacing:-1.600000pt;}
.wsd5{word-spacing:-1.578667pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws28{word-spacing:-1.493333pt;}
.wsbb{word-spacing:-1.450667pt;}
.ws63{word-spacing:-1.440000pt;}
.wsc7{word-spacing:-1.408000pt;}
.ws13{word-spacing:-1.386667pt;}
.wsce{word-spacing:-1.365333pt;}
.ws19{word-spacing:-1.333333pt;}
.ws75{word-spacing:-1.280000pt;}
.wsd1{word-spacing:-1.237333pt;}
.ws5b{word-spacing:-1.226667pt;}
.ws18{word-spacing:-1.173333pt;}
.wsc9{word-spacing:-1.152000pt;}
.wse{word-spacing:-1.120000pt;}
.wsa3{word-spacing:-1.109333pt;}
.ws49{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.013333pt;}
.wscc{word-spacing:-0.981333pt;}
.ws20{word-spacing:-0.960000pt;}
.wsa0{word-spacing:-0.938667pt;}
.ws1e{word-spacing:-0.906667pt;}
.wscb{word-spacing:-0.896000pt;}
.ws48{word-spacing:-0.853333pt;}
.ws9b{word-spacing:-0.810667pt;}
.ws15{word-spacing:-0.800000pt;}
.wsbc{word-spacing:-0.768000pt;}
.ws40{word-spacing:-0.746667pt;}
.wsc4{word-spacing:-0.725333pt;}
.ws1d{word-spacing:-0.693333pt;}
.wsb3{word-spacing:-0.682667pt;}
.ws1c{word-spacing:-0.640000pt;}
.wsd4{word-spacing:-0.597333pt;}
.ws77{word-spacing:-0.586667pt;}
.wscd{word-spacing:-0.554667pt;}
.ws29{word-spacing:-0.533333pt;}
.wsc6{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.469333pt;}
.ws12{word-spacing:-0.426667pt;}
.ws60{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.373333pt;}
.ws7f{word-spacing:-0.341333pt;}
.ws14{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.266667pt;}
.ws7d{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.213333pt;}
.ws8{word-spacing:-0.170667pt;}
.ws35{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.106667pt;}
.wsb7{word-spacing:-0.085333pt;}
.ws57{word-spacing:-0.053333pt;}
.ws9f{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.042667pt;}
.ws38{word-spacing:0.053333pt;}
.wsba{word-spacing:0.085333pt;}
.ws24{word-spacing:0.106667pt;}
.ws6d{word-spacing:0.128000pt;}
.ws39{word-spacing:0.160000pt;}
.wsb5{word-spacing:0.213333pt;}
.ws7c{word-spacing:0.256000pt;}
.ws69{word-spacing:0.266667pt;}
.ws4d{word-spacing:0.298667pt;}
.wsb4{word-spacing:0.341333pt;}
.ws68{word-spacing:0.373333pt;}
.ws61{word-spacing:0.384000pt;}
.wsc5{word-spacing:0.469333pt;}
.ws55{word-spacing:0.480000pt;}
.ws76{word-spacing:0.533333pt;}
.ws6e{word-spacing:0.597333pt;}
.ws7a{word-spacing:0.682667pt;}
.ws5{word-spacing:0.981333pt;}
.ws81{word-spacing:1.013333pt;}
.wsa{word-spacing:1.024000pt;}
.ws94{word-spacing:1.866667pt;}
.ws64{word-spacing:1.920000pt;}
.ws82{word-spacing:1.962667pt;}
.ws9a{word-spacing:2.720000pt;}
.ws6f{word-spacing:2.816000pt;}
.ws92{word-spacing:3.146667pt;}
.ws6c{word-spacing:3.200000pt;}
.ws17{word-spacing:3.626667pt;}
.ws78{word-spacing:3.680000pt;}
.ws4c{word-spacing:3.882667pt;}
.ws6{word-spacing:3.925333pt;}
.ws6a{word-spacing:4.106667pt;}
.ws3f{word-spacing:4.480000pt;}
.ws5f{word-spacing:4.586667pt;}
.ws98{word-spacing:4.640000pt;}
.wsb{word-spacing:4.853333pt;}
.ws1a{word-spacing:4.906667pt;}
.ws8f{word-spacing:26.026667pt;}
.ws8a{word-spacing:26.069333pt;}
.ws91{word-spacing:29.226667pt;}
.ws8e{word-spacing:49.792000pt;}
.ws8d{word-spacing:60.373333pt;}
.ws89{word-spacing:61.653333pt;}
.ws88{word-spacing:69.546667pt;}
.ws8c{word-spacing:72.320000pt;}
.ws87{word-spacing:85.376000pt;}
.ws8b{word-spacing:94.890667pt;}
._e{margin-left:-2576.112000pt;}
._f{margin-left:-2554.941333pt;}
._3{margin-left:-6.309333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.696000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.954667pt;}
._5{width:1.194667pt;}
._8{width:2.901333pt;}
._6{width:3.882667pt;}
._7{width:4.778667pt;}
._b{width:5.973333pt;}
._a{width:7.093333pt;}
._9{width:8.160000pt;}
._c{width:9.706667pt;}
._d{width:10.666667pt;}
._24{width:37.930667pt;}
._13{width:41.088000pt;}
._26{width:49.664000pt;}
._14{width:61.002667pt;}
._19{width:62.304000pt;}
._15{width:72.234667pt;}
._18{width:73.600000pt;}
._11{width:75.093333pt;}
._27{width:84.181333pt;}
._10{width:85.376000pt;}
._12{width:133.445333pt;}
._1f{width:251.861333pt;}
._25{width:261.333333pt;}
._20{width:327.722667pt;}
._1d{width:330.112000pt;}
._1c{width:339.669333pt;}
._1e{width:349.098667pt;}
._21{width:362.240000pt;}
._22{width:375.082667pt;}
._28{width:379.861333pt;}
._17{width:382.293333pt;}
._16{width:394.154667pt;}
._1b{width:417.877333pt;}
._1a{width:427.349333pt;}
._23{width:439.210667pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y132{bottom:73.417600pt;}
.y1a4{bottom:73.597067pt;}
.y11d{bottom:73.711467pt;}
.y11b{bottom:73.897867pt;}
.yf5{bottom:73.900533pt;}
.y5f{bottom:73.975200pt;}
.y18c{bottom:73.981200pt;}
.y99{bottom:74.079067pt;}
.y95{bottom:74.095200pt;}
.y11a{bottom:74.101200pt;}
.yf1{bottom:74.109067pt;}
.y12a{bottom:74.184000pt;}
.y2b{bottom:74.216800pt;}
.yf3{bottom:74.275867pt;}
.ybb{bottom:78.749067pt;}
.y174{bottom:82.700533pt;}
.y1e4{bottom:84.389600pt;}
.y1a3{bottom:86.930400pt;}
.y131{bottom:87.412267pt;}
.y11c{bottom:87.706133pt;}
.yf4{bottom:87.895200pt;}
.y98{bottom:88.073733pt;}
.y129{bottom:88.178667pt;}
.yf2{bottom:88.273067pt;}
.y5e{bottom:89.975200pt;}
.y18b{bottom:89.981200pt;}
.y94{bottom:90.095200pt;}
.y119{bottom:90.101200pt;}
.yf0{bottom:90.109067pt;}
.yba{bottom:94.749067pt;}
.y173{bottom:97.153867pt;}
.y1e3{bottom:97.722933pt;}
.y1a2{bottom:100.263733pt;}
.y130{bottom:101.406933pt;}
.y97{bottom:102.068400pt;}
.y5d{bottom:105.975200pt;}
.y18a{bottom:105.981200pt;}
.y93{bottom:106.095200pt;}
.y118{bottom:106.101200pt;}
.yef{bottom:106.109067pt;}
.y17{bottom:108.016267pt;}
.yb9{bottom:110.749067pt;}
.y1e2{bottom:111.056267pt;}
.y172{bottom:111.596533pt;}
.y1a1{bottom:113.597067pt;}
.y5c{bottom:121.975200pt;}
.y189{bottom:121.981200pt;}
.y92{bottom:122.095200pt;}
.y117{bottom:122.101200pt;}
.yee{bottom:122.109067pt;}
.y1e1{bottom:124.389600pt;}
.y171{bottom:126.067467pt;}
.yb8{bottom:126.749067pt;}
.y1a0{bottom:126.930400pt;}
.y9c{bottom:134.472133pt;}
.y1e0{bottom:137.722933pt;}
.y5b{bottom:137.975200pt;}
.y188{bottom:137.981200pt;}
.y91{bottom:138.095200pt;}
.y116{bottom:138.101200pt;}
.yed{bottom:138.109067pt;}
.y19f{bottom:140.263733pt;}
.y170{bottom:140.510133pt;}
.yb7{bottom:142.749067pt;}
.y1df{bottom:151.056267pt;}
.y19e{bottom:153.597067pt;}
.y5a{bottom:153.975200pt;}
.y187{bottom:153.981200pt;}
.y90{bottom:154.095200pt;}
.y115{bottom:154.101200pt;}
.yec{bottom:154.109067pt;}
.y16f{bottom:154.952800pt;}
.y27{bottom:155.868267pt;}
.yb6{bottom:158.749067pt;}
.y1de{bottom:164.389600pt;}
.y19d{bottom:166.930400pt;}
.y16e{bottom:169.395467pt;}
.y59{bottom:169.975200pt;}
.y186{bottom:169.981200pt;}
.y8f{bottom:170.095200pt;}
.y114{bottom:170.101200pt;}
.yeb{bottom:170.109067pt;}
.y26{bottom:171.868267pt;}
.yb5{bottom:174.749067pt;}
.y1dd{bottom:177.722933pt;}
.y19c{bottom:180.263733pt;}
.y16d{bottom:183.838133pt;}
.y58{bottom:185.975200pt;}
.y185{bottom:185.981200pt;}
.y8e{bottom:186.095200pt;}
.y113{bottom:186.101200pt;}
.yea{bottom:186.109067pt;}
.y25{bottom:187.868267pt;}
.yb4{bottom:190.749067pt;}
.y1dc{bottom:191.056267pt;}
.y19b{bottom:193.597067pt;}
.y16c{bottom:198.280800pt;}
.y57{bottom:201.975200pt;}
.y184{bottom:201.981200pt;}
.y8d{bottom:202.095200pt;}
.y112{bottom:202.101200pt;}
.ye9{bottom:202.109067pt;}
.y24{bottom:203.868267pt;}
.y1db{bottom:204.389600pt;}
.yb3{bottom:206.749067pt;}
.y19a{bottom:206.930400pt;}
.y16b{bottom:212.723467pt;}
.y1da{bottom:217.722933pt;}
.y56{bottom:217.975200pt;}
.y183{bottom:217.981200pt;}
.y8c{bottom:218.095200pt;}
.y111{bottom:218.101200pt;}
.ye8{bottom:218.109067pt;}
.y23{bottom:219.868267pt;}
.y199{bottom:220.263733pt;}
.yb2{bottom:222.749067pt;}
.y16a{bottom:227.187200pt;}
.y1d9{bottom:231.056267pt;}
.y198{bottom:233.597067pt;}
.y55{bottom:233.975200pt;}
.y182{bottom:233.981200pt;}
.y8b{bottom:234.095200pt;}
.y110{bottom:234.101200pt;}
.ye7{bottom:234.109067pt;}
.y22{bottom:235.868267pt;}
.yb1{bottom:238.749067pt;}
.y169{bottom:241.629867pt;}
.y1d8{bottom:244.389600pt;}
.y197{bottom:246.930400pt;}
.y54{bottom:249.975200pt;}
.y181{bottom:249.981200pt;}
.y8a{bottom:250.095200pt;}
.y10f{bottom:250.101200pt;}
.ye6{bottom:250.109067pt;}
.y21{bottom:251.868267pt;}
.yb0{bottom:254.749067pt;}
.y168{bottom:256.072533pt;}
.y1d7{bottom:257.722933pt;}
.y196{bottom:260.263733pt;}
.y53{bottom:265.975200pt;}
.y180{bottom:265.981200pt;}
.y89{bottom:266.095200pt;}
.y10e{bottom:266.101200pt;}
.ye5{bottom:266.109067pt;}
.y20{bottom:267.868267pt;}
.y167{bottom:270.515200pt;}
.yaf{bottom:270.749067pt;}
.y1d6{bottom:271.056267pt;}
.y195{bottom:273.597067pt;}
.y52{bottom:281.975200pt;}
.y17f{bottom:281.981200pt;}
.y88{bottom:282.095200pt;}
.y10d{bottom:282.101200pt;}
.ye4{bottom:282.109067pt;}
.y1f{bottom:283.868267pt;}
.y1d5{bottom:284.389600pt;}
.y166{bottom:284.957867pt;}
.yae{bottom:286.749067pt;}
.y194{bottom:286.930400pt;}
.y1d4{bottom:297.722933pt;}
.y51{bottom:297.975200pt;}
.y17e{bottom:297.981200pt;}
.y87{bottom:298.095200pt;}
.y10c{bottom:298.101200pt;}
.ye3{bottom:298.109067pt;}
.y165{bottom:299.400533pt;}
.y1e{bottom:299.868267pt;}
.y193{bottom:300.263733pt;}
.yad{bottom:302.749067pt;}
.y1d3{bottom:311.056267pt;}
.y192{bottom:313.597067pt;}
.y164{bottom:313.843200pt;}
.y50{bottom:313.975200pt;}
.y86{bottom:314.095200pt;}
.y10b{bottom:314.101200pt;}
.ye2{bottom:314.109067pt;}
.y1d{bottom:315.868267pt;}
.yac{bottom:318.749067pt;}
.y1d2{bottom:324.389600pt;}
.y191{bottom:326.930400pt;}
.y4f{bottom:329.975200pt;}
.y17d{bottom:329.981200pt;}
.y85{bottom:330.095200pt;}
.y10a{bottom:330.101200pt;}
.ye1{bottom:330.109067pt;}
.y1c{bottom:331.868267pt;}
.yab{bottom:334.749067pt;}
.y1d1{bottom:337.722933pt;}
.y190{bottom:340.263733pt;}
.y163{bottom:341.853867pt;}
.y4e{bottom:345.975200pt;}
.y17c{bottom:345.981200pt;}
.y84{bottom:346.095200pt;}
.y109{bottom:346.101200pt;}
.ye0{bottom:346.109067pt;}
.y1b{bottom:347.868267pt;}
.yaa{bottom:350.749067pt;}
.y1d0{bottom:351.056267pt;}
.y18f{bottom:353.597067pt;}
.y4d{bottom:361.975200pt;}
.y17b{bottom:361.981200pt;}
.y83{bottom:362.095200pt;}
.y108{bottom:362.101200pt;}
.ydf{bottom:362.109067pt;}
.y1a{bottom:363.868267pt;}
.y1cf{bottom:364.389600pt;}
.ya9{bottom:366.749067pt;}
.y18e{bottom:366.930400pt;}
.y162{bottom:372.821200pt;}
.y1ce{bottom:377.722933pt;}
.y4c{bottom:377.975200pt;}
.y17a{bottom:377.981200pt;}
.y82{bottom:378.095200pt;}
.y107{bottom:378.101200pt;}
.yde{bottom:378.109067pt;}
.y19{bottom:379.868267pt;}
.y18d{bottom:380.263733pt;}
.ya8{bottom:382.749067pt;}
.y161{bottom:390.154533pt;}
.y1cd{bottom:391.056267pt;}
.y4b{bottom:393.975200pt;}
.y179{bottom:393.981200pt;}
.y81{bottom:394.095200pt;}
.y106{bottom:394.101200pt;}
.ydd{bottom:394.109067pt;}
.y28{bottom:395.868267pt;}
.ya7{bottom:398.749067pt;}
.y1cc{bottom:404.389600pt;}
.y4a{bottom:409.975200pt;}
.y178{bottom:409.981200pt;}
.y80{bottom:410.095200pt;}
.y105{bottom:410.101200pt;}
.ydc{bottom:410.109067pt;}
.y18{bottom:411.868267pt;}
.y9b{bottom:416.797467pt;}
.y1cb{bottom:417.722933pt;}
.y49{bottom:425.975200pt;}
.y177{bottom:425.981200pt;}
.y7f{bottom:426.095200pt;}
.y104{bottom:426.101200pt;}
.ydb{bottom:426.109067pt;}
.ya6{bottom:430.749067pt;}
.y1ca{bottom:431.056267pt;}
.y48{bottom:441.981200pt;}
.y7e{bottom:442.095200pt;}
.y103{bottom:442.101200pt;}
.yda{bottom:442.109067pt;}
.y160{bottom:442.114533pt;}
.y141{bottom:442.234533pt;}
.y1c9{bottom:444.389600pt;}
.y1c8{bottom:457.722933pt;}
.y47{bottom:457.981200pt;}
.y7d{bottom:458.095200pt;}
.y102{bottom:458.101200pt;}
.yd9{bottom:458.109067pt;}
.y15f{bottom:458.114533pt;}
.y140{bottom:458.234533pt;}
.ya5{bottom:461.625333pt;}
.y1c7{bottom:471.056267pt;}
.y46{bottom:473.981200pt;}
.y7c{bottom:474.095200pt;}
.y101{bottom:474.101200pt;}
.yd8{bottom:474.109067pt;}
.y15e{bottom:474.114533pt;}
.y13f{bottom:474.234533pt;}
.y16{bottom:474.572933pt;}
.ya4{bottom:475.497333pt;}
.y1c6{bottom:484.389600pt;}
.y45{bottom:489.981200pt;}
.y7b{bottom:490.095200pt;}
.y100{bottom:490.101200pt;}
.yd7{bottom:490.109067pt;}
.y15d{bottom:490.114533pt;}
.y13e{bottom:490.234533pt;}
.ya3{bottom:490.354533pt;}
.y1c5{bottom:497.722933pt;}
.y15{bottom:503.778267pt;}
.y44{bottom:505.981200pt;}
.y7a{bottom:506.095200pt;}
.yff{bottom:506.101200pt;}
.yd6{bottom:506.109067pt;}
.y15c{bottom:506.114533pt;}
.y13d{bottom:506.234533pt;}
.y1c4{bottom:511.056267pt;}
.y14{bottom:517.111600pt;}
.y43{bottom:521.981200pt;}
.y79{bottom:522.095200pt;}
.yfe{bottom:522.101200pt;}
.yd5{bottom:522.109067pt;}
.y15b{bottom:522.114533pt;}
.ya2{bottom:522.221200pt;}
.y13c{bottom:522.234533pt;}
.y1c3{bottom:524.389600pt;}
.y13{bottom:530.444933pt;}
.y1c2{bottom:537.722933pt;}
.y42{bottom:537.981200pt;}
.y78{bottom:538.095200pt;}
.yfd{bottom:538.101200pt;}
.yd4{bottom:538.109067pt;}
.y15a{bottom:538.114533pt;}
.ya1{bottom:538.221200pt;}
.y13b{bottom:538.234533pt;}
.y12{bottom:543.778267pt;}
.y1c1{bottom:551.056267pt;}
.y41{bottom:553.981200pt;}
.y77{bottom:554.095200pt;}
.yfc{bottom:554.101200pt;}
.yd3{bottom:554.109067pt;}
.y159{bottom:554.114533pt;}
.ya0{bottom:554.221200pt;}
.y13a{bottom:554.234533pt;}
.y11{bottom:557.111600pt;}
.y1c0{bottom:564.389600pt;}
.y40{bottom:569.981200pt;}
.y76{bottom:570.095200pt;}
.yfb{bottom:570.101200pt;}
.yd2{bottom:570.109067pt;}
.y158{bottom:570.114533pt;}
.y9f{bottom:570.221200pt;}
.y139{bottom:570.234533pt;}
.y10{bottom:570.444933pt;}
.y1bf{bottom:577.722933pt;}
.yf{bottom:583.778267pt;}
.y3f{bottom:585.981200pt;}
.y75{bottom:586.095200pt;}
.yfa{bottom:586.101200pt;}
.yd1{bottom:586.109067pt;}
.y157{bottom:586.114533pt;}
.y138{bottom:586.234533pt;}
.y1be{bottom:591.056267pt;}
.ye{bottom:597.111600pt;}
.y3e{bottom:601.981200pt;}
.y74{bottom:602.095200pt;}
.y9e{bottom:602.101200pt;}
.yd0{bottom:602.109067pt;}
.y156{bottom:602.114533pt;}
.y137{bottom:602.234533pt;}
.y1bd{bottom:604.389600pt;}
.yd{bottom:610.444933pt;}
.y1bc{bottom:617.722933pt;}
.y176{bottom:617.981200pt;}
.y73{bottom:618.095200pt;}
.yf9{bottom:618.101200pt;}
.ycf{bottom:618.109067pt;}
.y155{bottom:618.114533pt;}
.y136{bottom:618.234533pt;}
.yc{bottom:623.778267pt;}
.y1bb{bottom:631.056267pt;}
.y3d{bottom:633.981200pt;}
.y72{bottom:634.095200pt;}
.yf8{bottom:634.101200pt;}
.yce{bottom:634.109067pt;}
.y154{bottom:634.114533pt;}
.y135{bottom:634.234533pt;}
.y1ba{bottom:644.389600pt;}
.y71{bottom:650.095200pt;}
.yf7{bottom:650.101200pt;}
.ycd{bottom:650.109067pt;}
.y153{bottom:650.114533pt;}
.y134{bottom:650.234533pt;}
.y1b9{bottom:657.722933pt;}
.y175{bottom:665.981200pt;}
.y70{bottom:666.095200pt;}
.yf6{bottom:666.101200pt;}
.ycc{bottom:666.109067pt;}
.y152{bottom:666.114533pt;}
.y128{bottom:666.234533pt;}
.yb{bottom:667.106267pt;}
.y1b8{bottom:671.056267pt;}
.y6f{bottom:682.095200pt;}
.y3c{bottom:682.101200pt;}
.ycb{bottom:682.109067pt;}
.y151{bottom:682.114533pt;}
.y127{bottom:682.234533pt;}
.y1b7{bottom:684.389600pt;}
.y1b6{bottom:697.722933pt;}
.ya{bottom:697.772933pt;}
.y6e{bottom:698.095200pt;}
.y3b{bottom:698.101200pt;}
.yca{bottom:698.109067pt;}
.y150{bottom:698.114533pt;}
.y126{bottom:698.234533pt;}
.y9a{bottom:704.232133pt;}
.y1b5{bottom:711.056267pt;}
.y6d{bottom:714.095200pt;}
.y3a{bottom:714.101200pt;}
.yc9{bottom:714.109067pt;}
.y14f{bottom:714.114533pt;}
.y125{bottom:714.234533pt;}
.y9{bottom:716.100000pt;}
.y1b4{bottom:724.389600pt;}
.y8{bottom:727.106267pt;}
.y6c{bottom:730.095200pt;}
.y39{bottom:730.101200pt;}
.yc8{bottom:730.109067pt;}
.y14e{bottom:730.114533pt;}
.y124{bottom:730.234533pt;}
.y1b3{bottom:737.722933pt;}
.y7{bottom:745.433333pt;}
.y6b{bottom:746.095200pt;}
.y38{bottom:746.101200pt;}
.yc7{bottom:746.109067pt;}
.y14d{bottom:746.114533pt;}
.y123{bottom:746.234533pt;}
.y1b2{bottom:751.056267pt;}
.y6{bottom:759.004267pt;}
.y9d{bottom:759.035333pt;}
.y6a{bottom:762.095200pt;}
.y37{bottom:762.101200pt;}
.yc6{bottom:762.109067pt;}
.y14c{bottom:762.114533pt;}
.y122{bottom:762.234533pt;}
.y1b1{bottom:764.389600pt;}
.y1b0{bottom:777.722933pt;}
.y69{bottom:778.095200pt;}
.y36{bottom:778.101200pt;}
.yc5{bottom:778.109067pt;}
.y14b{bottom:778.114533pt;}
.y121{bottom:778.234533pt;}
.y5{bottom:783.345067pt;}
.y1af{bottom:791.056267pt;}
.y68{bottom:794.095200pt;}
.y35{bottom:794.101200pt;}
.yc4{bottom:794.109067pt;}
.y14a{bottom:794.114533pt;}
.y120{bottom:794.234533pt;}
.y1ae{bottom:804.389600pt;}
.y4{bottom:807.350400pt;}
.y67{bottom:810.095200pt;}
.y34{bottom:810.101200pt;}
.yc3{bottom:810.109067pt;}
.y149{bottom:810.114533pt;}
.y12f{bottom:810.221200pt;}
.y133{bottom:810.234533pt;}
.y1ad{bottom:817.722933pt;}
.y66{bottom:826.095200pt;}
.y33{bottom:826.101200pt;}
.y1eb{bottom:826.104533pt;}
.yc2{bottom:826.109067pt;}
.y148{bottom:826.114533pt;}
.y12e{bottom:826.221200pt;}
.y11f{bottom:826.234533pt;}
.y1ac{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y65{bottom:842.095200pt;}
.y32{bottom:842.101200pt;}
.y1ea{bottom:842.104533pt;}
.yc1{bottom:842.109067pt;}
.y147{bottom:842.114533pt;}
.y12d{bottom:842.221200pt;}
.y11e{bottom:842.234533pt;}
.y1ab{bottom:844.389600pt;}
.y1aa{bottom:857.722933pt;}
.y64{bottom:858.095200pt;}
.y31{bottom:858.101200pt;}
.y1e9{bottom:858.104533pt;}
.yc0{bottom:858.109067pt;}
.y146{bottom:858.114533pt;}
.y12c{bottom:858.221200pt;}
.y1a9{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y63{bottom:874.095200pt;}
.y30{bottom:874.101200pt;}
.y1e8{bottom:874.104533pt;}
.ybf{bottom:874.109067pt;}
.y145{bottom:874.114533pt;}
.y1a8{bottom:884.389600pt;}
.y62{bottom:890.095200pt;}
.y2f{bottom:890.101200pt;}
.y1e7{bottom:890.104533pt;}
.ybe{bottom:890.109067pt;}
.y144{bottom:890.114533pt;}
.y12b{bottom:890.221200pt;}
.y1a7{bottom:897.722933pt;}
.y61{bottom:906.095200pt;}
.y2e{bottom:906.101200pt;}
.y1e6{bottom:906.104533pt;}
.ybd{bottom:906.109067pt;}
.y143{bottom:906.114533pt;}
.y1a6{bottom:911.056267pt;}
.y60{bottom:922.095200pt;}
.y2d{bottom:922.101200pt;}
.y1e5{bottom:922.104533pt;}
.ybc{bottom:922.109067pt;}
.y142{bottom:922.114533pt;}
.y1a5{bottom:924.389600pt;}
.y2a{bottom:951.792400pt;}
.y96{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.179688pt;}
.h8{height:31.062500pt;}
.h7{height:31.104167pt;}
.ha{height:38.220667pt;}
.h12{height:38.239333pt;}
.h11{height:38.239867pt;}
.h9{height:38.250000pt;}
.hb{height:38.828125pt;}
.h10{height:38.880208pt;}
.hd{height:40.629958pt;}
.he{height:40.640625pt;}
.hf{height:43.031250pt;}
.h5{height:45.764696pt;}
.h3{height:46.593750pt;}
.hc{height:47.812500pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1a{left:69.187600pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x22{left:88.879067pt;}
.x27{left:94.488133pt;}
.xc{left:98.271467pt;}
.x19{left:109.854400pt;}
.x3{left:111.491200pt;}
.x12{left:114.141733pt;}
.x6{left:117.170133pt;}
.xd{left:128.644800pt;}
.x4{left:143.619200pt;}
.x15{left:164.418400pt;}
.x18{left:171.347733pt;}
.x23{left:173.458133pt;}
.x1b{left:174.679600pt;}
.x17{left:187.641067pt;}
.x5{left:189.223467pt;}
.x13{left:247.560400pt;}
.x21{left:254.041733pt;}
.xa{left:404.481333pt;}
.xe{left:406.304133pt;}
.x14{left:416.509733pt;}
.x1c{left:425.192000pt;}
.x7{left:427.090133pt;}
.x25{left:432.752533pt;}
.xf{left:436.557467pt;}
.x26{left:451.611867pt;}
.x1d{left:455.432000pt;}
.x8{left:457.330133pt;}
.x24{left:510.964800pt;}
.x20{left:533.942533pt;}
.x11{left:589.770933pt;}
.x2{left:626.078800pt;}
.x1e{left:637.449067pt;}
.x10{left:643.752133pt;}
.x1f{left:657.187867pt;}
.x16{left:662.649733pt;}
}




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