
    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_116ac6a8f2608a9f3dbd8ac6.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_afd4814cb28ff9a826bd9a8d.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_e6c31d35d884ec8bde0de1fd.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_17ef33e87cab8f49ca336024.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_966086eb0cbfc222522701f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_281a332291dfdfa827a6dc91.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_a2fcfe724a34278c22e1fc40.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_015f9095a5bc2e03eb47d297.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_504d3e7f92f0dc05e6c80f9a.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_4dc49b540fc2ff1d3386dfab.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_506de23f5b7c04ce2d8e724c.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;}
.v6{vertical-align:-9.420600px;}
.v5{vertical-align:-2.940000px;}
.v3{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v7{vertical-align:11.697000px;}
.v1{vertical-align:30.381600px;}
.ls9d{letter-spacing:-2.640000px;}
.lsb{letter-spacing:-0.780000px;}
.ls70{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.240000px;}
.ls86{letter-spacing:-0.180000px;}
.ls9c{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.120000px;}
.lsac{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.060000px;}
.lsab{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.004140px;}
.ls4{letter-spacing:0.004920px;}
.ls3{letter-spacing:0.005520px;}
.ls38{letter-spacing:0.007800px;}
.ls6f{letter-spacing:0.008400px;}
.ls46{letter-spacing:0.009600px;}
.ls3f{letter-spacing:0.010200px;}
.ls69{letter-spacing:0.013200px;}
.ls6a{letter-spacing:0.031200px;}
.ls6e{letter-spacing:0.048000px;}
.ls17{letter-spacing:0.060000px;}
.ls54{letter-spacing:0.081000px;}
.ls58{letter-spacing:0.085200px;}
.ls56{letter-spacing:0.085800px;}
.ls52{letter-spacing:0.096000px;}
.ls4a{letter-spacing:0.100800px;}
.ls68{letter-spacing:0.108000px;}
.ls66{letter-spacing:0.108600px;}
.lsd{letter-spacing:0.120000px;}
.ls3b{letter-spacing:0.144000px;}
.ls55{letter-spacing:0.146400px;}
.ls57{letter-spacing:0.154200px;}
.ls24{letter-spacing:0.180000px;}
.ls65{letter-spacing:0.192000px;}
.ls67{letter-spacing:0.193800px;}
.ls6c{letter-spacing:0.213000px;}
.ls78{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.240000px;}
.lsa7{letter-spacing:0.288000px;}
.ls5f{letter-spacing:0.297000px;}
.ls15{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.336000px;}
.ls1e{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.373800px;}
.ls6b{letter-spacing:0.384000px;}
.ls84{letter-spacing:0.404400px;}
.ls83{letter-spacing:0.405000px;}
.ls79{letter-spacing:0.412200px;}
.ls7{letter-spacing:0.420000px;}
.ls93{letter-spacing:0.432000px;}
.ls5c{letter-spacing:0.463200px;}
.ls59{letter-spacing:0.477000px;}
.ls5b{letter-spacing:0.477600px;}
.ls2d{letter-spacing:0.480000px;}
.ls80{letter-spacing:0.518400px;}
.ls60{letter-spacing:0.523800px;}
.ls8{letter-spacing:0.540000px;}
.ls97{letter-spacing:0.576000px;}
.lsa1{letter-spacing:0.624000px;}
.ls29{letter-spacing:0.660000px;}
.ls91{letter-spacing:0.672000px;}
.ls2e{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.761400px;}
.ls8e{letter-spacing:0.768000px;}
.ls1b{letter-spacing:0.780000px;}
.ls81{letter-spacing:0.795000px;}
.ls42{letter-spacing:0.798000px;}
.ls4b{letter-spacing:0.802200px;}
.ls5d{letter-spacing:0.804600px;}
.ls53{letter-spacing:0.816000px;}
.ls5a{letter-spacing:0.828600px;}
.ls10{letter-spacing:0.840000px;}
.ls94{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.960000px;}
.ls7f{letter-spacing:0.976200px;}
.ls11{letter-spacing:1.020000px;}
.ls25{letter-spacing:1.080000px;}
.ls73{letter-spacing:1.119000px;}
.ls16{letter-spacing:1.140000px;}
.ls95{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.200000px;}
.lsa8{letter-spacing:1.248000px;}
.ls85{letter-spacing:1.260000px;}
.ls49{letter-spacing:1.315800px;}
.ls9{letter-spacing:1.320000px;}
.lsaa{letter-spacing:1.344000px;}
.ls82{letter-spacing:1.373400px;}
.ls43{letter-spacing:1.378800px;}
.ls18{letter-spacing:1.380000px;}
.ls4c{letter-spacing:1.386600px;}
.ls8d{letter-spacing:1.392000px;}
.ls1a{letter-spacing:1.440000px;}
.ls87{letter-spacing:1.451400px;}
.ls63{letter-spacing:1.488000px;}
.ls22{letter-spacing:1.500000px;}
.ls64{letter-spacing:1.536000px;}
.ls19{letter-spacing:1.560000px;}
.lsa4{letter-spacing:1.584000px;}
.ls6{letter-spacing:1.620000px;}
.ls61{letter-spacing:1.680000px;}
.lsa0{letter-spacing:1.728000px;}
.ls1c{letter-spacing:1.740000px;}
.lsa6{letter-spacing:1.776000px;}
.ls23{letter-spacing:1.800000px;}
.ls77{letter-spacing:1.860000px;}
.ls72{letter-spacing:1.920000px;}
.ls74{letter-spacing:1.929000px;}
.ls96{letter-spacing:1.968000px;}
.ls4e{letter-spacing:1.980000px;}
.ls9e{letter-spacing:2.016000px;}
.ls76{letter-spacing:2.040000px;}
.lsa2{letter-spacing:2.064000px;}
.ls71{letter-spacing:2.100000px;}
.ls99{letter-spacing:2.112000px;}
.ls7c{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.220000px;}
.ls3e{letter-spacing:2.280000px;}
.ls9b{letter-spacing:2.304000px;}
.ls5{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.400000px;}
.ls75{letter-spacing:2.460000px;}
.ls9a{letter-spacing:2.496000px;}
.ls2f{letter-spacing:2.520000px;}
.ls92{letter-spacing:2.544000px;}
.lsa5{letter-spacing:2.592000px;}
.ls4d{letter-spacing:2.640000px;}
.ls8a{letter-spacing:2.700000px;}
.ls20{letter-spacing:2.760000px;}
.ls4f{letter-spacing:2.820000px;}
.ls2a{letter-spacing:2.880000px;}
.lsa3{letter-spacing:2.976000px;}
.ls21{letter-spacing:3.000000px;}
.ls98{letter-spacing:3.024000px;}
.lse{letter-spacing:3.060000px;}
.ls7e{letter-spacing:3.120000px;}
.ls88{letter-spacing:3.180000px;}
.lsa9{letter-spacing:3.216000px;}
.ls41{letter-spacing:3.240000px;}
.lsf{letter-spacing:3.300000px;}
.ls9f{letter-spacing:3.312000px;}
.ls5e{letter-spacing:3.360000px;}
.ls7d{letter-spacing:3.480000px;}
.ls90{letter-spacing:3.504000px;}
.ls2b{letter-spacing:3.660000px;}
.ls50{letter-spacing:3.696000px;}
.ls1f{letter-spacing:3.780000px;}
.ls26{letter-spacing:3.900000px;}
.ls45{letter-spacing:3.960000px;}
.ls3c{letter-spacing:4.020000px;}
.ls7b{letter-spacing:4.080000px;}
.ls8c{letter-spacing:4.128000px;}
.ls8f{letter-spacing:4.176000px;}
.ls8b{letter-spacing:4.560000px;}
.ls27{letter-spacing:4.680000px;}
.ls44{letter-spacing:5.220000px;}
.ls51{letter-spacing:5.460000px;}
.ls47{letter-spacing:5.580000px;}
.ls28{letter-spacing:5.940000px;}
.ls7a{letter-spacing:6.360000px;}
.ls2c{letter-spacing:6.480000px;}
.ls89{letter-spacing:6.900000px;}
.ls30{letter-spacing:7.680000px;}
.ls40{letter-spacing:8.220000px;}
.ls34{letter-spacing:33.792000px;}
.ls0{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.ls36{letter-spacing:194.976000px;}
.ls35{letter-spacing:206.976000px;}
.ls3a{letter-spacing:237.648000px;}
.ls37{letter-spacing:249.648000px;}
.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;}
}
.ws2{word-spacing:-60.000000px;}
.ws32{word-spacing:-48.000000px;}
.ws59{word-spacing:-20.460000px;}
.ws10{word-spacing:-18.780000px;}
.ws8f{word-spacing:-18.660000px;}
.ws61{word-spacing:-18.360000px;}
.ws77{word-spacing:-18.120000px;}
.ws44{word-spacing:-17.640000px;}
.ws72{word-spacing:-17.220000px;}
.ws73{word-spacing:-16.920000px;}
.ws75{word-spacing:-16.860000px;}
.wsf{word-spacing:-16.800000px;}
.ws1{word-spacing:-16.680000px;}
.wse{word-spacing:-16.500000px;}
.ws76{word-spacing:-16.440000px;}
.ws14{word-spacing:-16.320000px;}
.ws79{word-spacing:-15.900000px;}
.ws42{word-spacing:-15.840000px;}
.ws78{word-spacing:-15.780000px;}
.ws12{word-spacing:-15.660000px;}
.ws74{word-spacing:-15.480000px;}
.ws7a{word-spacing:-15.420000px;}
.wsac{word-spacing:-15.312000px;}
.ws11{word-spacing:-15.300000px;}
.ws43{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.060000px;}
.ws13{word-spacing:-15.000000px;}
.wsad{word-spacing:-14.976000px;}
.ws62{word-spacing:-14.940000px;}
.ws93{word-spacing:-14.304000px;}
.ws64{word-spacing:-13.488000px;}
.ws4{word-spacing:-13.344000px;}
.ws5a{word-spacing:-12.816000px;}
.ws92{word-spacing:-12.672000px;}
.wsab{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.510000px;}
.ws63{word-spacing:-12.336000px;}
.ws90{word-spacing:-12.240000px;}
.ws65{word-spacing:-12.192000px;}
.ws3a{word-spacing:-12.144000px;}
.ws33{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws91{word-spacing:-9.360000px;}
.ws41{word-spacing:-8.745000px;}
.ws38{word-spacing:-6.996000px;}
.ws29{word-spacing:-6.480000px;}
.ws8a{word-spacing:-6.360000px;}
.ws7{word-spacing:-4.684200px;}
.ws25{word-spacing:-4.680000px;}
.ws98{word-spacing:-4.608000px;}
.ws99{word-spacing:-4.128000px;}
.ws21{word-spacing:-3.780000px;}
.ws28{word-spacing:-3.660000px;}
.ws9c{word-spacing:-3.504000px;}
.wsaf{word-spacing:-3.312000px;}
.ws9{word-spacing:-3.300000px;}
.ws4f{word-spacing:-3.240000px;}
.wsa4{word-spacing:-3.120000px;}
.wsa3{word-spacing:-3.072000px;}
.ws17{word-spacing:-3.060000px;}
.ws22{word-spacing:-3.000000px;}
.wsb5{word-spacing:-2.976000px;}
.ws6{word-spacing:-2.886000px;}
.ws3b{word-spacing:-2.640000px;}
.ws9e{word-spacing:-2.544000px;}
.wsa8{word-spacing:-2.496000px;}
.ws5b{word-spacing:-2.340000px;}
.ws1d{word-spacing:-2.220000px;}
.ws9b{word-spacing:-2.160000px;}
.wsb3{word-spacing:-2.064000px;}
.wsb4{word-spacing:-2.016000px;}
.ws57{word-spacing:-1.980000px;}
.wsb7{word-spacing:-1.968000px;}
.ws2a{word-spacing:-1.800000px;}
.ws55{word-spacing:-1.740000px;}
.ws6a{word-spacing:-1.680000px;}
.wsb8{word-spacing:-1.584000px;}
.ws67{word-spacing:-1.560000px;}
.ws6d{word-spacing:-1.536000px;}
.ws23{word-spacing:-1.500000px;}
.ws47{word-spacing:-1.440000px;}
.ws9a{word-spacing:-1.392000px;}
.ws48{word-spacing:-1.380000px;}
.ws2c{word-spacing:-1.320000px;}
.ws8e{word-spacing:-1.260000px;}
.wsa2{word-spacing:-1.152000px;}
.ws1e{word-spacing:-1.140000px;}
.ws83{word-spacing:-1.080000px;}
.ws1f{word-spacing:-0.960000px;}
.ws69{word-spacing:-0.900000px;}
.wsa1{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.840000px;}
.ws5d{word-spacing:-0.816000px;}
.ws95{word-spacing:-0.780000px;}
.ws2d{word-spacing:-0.720000px;}
.ws9d{word-spacing:-0.672000px;}
.ws86{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.624000px;}
.wsb1{word-spacing:-0.576000px;}
.ws45{word-spacing:-0.540000px;}
.wsaa{word-spacing:-0.528000px;}
.wsc{word-spacing:-0.480000px;}
.wsa0{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.420000px;}
.ws70{word-spacing:-0.384000px;}
.ws97{word-spacing:-0.336000px;}
.ws1c{word-spacing:-0.300000px;}
.ws9f{word-spacing:-0.288000px;}
.ws1b{word-spacing:-0.240000px;}
.ws6e{word-spacing:-0.192000px;}
.ws24{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.120000px;}
.ws5c{word-spacing:-0.096000px;}
.ws4c{word-spacing:-0.060000px;}
.ws6f{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.ws2f{word-spacing:0.120000px;}
.ws16{word-spacing:0.180000px;}
.ws8{word-spacing:0.240000px;}
.ws7f{word-spacing:0.360000px;}
.ws2b{word-spacing:0.480000px;}
.ws27{word-spacing:0.540000px;}
.ws68{word-spacing:0.840000px;}
.wsba{word-spacing:0.912000px;}
.ws4d{word-spacing:1.200000px;}
.ws3e{word-spacing:1.296000px;}
.ws54{word-spacing:1.320000px;}
.ws40{word-spacing:1.488000px;}
.ws81{word-spacing:1.560000px;}
.ws8b{word-spacing:1.680000px;}
.ws6c{word-spacing:1.800000px;}
.ws89{word-spacing:1.980000px;}
.wsa7{word-spacing:2.016000px;}
.ws2e{word-spacing:2.040000px;}
.wsb0{word-spacing:2.064000px;}
.wsa6{word-spacing:2.112000px;}
.ws5f{word-spacing:2.160000px;}
.ws4e{word-spacing:2.340000px;}
.ws18{word-spacing:2.400000px;}
.wsb6{word-spacing:2.448000px;}
.ws26{word-spacing:2.520000px;}
.ws7d{word-spacing:2.580000px;}
.wsae{word-spacing:2.640000px;}
.ws52{word-spacing:2.760000px;}
.ws71{word-spacing:2.832000px;}
.ws7c{word-spacing:2.880000px;}
.ws50{word-spacing:3.000000px;}
.ws88{word-spacing:3.180000px;}
.ws4a{word-spacing:3.240000px;}
.ws94{word-spacing:3.300000px;}
.wsa5{word-spacing:3.312000px;}
.ws7e{word-spacing:3.360000px;}
.ws85{word-spacing:3.420000px;}
.ws87{word-spacing:3.480000px;}
.wsb9{word-spacing:3.504000px;}
.ws8c{word-spacing:3.540000px;}
.ws60{word-spacing:3.648000px;}
.ws4b{word-spacing:3.660000px;}
.ws84{word-spacing:3.780000px;}
.ws5e{word-spacing:3.792000px;}
.ws1a{word-spacing:3.840000px;}
.ws3f{word-spacing:3.888000px;}
.ws7b{word-spacing:3.900000px;}
.ws58{word-spacing:3.936000px;}
.ws3c{word-spacing:3.984000px;}
.ws51{word-spacing:4.020000px;}
.ws30{word-spacing:4.140000px;}
.ws8d{word-spacing:4.500000px;}
.ws6b{word-spacing:4.560000px;}
.ws82{word-spacing:4.620000px;}
.ws46{word-spacing:4.680000px;}
.ws20{word-spacing:4.800000px;}
.ws80{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws56{word-spacing:5.040000px;}
.ws96{word-spacing:5.520000px;}
.wsa9{word-spacing:6.480000px;}
.ws66{word-spacing:6.780000px;}
.ws31{word-spacing:177.984000px;}
.ws37{word-spacing:192.480000px;}
.ws36{word-spacing:199.152000px;}
.ws35{word-spacing:220.608000px;}
.ws39{word-spacing:223.824000px;}
.ws34{word-spacing:235.824000px;}
._e{margin-left:-2898.144000px;}
._29{margin-left:-2874.336000px;}
._d{margin-left:-7.620000px;}
._c{margin-left:-6.480000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.405000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._6{width:1.020000px;}
._7{width:2.640000px;}
._2a{width:3.679200px;}
._2{width:4.684200px;}
._5{width:6.355800px;}
._8{width:8.040000px;}
._9{width:9.360000px;}
._a{width:10.560000px;}
._b{width:12.360000px;}
._11{width:37.296000px;}
._13{width:41.040000px;}
._12{width:51.696000px;}
._1e{width:94.608000px;}
._21{width:105.312000px;}
._19{width:160.800000px;}
._18{width:189.984000px;}
._10{width:212.544000px;}
._25{width:232.608000px;}
._22{width:238.128000px;}
._15{width:240.816000px;}
._1b{width:259.824000px;}
._1d{width:283.680000px;}
._1c{width:312.768000px;}
._20{width:317.664000px;}
._1a{width:329.664000px;}
._16{width:341.664000px;}
._14{width:353.232000px;}
._28{width:386.160000px;}
._23{width:388.800000px;}
._26{width:410.112000px;}
._27{width:412.800000px;}
._17{width:436.422000px;}
._1f{width:452.832000px;}
._24{width:479.424000px;}
._f{width:495.360000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.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;}
.y61{bottom:83.635350px;}
.ydb{bottom:83.752050px;}
.y7b{bottom:83.912100px;}
.y11b{bottom:84.053850px;}
.yd9{bottom:84.473850px;}
.yeb{bottom:84.567150px;}
.yfe{bottom:85.311150px;}
.y26{bottom:88.023000px;}
.y156{bottom:94.980150px;}
.y196{bottom:95.263500px;}
.yda{bottom:99.496050px;}
.yea{bottom:100.323150px;}
.yfd{bottom:101.061150px;}
.y60{bottom:101.635350px;}
.y96{bottom:101.788500px;}
.y7a{bottom:101.912100px;}
.y11a{bottom:102.053850px;}
.yd8{bottom:102.473850px;}
.y25{bottom:103.023000px;}
.y155{bottom:109.980150px;}
.y195{bottom:110.263500px;}
.ye9{bottom:116.067150px;}
.yfc{bottom:116.823150px;}
.y95{bottom:118.288500px;}
.y5f{bottom:119.635350px;}
.y79{bottom:119.912100px;}
.y119{bottom:120.053850px;}
.yd7{bottom:120.473850px;}
.y154{bottom:124.980150px;}
.y194{bottom:125.263500px;}
.ye8{bottom:131.823150px;}
.yfb{bottom:132.567150px;}
.y94{bottom:134.788500px;}
.y5e{bottom:137.635350px;}
.y78{bottom:137.912100px;}
.y118{bottom:138.053850px;}
.yd6{bottom:138.473850px;}
.y153{bottom:139.980150px;}
.y193{bottom:140.263500px;}
.ye7{bottom:147.567150px;}
.yfa{bottom:148.311150px;}
.y93{bottom:151.288500px;}
.y152{bottom:154.980150px;}
.y192{bottom:155.263500px;}
.y5d{bottom:155.635350px;}
.y77{bottom:155.912100px;}
.y117{bottom:156.053850px;}
.yd5{bottom:156.473850px;}
.y29{bottom:162.398550px;}
.ye6{bottom:163.317150px;}
.yf9{bottom:164.061150px;}
.y151{bottom:169.980150px;}
.y191{bottom:170.263500px;}
.y5c{bottom:173.635350px;}
.y76{bottom:173.912100px;}
.y116{bottom:174.053850px;}
.yd4{bottom:174.473850px;}
.y92{bottom:176.804400px;}
.ye5{bottom:179.079150px;}
.yf8{bottom:179.811150px;}
.y28{bottom:180.398550px;}
.y150{bottom:184.980150px;}
.y190{bottom:185.263500px;}
.y5b{bottom:191.635350px;}
.y75{bottom:191.912100px;}
.y115{bottom:192.053850px;}
.yd3{bottom:192.473850px;}
.y91{bottom:193.304400px;}
.ye4{bottom:194.823150px;}
.yf7{bottom:195.567150px;}
.y2b{bottom:198.398550px;}
.y14f{bottom:199.980150px;}
.y18f{bottom:200.263500px;}
.y90{bottom:209.552400px;}
.y5a{bottom:209.635350px;}
.y74{bottom:209.912100px;}
.y114{bottom:210.053850px;}
.yd2{bottom:210.473850px;}
.ye3{bottom:210.567150px;}
.yf6{bottom:211.311150px;}
.y14e{bottom:214.980150px;}
.y18e{bottom:215.263500px;}
.y27{bottom:215.993550px;}
.y2a{bottom:216.398550px;}
.y8f{bottom:226.052400px;}
.ye2{bottom:226.311150px;}
.yf5{bottom:227.055150px;}
.y59{bottom:227.635350px;}
.y73{bottom:227.912100px;}
.y113{bottom:228.053850px;}
.y14d{bottom:229.980150px;}
.y18d{bottom:230.263500px;}
.y8e{bottom:242.316300px;}
.y18c{bottom:245.263500px;}
.y58{bottom:245.635350px;}
.y72{bottom:245.912100px;}
.y112{bottom:246.053850px;}
.yd1{bottom:246.068850px;}
.y8d{bottom:258.564300px;}
.y18b{bottom:260.263500px;}
.y14c{bottom:263.095350px;}
.y57{bottom:263.635350px;}
.y71{bottom:263.912100px;}
.y111{bottom:264.053850px;}
.y8c{bottom:274.812300px;}
.y18a{bottom:275.263500px;}
.y56{bottom:281.635350px;}
.y70{bottom:281.905350px;}
.y137{bottom:281.912100px;}
.yd0{bottom:281.933850px;}
.y110{bottom:282.053850px;}
.y189{bottom:290.263500px;}
.y24{bottom:291.064200px;}
.y8b{bottom:291.312300px;}
.y55{bottom:299.635350px;}
.y6f{bottom:299.905350px;}
.y136{bottom:299.912100px;}
.y10f{bottom:300.053850px;}
.y188{bottom:305.263500px;}
.y8a{bottom:307.564350px;}
.y54{bottom:317.635350px;}
.ycf{bottom:317.798850px;}
.y6e{bottom:317.905350px;}
.y135{bottom:317.912100px;}
.y10e{bottom:318.053850px;}
.y23{bottom:318.409200px;}
.y187{bottom:320.263500px;}
.y89{bottom:324.064350px;}
.y14b{bottom:335.230350px;}
.y186{bottom:335.263500px;}
.y53{bottom:335.635350px;}
.y6d{bottom:335.905350px;}
.y134{bottom:335.912100px;}
.y10d{bottom:336.053850px;}
.y22{bottom:336.409200px;}
.y88{bottom:340.320300px;}
.y185{bottom:350.263500px;}
.y52{bottom:353.635350px;}
.y6c{bottom:353.905350px;}
.y133{bottom:353.912100px;}
.yce{bottom:354.053850px;}
.y21{bottom:354.409200px;}
.y87{bottom:356.568300px;}
.y184{bottom:365.263500px;}
.y51{bottom:371.635350px;}
.y6b{bottom:371.905350px;}
.y132{bottom:371.912100px;}
.ycd{bottom:372.053850px;}
.y20{bottom:372.409200px;}
.y86{bottom:372.820200px;}
.y183{bottom:380.263500px;}
.y85{bottom:389.072100px;}
.y14a{bottom:389.230350px;}
.y50{bottom:389.635350px;}
.y6a{bottom:389.905350px;}
.y131{bottom:389.912100px;}
.ycc{bottom:390.053850px;}
.y1f{bottom:390.409200px;}
.y182{bottom:395.268150px;}
.y84{bottom:405.335850px;}
.y4f{bottom:407.635350px;}
.y69{bottom:407.905350px;}
.y130{bottom:407.912100px;}
.ycb{bottom:408.053850px;}
.y1e{bottom:408.409200px;}
.y181{bottom:410.268150px;}
.y83{bottom:421.583850px;}
.y149{bottom:425.230350px;}
.y180{bottom:425.268150px;}
.y4e{bottom:425.635350px;}
.y68{bottom:425.905350px;}
.y12f{bottom:425.912100px;}
.yca{bottom:426.053850px;}
.y1d{bottom:426.409200px;}
.y82{bottom:437.831850px;}
.y1c0{bottom:440.263500px;}
.y17f{bottom:440.268150px;}
.y4d{bottom:443.635350px;}
.y12e{bottom:443.912100px;}
.yc9{bottom:444.053850px;}
.y1c{bottom:444.409200px;}
.y81{bottom:454.079850px;}
.y1bf{bottom:455.263500px;}
.y17e{bottom:455.268150px;}
.y67{bottom:461.500350px;}
.y4c{bottom:461.635350px;}
.y12d{bottom:461.912100px;}
.yc8{bottom:462.053850px;}
.y1b{bottom:462.409200px;}
.y1be{bottom:470.263500px;}
.y17d{bottom:470.268150px;}
.y80{bottom:470.327850px;}
.y148{bottom:479.230350px;}
.y4b{bottom:479.635350px;}
.y12c{bottom:479.912100px;}
.yc7{bottom:480.053850px;}
.y1a{bottom:480.409200px;}
.y1bd{bottom:485.263500px;}
.y17c{bottom:485.268150px;}
.y66{bottom:497.365350px;}
.y4a{bottom:497.635350px;}
.y12b{bottom:497.912100px;}
.yc6{bottom:498.053850px;}
.y10c{bottom:498.070350px;}
.yaf{bottom:498.195600px;}
.y19{bottom:498.409200px;}
.y1bc{bottom:500.263500px;}
.y17b{bottom:500.268150px;}
.y7f{bottom:501.839850px;}
.y1bb{bottom:515.263500px;}
.y17a{bottom:515.268150px;}
.y49{bottom:515.635350px;}
.y12a{bottom:515.912100px;}
.yc5{bottom:516.053850px;}
.yae{bottom:516.195600px;}
.y18{bottom:516.409200px;}
.y1ba{bottom:530.263500px;}
.y179{bottom:530.268150px;}
.y65{bottom:533.230350px;}
.y48{bottom:533.635350px;}
.y10b{bottom:533.665350px;}
.y129{bottom:533.912100px;}
.yc4{bottom:534.053850px;}
.yad{bottom:534.195600px;}
.y17{bottom:534.409200px;}
.y7e{bottom:536.734950px;}
.y1b9{bottom:545.263500px;}
.y178{bottom:545.268150px;}
.y47{bottom:551.635350px;}
.y10a{bottom:551.665350px;}
.y128{bottom:551.912100px;}
.yc3{bottom:552.062100px;}
.yac{bottom:552.195600px;}
.y16{bottom:552.409200px;}
.y7d{bottom:556.234950px;}
.y1b8{bottom:560.263500px;}
.y177{bottom:560.268150px;}
.y147{bottom:569.230350px;}
.y127{bottom:569.912100px;}
.yc2{bottom:570.062100px;}
.yab{bottom:570.195600px;}
.y15{bottom:570.409200px;}
.y1b7{bottom:575.263500px;}
.y176{bottom:575.268150px;}
.y46{bottom:587.230350px;}
.y64{bottom:587.770350px;}
.y126{bottom:587.912100px;}
.y109{bottom:587.920350px;}
.yc1{bottom:588.062100px;}
.yaa{bottom:588.195600px;}
.y14{bottom:588.409200px;}
.y1b6{bottom:590.263500px;}
.y175{bottom:590.268150px;}
.y1b5{bottom:605.263500px;}
.y174{bottom:605.268150px;}
.y146{bottom:605.635350px;}
.y63{bottom:605.770350px;}
.y125{bottom:605.912100px;}
.y108{bottom:605.920350px;}
.yc0{bottom:606.062100px;}
.ya9{bottom:606.205350px;}
.y13{bottom:606.409200px;}
.y9a{bottom:608.608500px;}
.y1b4{bottom:620.263500px;}
.y173{bottom:620.268150px;}
.y145{bottom:623.635350px;}
.y62{bottom:623.770350px;}
.y124{bottom:623.912100px;}
.y107{bottom:623.920350px;}
.ya8{bottom:624.205350px;}
.y99{bottom:624.352500px;}
.y12{bottom:624.409200px;}
.y1b3{bottom:635.263500px;}
.y172{bottom:635.268150px;}
.y98{bottom:640.096500px;}
.y144{bottom:641.635350px;}
.ybf{bottom:641.657100px;}
.y45{bottom:641.770350px;}
.y123{bottom:641.912100px;}
.y106{bottom:641.920350px;}
.ya7{bottom:642.205350px;}
.y11{bottom:642.409200px;}
.y1b2{bottom:650.263500px;}
.y171{bottom:650.268150px;}
.y97{bottom:655.840500px;}
.y143{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y105{bottom:659.920350px;}
.ya6{bottom:660.205350px;}
.y10{bottom:660.409200px;}
.y1b1{bottom:665.263500px;}
.y170{bottom:665.268150px;}
.y122{bottom:677.515350px;}
.y142{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.ybe{bottom:677.912100px;}
.y104{bottom:677.920350px;}
.ya5{bottom:678.205350px;}
.y1b0{bottom:680.263500px;}
.y16f{bottom:680.268150px;}
.y1af{bottom:695.263500px;}
.y16e{bottom:695.268150px;}
.y121{bottom:695.515350px;}
.y141{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.ybd{bottom:695.912100px;}
.y103{bottom:695.920350px;}
.yf{bottom:705.567300px;}
.y1ae{bottom:710.263500px;}
.y16d{bottom:710.268150px;}
.y140{bottom:713.230350px;}
.y41{bottom:713.770350px;}
.ya4{bottom:713.800350px;}
.ybc{bottom:713.912100px;}
.y102{bottom:713.920350px;}
.yf2{bottom:714.055350px;}
.ye{bottom:718.018050px;}
.y1ad{bottom:725.263500px;}
.y16c{bottom:725.268150px;}
.y40{bottom:731.770350px;}
.ybb{bottom:731.912100px;}
.y101{bottom:731.920350px;}
.yf1{bottom:732.055350px;}
.y1ac{bottom:740.263500px;}
.y16b{bottom:740.268150px;}
.y13f{bottom:749.635350px;}
.ya3{bottom:749.665350px;}
.yd{bottom:749.733600px;}
.y3f{bottom:749.770350px;}
.yba{bottom:749.912100px;}
.yf0{bottom:750.055350px;}
.y1ab{bottom:755.263500px;}
.y16a{bottom:755.268150px;}
.yf4{bottom:767.365350px;}
.y100{bottom:767.515350px;}
.y13e{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.yb9{bottom:767.912100px;}
.yef{bottom:768.055350px;}
.yc{bottom:768.658950px;}
.y1aa{bottom:770.263500px;}
.y169{bottom:770.268150px;}
.yb{bottom:776.733600px;}
.y1a9{bottom:785.263500px;}
.y168{bottom:785.268150px;}
.y13d{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.yb8{bottom:785.912100px;}
.ya2{bottom:785.920350px;}
.ya{bottom:790.233600px;}
.y1a8{bottom:800.263500px;}
.y167{bottom:800.268150px;}
.yf3{bottom:803.230350px;}
.y13c{bottom:803.635350px;}
.yee{bottom:803.650350px;}
.y9{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.yb7{bottom:803.912100px;}
.ya1{bottom:803.920350px;}
.y1a7{bottom:815.263500px;}
.y166{bottom:815.268150px;}
.y13b{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.yb6{bottom:821.912100px;}
.ya0{bottom:821.920350px;}
.y8{bottom:822.658950px;}
.y1a6{bottom:830.263500px;}
.y165{bottom:830.268150px;}
.yed{bottom:839.515350px;}
.y13a{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y9f{bottom:839.920350px;}
.y1a5{bottom:845.263500px;}
.y164{bottom:845.268150px;}
.y7{bottom:851.380950px;}
.y139{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y9e{bottom:857.920350px;}
.y1a4{bottom:860.263500px;}
.y163{bottom:860.268150px;}
.y1a3{bottom:875.263500px;}
.y162{bottom:875.268150px;}
.y38{bottom:875.770350px;}
.y9d{bottom:875.920350px;}
.y1a2{bottom:890.263500px;}
.y161{bottom:890.268150px;}
.y138{bottom:893.230350px;}
.y37{bottom:893.770350px;}
.y9c{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y1a1{bottom:905.263500px;}
.y160{bottom:905.268150px;}
.y36{bottom:911.770350px;}
.yb5{bottom:911.920350px;}
.y1a0{bottom:920.263500px;}
.y15f{bottom:920.268150px;}
.y9b{bottom:929.515350px;}
.y35{bottom:929.770350px;}
.yb4{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y19f{bottom:935.263500px;}
.y15e{bottom:935.268150px;}
.y34{bottom:947.770350px;}
.yb3{bottom:947.920350px;}
.y19e{bottom:950.263500px;}
.y15d{bottom:950.268150px;}
.y19d{bottom:965.263500px;}
.y15c{bottom:965.268150px;}
.ydd{bottom:965.515350px;}
.y120{bottom:965.768850px;}
.y33{bottom:965.770350px;}
.ye1{bottom:965.785350px;}
.yb2{bottom:965.920350px;}
.y4{bottom:970.465200px;}
.y19c{bottom:980.263500px;}
.y15b{bottom:980.268150px;}
.y11f{bottom:983.768850px;}
.y32{bottom:983.770350px;}
.ye0{bottom:983.785350px;}
.y19b{bottom:995.263500px;}
.y15a{bottom:995.268150px;}
.yb1{bottom:1001.515350px;}
.y11e{bottom:1001.768850px;}
.y31{bottom:1001.770350px;}
.ydf{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y19a{bottom:1010.263500px;}
.y159{bottom:1010.268150px;}
.y11d{bottom:1019.768850px;}
.y30{bottom:1019.770350px;}
.y199{bottom:1025.263500px;}
.y158{bottom:1025.268150px;}
.yde{bottom:1037.380350px;}
.y11c{bottom:1037.768850px;}
.y2f{bottom:1037.770350px;}
.yb0{bottom:1037.775600px;}
.y198{bottom:1040.263500px;}
.y157{bottom:1040.268150px;}
.y2{bottom:1069.300350px;}
.yec{bottom:1132.413150px;}
.y7c{bottom:1132.418700px;}
.ydc{bottom:1132.420050px;}
.yff{bottom:1132.421700px;}
.y197{bottom:1132.423500px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h15{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h14{height:35.280000px;}
.he{height:41.689453px;}
.h18{height:41.951437px;}
.h17{height:41.999437px;}
.h13{height:42.023438px;}
.hc{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.h12{height:44.100000px;}
.hb{height:45.720000px;}
.h16{height:52.496297px;}
.hf{height:52.529297px;}
.h19{height:54.149297px;}
.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;}
.x1a{left:70.582650px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x12{left:99.921150px;}
.x1d{left:102.047400px;}
.x4{left:106.299150px;}
.x15{left:108.424200px;}
.xb{left:110.555400px;}
.x1e{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.xc{left:144.725400px;}
.x1b{left:190.129650px;}
.x1c{left:194.284650px;}
.x5{left:212.876400px;}
.x13{left:312.525150px;}
.x9{left:455.041500px;}
.xd{left:457.100400px;}
.x17{left:478.345350px;}
.x7{left:480.476400px;}
.x14{left:481.720200px;}
.xe{left:491.120400px;}
.x1f{left:503.851350px;}
.x18{left:512.365350px;}
.x19{left:579.422700px;}
.xf{left:591.680400px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x10{left:735.065400px;}
.x16{left:756.325200px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-9.794667pt;}
.v6{vertical-align:-8.373867pt;}
.v5{vertical-align:-2.613333pt;}
.v3{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v7{vertical-align:10.397333pt;}
.v1{vertical-align:27.005867pt;}
.ls9d{letter-spacing:-2.346667pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls70{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls86{letter-spacing:-0.160000pt;}
.ls9c{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.106667pt;}
.lsac{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.053333pt;}
.lsab{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.003680pt;}
.ls4{letter-spacing:0.004373pt;}
.ls3{letter-spacing:0.004907pt;}
.ls38{letter-spacing:0.006933pt;}
.ls6f{letter-spacing:0.007467pt;}
.ls46{letter-spacing:0.008533pt;}
.ls3f{letter-spacing:0.009067pt;}
.ls69{letter-spacing:0.011733pt;}
.ls6a{letter-spacing:0.027733pt;}
.ls6e{letter-spacing:0.042667pt;}
.ls17{letter-spacing:0.053333pt;}
.ls54{letter-spacing:0.072000pt;}
.ls58{letter-spacing:0.075733pt;}
.ls56{letter-spacing:0.076267pt;}
.ls52{letter-spacing:0.085333pt;}
.ls4a{letter-spacing:0.089600pt;}
.ls68{letter-spacing:0.096000pt;}
.ls66{letter-spacing:0.096533pt;}
.lsd{letter-spacing:0.106667pt;}
.ls3b{letter-spacing:0.128000pt;}
.ls55{letter-spacing:0.130133pt;}
.ls57{letter-spacing:0.137067pt;}
.ls24{letter-spacing:0.160000pt;}
.ls65{letter-spacing:0.170667pt;}
.ls67{letter-spacing:0.172267pt;}
.ls6c{letter-spacing:0.189333pt;}
.ls78{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.213333pt;}
.lsa7{letter-spacing:0.256000pt;}
.ls5f{letter-spacing:0.264000pt;}
.ls15{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.298667pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.332267pt;}
.ls6b{letter-spacing:0.341333pt;}
.ls84{letter-spacing:0.359467pt;}
.ls83{letter-spacing:0.360000pt;}
.ls79{letter-spacing:0.366400pt;}
.ls7{letter-spacing:0.373333pt;}
.ls93{letter-spacing:0.384000pt;}
.ls5c{letter-spacing:0.411733pt;}
.ls59{letter-spacing:0.424000pt;}
.ls5b{letter-spacing:0.424533pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls80{letter-spacing:0.460800pt;}
.ls60{letter-spacing:0.465600pt;}
.ls8{letter-spacing:0.480000pt;}
.ls97{letter-spacing:0.512000pt;}
.lsa1{letter-spacing:0.554667pt;}
.ls29{letter-spacing:0.586667pt;}
.ls91{letter-spacing:0.597333pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.676800pt;}
.ls8e{letter-spacing:0.682667pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls81{letter-spacing:0.706667pt;}
.ls42{letter-spacing:0.709333pt;}
.ls4b{letter-spacing:0.713067pt;}
.ls5d{letter-spacing:0.715200pt;}
.ls53{letter-spacing:0.725333pt;}
.ls5a{letter-spacing:0.736533pt;}
.ls10{letter-spacing:0.746667pt;}
.ls94{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls7f{letter-spacing:0.867733pt;}
.ls11{letter-spacing:0.906667pt;}
.ls25{letter-spacing:0.960000pt;}
.ls73{letter-spacing:0.994667pt;}
.ls16{letter-spacing:1.013333pt;}
.ls95{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.066667pt;}
.lsa8{letter-spacing:1.109333pt;}
.ls85{letter-spacing:1.120000pt;}
.ls49{letter-spacing:1.169600pt;}
.ls9{letter-spacing:1.173333pt;}
.lsaa{letter-spacing:1.194667pt;}
.ls82{letter-spacing:1.220800pt;}
.ls43{letter-spacing:1.225600pt;}
.ls18{letter-spacing:1.226667pt;}
.ls4c{letter-spacing:1.232533pt;}
.ls8d{letter-spacing:1.237333pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls87{letter-spacing:1.290133pt;}
.ls63{letter-spacing:1.322667pt;}
.ls22{letter-spacing:1.333333pt;}
.ls64{letter-spacing:1.365333pt;}
.ls19{letter-spacing:1.386667pt;}
.lsa4{letter-spacing:1.408000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls61{letter-spacing:1.493333pt;}
.lsa0{letter-spacing:1.536000pt;}
.ls1c{letter-spacing:1.546667pt;}
.lsa6{letter-spacing:1.578667pt;}
.ls23{letter-spacing:1.600000pt;}
.ls77{letter-spacing:1.653333pt;}
.ls72{letter-spacing:1.706667pt;}
.ls74{letter-spacing:1.714667pt;}
.ls96{letter-spacing:1.749333pt;}
.ls4e{letter-spacing:1.760000pt;}
.ls9e{letter-spacing:1.792000pt;}
.ls76{letter-spacing:1.813333pt;}
.lsa2{letter-spacing:1.834667pt;}
.ls71{letter-spacing:1.866667pt;}
.ls99{letter-spacing:1.877333pt;}
.ls7c{letter-spacing:1.920000pt;}
.ls13{letter-spacing:1.973333pt;}
.ls3e{letter-spacing:2.026667pt;}
.ls9b{letter-spacing:2.048000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.133333pt;}
.ls75{letter-spacing:2.186667pt;}
.ls9a{letter-spacing:2.218667pt;}
.ls2f{letter-spacing:2.240000pt;}
.ls92{letter-spacing:2.261333pt;}
.lsa5{letter-spacing:2.304000pt;}
.ls4d{letter-spacing:2.346667pt;}
.ls8a{letter-spacing:2.400000pt;}
.ls20{letter-spacing:2.453333pt;}
.ls4f{letter-spacing:2.506667pt;}
.ls2a{letter-spacing:2.560000pt;}
.lsa3{letter-spacing:2.645333pt;}
.ls21{letter-spacing:2.666667pt;}
.ls98{letter-spacing:2.688000pt;}
.lse{letter-spacing:2.720000pt;}
.ls7e{letter-spacing:2.773333pt;}
.ls88{letter-spacing:2.826667pt;}
.lsa9{letter-spacing:2.858667pt;}
.ls41{letter-spacing:2.880000pt;}
.lsf{letter-spacing:2.933333pt;}
.ls9f{letter-spacing:2.944000pt;}
.ls5e{letter-spacing:2.986667pt;}
.ls7d{letter-spacing:3.093333pt;}
.ls90{letter-spacing:3.114667pt;}
.ls2b{letter-spacing:3.253333pt;}
.ls50{letter-spacing:3.285333pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls26{letter-spacing:3.466667pt;}
.ls45{letter-spacing:3.520000pt;}
.ls3c{letter-spacing:3.573333pt;}
.ls7b{letter-spacing:3.626667pt;}
.ls8c{letter-spacing:3.669333pt;}
.ls8f{letter-spacing:3.712000pt;}
.ls8b{letter-spacing:4.053333pt;}
.ls27{letter-spacing:4.160000pt;}
.ls44{letter-spacing:4.640000pt;}
.ls51{letter-spacing:4.853333pt;}
.ls47{letter-spacing:4.960000pt;}
.ls28{letter-spacing:5.280000pt;}
.ls7a{letter-spacing:5.653333pt;}
.ls2c{letter-spacing:5.760000pt;}
.ls89{letter-spacing:6.133333pt;}
.ls30{letter-spacing:6.826667pt;}
.ls40{letter-spacing:7.306667pt;}
.ls34{letter-spacing:30.037333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ls36{letter-spacing:173.312000pt;}
.ls35{letter-spacing:183.978667pt;}
.ls3a{letter-spacing:211.242667pt;}
.ls37{letter-spacing:221.909333pt;}
.ws2{word-spacing:-53.333333pt;}
.ws32{word-spacing:-42.666667pt;}
.ws59{word-spacing:-18.186667pt;}
.ws10{word-spacing:-16.693333pt;}
.ws8f{word-spacing:-16.586667pt;}
.ws61{word-spacing:-16.320000pt;}
.ws77{word-spacing:-16.106667pt;}
.ws44{word-spacing:-15.680000pt;}
.ws72{word-spacing:-15.306667pt;}
.ws73{word-spacing:-15.040000pt;}
.ws75{word-spacing:-14.986667pt;}
.wsf{word-spacing:-14.933333pt;}
.ws1{word-spacing:-14.826667pt;}
.wse{word-spacing:-14.666667pt;}
.ws76{word-spacing:-14.613333pt;}
.ws14{word-spacing:-14.506667pt;}
.ws79{word-spacing:-14.133333pt;}
.ws42{word-spacing:-14.080000pt;}
.ws78{word-spacing:-14.026667pt;}
.ws12{word-spacing:-13.920000pt;}
.ws74{word-spacing:-13.760000pt;}
.ws7a{word-spacing:-13.706667pt;}
.wsac{word-spacing:-13.610667pt;}
.ws11{word-spacing:-13.600000pt;}
.ws43{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.386667pt;}
.ws13{word-spacing:-13.333333pt;}
.wsad{word-spacing:-13.312000pt;}
.ws62{word-spacing:-13.280000pt;}
.ws93{word-spacing:-12.714667pt;}
.ws64{word-spacing:-11.989333pt;}
.ws4{word-spacing:-11.861333pt;}
.ws5a{word-spacing:-11.392000pt;}
.ws92{word-spacing:-11.264000pt;}
.wsab{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws63{word-spacing:-10.965333pt;}
.ws90{word-spacing:-10.880000pt;}
.ws65{word-spacing:-10.837333pt;}
.ws3a{word-spacing:-10.794667pt;}
.ws33{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws91{word-spacing:-8.320000pt;}
.ws41{word-spacing:-7.773333pt;}
.ws38{word-spacing:-6.218667pt;}
.ws29{word-spacing:-5.760000pt;}
.ws8a{word-spacing:-5.653333pt;}
.ws7{word-spacing:-4.163733pt;}
.ws25{word-spacing:-4.160000pt;}
.ws98{word-spacing:-4.096000pt;}
.ws99{word-spacing:-3.669333pt;}
.ws21{word-spacing:-3.360000pt;}
.ws28{word-spacing:-3.253333pt;}
.ws9c{word-spacing:-3.114667pt;}
.wsaf{word-spacing:-2.944000pt;}
.ws9{word-spacing:-2.933333pt;}
.ws4f{word-spacing:-2.880000pt;}
.wsa4{word-spacing:-2.773333pt;}
.wsa3{word-spacing:-2.730667pt;}
.ws17{word-spacing:-2.720000pt;}
.ws22{word-spacing:-2.666667pt;}
.wsb5{word-spacing:-2.645333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws3b{word-spacing:-2.346667pt;}
.ws9e{word-spacing:-2.261333pt;}
.wsa8{word-spacing:-2.218667pt;}
.ws5b{word-spacing:-2.080000pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws9b{word-spacing:-1.920000pt;}
.wsb3{word-spacing:-1.834667pt;}
.wsb4{word-spacing:-1.792000pt;}
.ws57{word-spacing:-1.760000pt;}
.wsb7{word-spacing:-1.749333pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws55{word-spacing:-1.546667pt;}
.ws6a{word-spacing:-1.493333pt;}
.wsb8{word-spacing:-1.408000pt;}
.ws67{word-spacing:-1.386667pt;}
.ws6d{word-spacing:-1.365333pt;}
.ws23{word-spacing:-1.333333pt;}
.ws47{word-spacing:-1.280000pt;}
.ws9a{word-spacing:-1.237333pt;}
.ws48{word-spacing:-1.226667pt;}
.ws2c{word-spacing:-1.173333pt;}
.ws8e{word-spacing:-1.120000pt;}
.wsa2{word-spacing:-1.024000pt;}
.ws1e{word-spacing:-1.013333pt;}
.ws83{word-spacing:-0.960000pt;}
.ws1f{word-spacing:-0.853333pt;}
.ws69{word-spacing:-0.800000pt;}
.wsa1{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.746667pt;}
.ws5d{word-spacing:-0.725333pt;}
.ws95{word-spacing:-0.693333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws9d{word-spacing:-0.597333pt;}
.ws86{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.554667pt;}
.wsb1{word-spacing:-0.512000pt;}
.ws45{word-spacing:-0.480000pt;}
.wsaa{word-spacing:-0.469333pt;}
.wsc{word-spacing:-0.426667pt;}
.wsa0{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.373333pt;}
.ws70{word-spacing:-0.341333pt;}
.ws97{word-spacing:-0.298667pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws9f{word-spacing:-0.256000pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws6e{word-spacing:-0.170667pt;}
.ws24{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws5c{word-spacing:-0.085333pt;}
.ws4c{word-spacing:-0.053333pt;}
.ws6f{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.ws2f{word-spacing:0.106667pt;}
.ws16{word-spacing:0.160000pt;}
.ws8{word-spacing:0.213333pt;}
.ws7f{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.426667pt;}
.ws27{word-spacing:0.480000pt;}
.ws68{word-spacing:0.746667pt;}
.wsba{word-spacing:0.810667pt;}
.ws4d{word-spacing:1.066667pt;}
.ws3e{word-spacing:1.152000pt;}
.ws54{word-spacing:1.173333pt;}
.ws40{word-spacing:1.322667pt;}
.ws81{word-spacing:1.386667pt;}
.ws8b{word-spacing:1.493333pt;}
.ws6c{word-spacing:1.600000pt;}
.ws89{word-spacing:1.760000pt;}
.wsa7{word-spacing:1.792000pt;}
.ws2e{word-spacing:1.813333pt;}
.wsb0{word-spacing:1.834667pt;}
.wsa6{word-spacing:1.877333pt;}
.ws5f{word-spacing:1.920000pt;}
.ws4e{word-spacing:2.080000pt;}
.ws18{word-spacing:2.133333pt;}
.wsb6{word-spacing:2.176000pt;}
.ws26{word-spacing:2.240000pt;}
.ws7d{word-spacing:2.293333pt;}
.wsae{word-spacing:2.346667pt;}
.ws52{word-spacing:2.453333pt;}
.ws71{word-spacing:2.517333pt;}
.ws7c{word-spacing:2.560000pt;}
.ws50{word-spacing:2.666667pt;}
.ws88{word-spacing:2.826667pt;}
.ws4a{word-spacing:2.880000pt;}
.ws94{word-spacing:2.933333pt;}
.wsa5{word-spacing:2.944000pt;}
.ws7e{word-spacing:2.986667pt;}
.ws85{word-spacing:3.040000pt;}
.ws87{word-spacing:3.093333pt;}
.wsb9{word-spacing:3.114667pt;}
.ws8c{word-spacing:3.146667pt;}
.ws60{word-spacing:3.242667pt;}
.ws4b{word-spacing:3.253333pt;}
.ws84{word-spacing:3.360000pt;}
.ws5e{word-spacing:3.370667pt;}
.ws1a{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.456000pt;}
.ws7b{word-spacing:3.466667pt;}
.ws58{word-spacing:3.498667pt;}
.ws3c{word-spacing:3.541333pt;}
.ws51{word-spacing:3.573333pt;}
.ws30{word-spacing:3.680000pt;}
.ws8d{word-spacing:4.000000pt;}
.ws6b{word-spacing:4.053333pt;}
.ws82{word-spacing:4.106667pt;}
.ws46{word-spacing:4.160000pt;}
.ws20{word-spacing:4.266667pt;}
.ws80{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws56{word-spacing:4.480000pt;}
.ws96{word-spacing:4.906667pt;}
.wsa9{word-spacing:5.760000pt;}
.ws66{word-spacing:6.026667pt;}
.ws31{word-spacing:158.208000pt;}
.ws37{word-spacing:171.093333pt;}
.ws36{word-spacing:177.024000pt;}
.ws35{word-spacing:196.096000pt;}
.ws39{word-spacing:198.954667pt;}
.ws34{word-spacing:209.621333pt;}
._e{margin-left:-2576.128000pt;}
._29{margin-left:-2554.965333pt;}
._d{margin-left:-6.773333pt;}
._c{margin-left:-5.760000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.026667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._6{width:0.906667pt;}
._7{width:2.346667pt;}
._2a{width:3.270400pt;}
._2{width:4.163733pt;}
._5{width:5.649600pt;}
._8{width:7.146667pt;}
._9{width:8.320000pt;}
._a{width:9.386667pt;}
._b{width:10.986667pt;}
._11{width:33.152000pt;}
._13{width:36.480000pt;}
._12{width:45.952000pt;}
._1e{width:84.096000pt;}
._21{width:93.610667pt;}
._19{width:142.933333pt;}
._18{width:168.874667pt;}
._10{width:188.928000pt;}
._25{width:206.762667pt;}
._22{width:211.669333pt;}
._15{width:214.058667pt;}
._1b{width:230.954667pt;}
._1d{width:252.160000pt;}
._1c{width:278.016000pt;}
._20{width:282.368000pt;}
._1a{width:293.034667pt;}
._16{width:303.701333pt;}
._14{width:313.984000pt;}
._28{width:343.253333pt;}
._23{width:345.600000pt;}
._26{width:364.544000pt;}
._27{width:366.933333pt;}
._17{width:387.930667pt;}
._1f{width:402.517333pt;}
._24{width:426.154667pt;}
._f{width:440.320000pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.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;}
.y61{bottom:74.342533pt;}
.ydb{bottom:74.446267pt;}
.y7b{bottom:74.588533pt;}
.y11b{bottom:74.714533pt;}
.yd9{bottom:75.087867pt;}
.yeb{bottom:75.170800pt;}
.yfe{bottom:75.832133pt;}
.y26{bottom:78.242667pt;}
.y156{bottom:84.426800pt;}
.y196{bottom:84.678667pt;}
.yda{bottom:88.440933pt;}
.yea{bottom:89.176133pt;}
.yfd{bottom:89.832133pt;}
.y60{bottom:90.342533pt;}
.y96{bottom:90.478667pt;}
.y7a{bottom:90.588533pt;}
.y11a{bottom:90.714533pt;}
.yd8{bottom:91.087867pt;}
.y25{bottom:91.576000pt;}
.y155{bottom:97.760133pt;}
.y195{bottom:98.012000pt;}
.ye9{bottom:103.170800pt;}
.yfc{bottom:103.842800pt;}
.y95{bottom:105.145333pt;}
.y5f{bottom:106.342533pt;}
.y79{bottom:106.588533pt;}
.y119{bottom:106.714533pt;}
.yd7{bottom:107.087867pt;}
.y154{bottom:111.093467pt;}
.y194{bottom:111.345333pt;}
.ye8{bottom:117.176133pt;}
.yfb{bottom:117.837467pt;}
.y94{bottom:119.812000pt;}
.y5e{bottom:122.342533pt;}
.y78{bottom:122.588533pt;}
.y118{bottom:122.714533pt;}
.yd6{bottom:123.087867pt;}
.y153{bottom:124.426800pt;}
.y193{bottom:124.678667pt;}
.ye7{bottom:131.170800pt;}
.yfa{bottom:131.832133pt;}
.y93{bottom:134.478667pt;}
.y152{bottom:137.760133pt;}
.y192{bottom:138.012000pt;}
.y5d{bottom:138.342533pt;}
.y77{bottom:138.588533pt;}
.y117{bottom:138.714533pt;}
.yd5{bottom:139.087867pt;}
.y29{bottom:144.354267pt;}
.ye6{bottom:145.170800pt;}
.yf9{bottom:145.832133pt;}
.y151{bottom:151.093467pt;}
.y191{bottom:151.345333pt;}
.y5c{bottom:154.342533pt;}
.y76{bottom:154.588533pt;}
.y116{bottom:154.714533pt;}
.yd4{bottom:155.087867pt;}
.y92{bottom:157.159467pt;}
.ye5{bottom:159.181467pt;}
.yf8{bottom:159.832133pt;}
.y28{bottom:160.354267pt;}
.y150{bottom:164.426800pt;}
.y190{bottom:164.678667pt;}
.y5b{bottom:170.342533pt;}
.y75{bottom:170.588533pt;}
.y115{bottom:170.714533pt;}
.yd3{bottom:171.087867pt;}
.y91{bottom:171.826133pt;}
.ye4{bottom:173.176133pt;}
.yf7{bottom:173.837467pt;}
.y2b{bottom:176.354267pt;}
.y14f{bottom:177.760133pt;}
.y18f{bottom:178.012000pt;}
.y90{bottom:186.268800pt;}
.y5a{bottom:186.342533pt;}
.y74{bottom:186.588533pt;}
.y114{bottom:186.714533pt;}
.yd2{bottom:187.087867pt;}
.ye3{bottom:187.170800pt;}
.yf6{bottom:187.832133pt;}
.y14e{bottom:191.093467pt;}
.y18e{bottom:191.345333pt;}
.y27{bottom:191.994267pt;}
.y2a{bottom:192.354267pt;}
.y8f{bottom:200.935467pt;}
.ye2{bottom:201.165467pt;}
.yf5{bottom:201.826800pt;}
.y59{bottom:202.342533pt;}
.y73{bottom:202.588533pt;}
.y113{bottom:202.714533pt;}
.y14d{bottom:204.426800pt;}
.y18d{bottom:204.678667pt;}
.y8e{bottom:215.392267pt;}
.y18c{bottom:218.012000pt;}
.y58{bottom:218.342533pt;}
.y72{bottom:218.588533pt;}
.y112{bottom:218.714533pt;}
.yd1{bottom:218.727867pt;}
.y8d{bottom:229.834933pt;}
.y18b{bottom:231.345333pt;}
.y14c{bottom:233.862533pt;}
.y57{bottom:234.342533pt;}
.y71{bottom:234.588533pt;}
.y111{bottom:234.714533pt;}
.y8c{bottom:244.277600pt;}
.y18a{bottom:244.678667pt;}
.y56{bottom:250.342533pt;}
.y70{bottom:250.582533pt;}
.y137{bottom:250.588533pt;}
.yd0{bottom:250.607867pt;}
.y110{bottom:250.714533pt;}
.y189{bottom:258.012000pt;}
.y24{bottom:258.723733pt;}
.y8b{bottom:258.944267pt;}
.y55{bottom:266.342533pt;}
.y6f{bottom:266.582533pt;}
.y136{bottom:266.588533pt;}
.y10f{bottom:266.714533pt;}
.y188{bottom:271.345333pt;}
.y8a{bottom:273.390533pt;}
.y54{bottom:282.342533pt;}
.ycf{bottom:282.487867pt;}
.y6e{bottom:282.582533pt;}
.y135{bottom:282.588533pt;}
.y10e{bottom:282.714533pt;}
.y23{bottom:283.030400pt;}
.y187{bottom:284.678667pt;}
.y89{bottom:288.057200pt;}
.y14b{bottom:297.982533pt;}
.y186{bottom:298.012000pt;}
.y53{bottom:298.342533pt;}
.y6d{bottom:298.582533pt;}
.y134{bottom:298.588533pt;}
.y10d{bottom:298.714533pt;}
.y22{bottom:299.030400pt;}
.y88{bottom:302.506933pt;}
.y185{bottom:311.345333pt;}
.y52{bottom:314.342533pt;}
.y6c{bottom:314.582533pt;}
.y133{bottom:314.588533pt;}
.yce{bottom:314.714533pt;}
.y21{bottom:315.030400pt;}
.y87{bottom:316.949600pt;}
.y184{bottom:324.678667pt;}
.y51{bottom:330.342533pt;}
.y6b{bottom:330.582533pt;}
.y132{bottom:330.588533pt;}
.ycd{bottom:330.714533pt;}
.y20{bottom:331.030400pt;}
.y86{bottom:331.395733pt;}
.y183{bottom:338.012000pt;}
.y85{bottom:345.841867pt;}
.y14a{bottom:345.982533pt;}
.y50{bottom:346.342533pt;}
.y6a{bottom:346.582533pt;}
.y131{bottom:346.588533pt;}
.ycc{bottom:346.714533pt;}
.y1f{bottom:347.030400pt;}
.y182{bottom:351.349467pt;}
.y84{bottom:360.298533pt;}
.y4f{bottom:362.342533pt;}
.y69{bottom:362.582533pt;}
.y130{bottom:362.588533pt;}
.ycb{bottom:362.714533pt;}
.y1e{bottom:363.030400pt;}
.y181{bottom:364.682800pt;}
.y83{bottom:374.741200pt;}
.y149{bottom:377.982533pt;}
.y180{bottom:378.016133pt;}
.y4e{bottom:378.342533pt;}
.y68{bottom:378.582533pt;}
.y12f{bottom:378.588533pt;}
.yca{bottom:378.714533pt;}
.y1d{bottom:379.030400pt;}
.y82{bottom:389.183867pt;}
.y1c0{bottom:391.345333pt;}
.y17f{bottom:391.349467pt;}
.y4d{bottom:394.342533pt;}
.y12e{bottom:394.588533pt;}
.yc9{bottom:394.714533pt;}
.y1c{bottom:395.030400pt;}
.y81{bottom:403.626533pt;}
.y1bf{bottom:404.678667pt;}
.y17e{bottom:404.682800pt;}
.y67{bottom:410.222533pt;}
.y4c{bottom:410.342533pt;}
.y12d{bottom:410.588533pt;}
.yc8{bottom:410.714533pt;}
.y1b{bottom:411.030400pt;}
.y1be{bottom:418.012000pt;}
.y17d{bottom:418.016133pt;}
.y80{bottom:418.069200pt;}
.y148{bottom:425.982533pt;}
.y4b{bottom:426.342533pt;}
.y12c{bottom:426.588533pt;}
.yc7{bottom:426.714533pt;}
.y1a{bottom:427.030400pt;}
.y1bd{bottom:431.345333pt;}
.y17c{bottom:431.349467pt;}
.y66{bottom:442.102533pt;}
.y4a{bottom:442.342533pt;}
.y12b{bottom:442.588533pt;}
.yc6{bottom:442.714533pt;}
.y10c{bottom:442.729200pt;}
.yaf{bottom:442.840533pt;}
.y19{bottom:443.030400pt;}
.y1bc{bottom:444.678667pt;}
.y17b{bottom:444.682800pt;}
.y7f{bottom:446.079867pt;}
.y1bb{bottom:458.012000pt;}
.y17a{bottom:458.016133pt;}
.y49{bottom:458.342533pt;}
.y12a{bottom:458.588533pt;}
.yc5{bottom:458.714533pt;}
.yae{bottom:458.840533pt;}
.y18{bottom:459.030400pt;}
.y1ba{bottom:471.345333pt;}
.y179{bottom:471.349467pt;}
.y65{bottom:473.982533pt;}
.y48{bottom:474.342533pt;}
.y10b{bottom:474.369200pt;}
.y129{bottom:474.588533pt;}
.yc4{bottom:474.714533pt;}
.yad{bottom:474.840533pt;}
.y17{bottom:475.030400pt;}
.y7e{bottom:477.097733pt;}
.y1b9{bottom:484.678667pt;}
.y178{bottom:484.682800pt;}
.y47{bottom:490.342533pt;}
.y10a{bottom:490.369200pt;}
.y128{bottom:490.588533pt;}
.yc3{bottom:490.721867pt;}
.yac{bottom:490.840533pt;}
.y16{bottom:491.030400pt;}
.y7d{bottom:494.431067pt;}
.y1b8{bottom:498.012000pt;}
.y177{bottom:498.016133pt;}
.y147{bottom:505.982533pt;}
.y127{bottom:506.588533pt;}
.yc2{bottom:506.721867pt;}
.yab{bottom:506.840533pt;}
.y15{bottom:507.030400pt;}
.y1b7{bottom:511.345333pt;}
.y176{bottom:511.349467pt;}
.y46{bottom:521.982533pt;}
.y64{bottom:522.462533pt;}
.y126{bottom:522.588533pt;}
.y109{bottom:522.595867pt;}
.yc1{bottom:522.721867pt;}
.yaa{bottom:522.840533pt;}
.y14{bottom:523.030400pt;}
.y1b6{bottom:524.678667pt;}
.y175{bottom:524.682800pt;}
.y1b5{bottom:538.012000pt;}
.y174{bottom:538.016133pt;}
.y146{bottom:538.342533pt;}
.y63{bottom:538.462533pt;}
.y125{bottom:538.588533pt;}
.y108{bottom:538.595867pt;}
.yc0{bottom:538.721867pt;}
.ya9{bottom:538.849200pt;}
.y13{bottom:539.030400pt;}
.y9a{bottom:540.985333pt;}
.y1b4{bottom:551.345333pt;}
.y173{bottom:551.349467pt;}
.y145{bottom:554.342533pt;}
.y62{bottom:554.462533pt;}
.y124{bottom:554.588533pt;}
.y107{bottom:554.595867pt;}
.ya8{bottom:554.849200pt;}
.y99{bottom:554.980000pt;}
.y12{bottom:555.030400pt;}
.y1b3{bottom:564.678667pt;}
.y172{bottom:564.682800pt;}
.y98{bottom:568.974667pt;}
.y144{bottom:570.342533pt;}
.ybf{bottom:570.361867pt;}
.y45{bottom:570.462533pt;}
.y123{bottom:570.588533pt;}
.y106{bottom:570.595867pt;}
.ya7{bottom:570.849200pt;}
.y11{bottom:571.030400pt;}
.y1b2{bottom:578.012000pt;}
.y171{bottom:578.016133pt;}
.y97{bottom:582.969333pt;}
.y143{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y105{bottom:586.595867pt;}
.ya6{bottom:586.849200pt;}
.y10{bottom:587.030400pt;}
.y1b1{bottom:591.345333pt;}
.y170{bottom:591.349467pt;}
.y122{bottom:602.235867pt;}
.y142{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.ybe{bottom:602.588533pt;}
.y104{bottom:602.595867pt;}
.ya5{bottom:602.849200pt;}
.y1b0{bottom:604.678667pt;}
.y16f{bottom:604.682800pt;}
.y1af{bottom:618.012000pt;}
.y16e{bottom:618.016133pt;}
.y121{bottom:618.235867pt;}
.y141{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.ybd{bottom:618.588533pt;}
.y103{bottom:618.595867pt;}
.yf{bottom:627.170933pt;}
.y1ae{bottom:631.345333pt;}
.y16d{bottom:631.349467pt;}
.y140{bottom:633.982533pt;}
.y41{bottom:634.462533pt;}
.ya4{bottom:634.489200pt;}
.ybc{bottom:634.588533pt;}
.y102{bottom:634.595867pt;}
.yf2{bottom:634.715867pt;}
.ye{bottom:638.238267pt;}
.y1ad{bottom:644.678667pt;}
.y16c{bottom:644.682800pt;}
.y40{bottom:650.462533pt;}
.ybb{bottom:650.588533pt;}
.y101{bottom:650.595867pt;}
.yf1{bottom:650.715867pt;}
.y1ac{bottom:658.012000pt;}
.y16b{bottom:658.016133pt;}
.y13f{bottom:666.342533pt;}
.ya3{bottom:666.369200pt;}
.yd{bottom:666.429867pt;}
.y3f{bottom:666.462533pt;}
.yba{bottom:666.588533pt;}
.yf0{bottom:666.715867pt;}
.y1ab{bottom:671.345333pt;}
.y16a{bottom:671.349467pt;}
.yf4{bottom:682.102533pt;}
.y100{bottom:682.235867pt;}
.y13e{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.yb9{bottom:682.588533pt;}
.yef{bottom:682.715867pt;}
.yc{bottom:683.252400pt;}
.y1aa{bottom:684.678667pt;}
.y169{bottom:684.682800pt;}
.yb{bottom:690.429867pt;}
.y1a9{bottom:698.012000pt;}
.y168{bottom:698.016133pt;}
.y13d{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.yb8{bottom:698.588533pt;}
.ya2{bottom:698.595867pt;}
.ya{bottom:702.429867pt;}
.y1a8{bottom:711.345333pt;}
.y167{bottom:711.349467pt;}
.yf3{bottom:713.982533pt;}
.y13c{bottom:714.342533pt;}
.yee{bottom:714.355867pt;}
.y9{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.yb7{bottom:714.588533pt;}
.ya1{bottom:714.595867pt;}
.y1a7{bottom:724.678667pt;}
.y166{bottom:724.682800pt;}
.y13b{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.yb6{bottom:730.588533pt;}
.ya0{bottom:730.595867pt;}
.y8{bottom:731.252400pt;}
.y1a6{bottom:738.012000pt;}
.y165{bottom:738.016133pt;}
.yed{bottom:746.235867pt;}
.y13a{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y9f{bottom:746.595867pt;}
.y1a5{bottom:751.345333pt;}
.y164{bottom:751.349467pt;}
.y7{bottom:756.783067pt;}
.y139{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y9e{bottom:762.595867pt;}
.y1a4{bottom:764.678667pt;}
.y163{bottom:764.682800pt;}
.y1a3{bottom:778.012000pt;}
.y162{bottom:778.016133pt;}
.y38{bottom:778.462533pt;}
.y9d{bottom:778.595867pt;}
.y1a2{bottom:791.345333pt;}
.y161{bottom:791.349467pt;}
.y138{bottom:793.982533pt;}
.y37{bottom:794.462533pt;}
.y9c{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y1a1{bottom:804.678667pt;}
.y160{bottom:804.682800pt;}
.y36{bottom:810.462533pt;}
.yb5{bottom:810.595867pt;}
.y1a0{bottom:818.012000pt;}
.y15f{bottom:818.016133pt;}
.y9b{bottom:826.235867pt;}
.y35{bottom:826.462533pt;}
.yb4{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y19f{bottom:831.345333pt;}
.y15e{bottom:831.349467pt;}
.y34{bottom:842.462533pt;}
.yb3{bottom:842.595867pt;}
.y19e{bottom:844.678667pt;}
.y15d{bottom:844.682800pt;}
.y19d{bottom:858.012000pt;}
.y15c{bottom:858.016133pt;}
.ydd{bottom:858.235867pt;}
.y120{bottom:858.461200pt;}
.y33{bottom:858.462533pt;}
.ye1{bottom:858.475867pt;}
.yb2{bottom:858.595867pt;}
.y4{bottom:862.635733pt;}
.y19c{bottom:871.345333pt;}
.y15b{bottom:871.349467pt;}
.y11f{bottom:874.461200pt;}
.y32{bottom:874.462533pt;}
.ye0{bottom:874.475867pt;}
.y19b{bottom:884.678667pt;}
.y15a{bottom:884.682800pt;}
.yb1{bottom:890.235867pt;}
.y11e{bottom:890.461200pt;}
.y31{bottom:890.462533pt;}
.ydf{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y19a{bottom:898.012000pt;}
.y159{bottom:898.016133pt;}
.y11d{bottom:906.461200pt;}
.y30{bottom:906.462533pt;}
.y199{bottom:911.345333pt;}
.y158{bottom:911.349467pt;}
.yde{bottom:922.115867pt;}
.y11c{bottom:922.461200pt;}
.y2f{bottom:922.462533pt;}
.yb0{bottom:922.467200pt;}
.y198{bottom:924.678667pt;}
.y157{bottom:924.682800pt;}
.y2{bottom:950.489200pt;}
.yec{bottom:1006.589467pt;}
.y7c{bottom:1006.594400pt;}
.ydc{bottom:1006.595600pt;}
.yff{bottom:1006.597067pt;}
.y197{bottom:1006.598667pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h15{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h14{height:31.360000pt;}
.he{height:37.057292pt;}
.h18{height:37.290167pt;}
.h17{height:37.332833pt;}
.h13{height:37.354167pt;}
.hc{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.h12{height:39.200000pt;}
.hb{height:40.640000pt;}
.h16{height:46.663375pt;}
.hf{height:46.692708pt;}
.h19{height:48.132708pt;}
.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;}
.x1a{left:62.740133pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x12{left:88.818800pt;}
.x1d{left:90.708800pt;}
.x4{left:94.488133pt;}
.x15{left:96.377067pt;}
.xb{left:98.271467pt;}
.x1e{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.xc{left:128.644800pt;}
.x1b{left:169.004133pt;}
.x1c{left:172.697467pt;}
.x5{left:189.223467pt;}
.x13{left:277.800133pt;}
.x9{left:404.481333pt;}
.xd{left:406.311467pt;}
.x17{left:425.195867pt;}
.x7{left:427.090133pt;}
.x14{left:428.195733pt;}
.xe{left:436.551467pt;}
.x1f{left:447.867867pt;}
.x18{left:455.435867pt;}
.x19{left:515.042400pt;}
.xf{left:525.938133pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x10{left:653.391467pt;}
.x16{left:672.289067pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  