
    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_abf3ecec7cf23279e73e1bf7.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_7573b788eef1817982a14a1f.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_9bf4e7a110039d8759f6b50c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_830c40e3220c9ea9e6d3f551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f27a4a9517ca2e69529bc098.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc729daae28f903814994a5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f3cb59f1e1dca390cab75ba.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_ec1e360ecfec171c9e51c9cf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_188dcb706851b86fcd73be0b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b726301e4c6c9fc27bf9c64d.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_a6c31e6a53558ae80bd7dfc1.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_91cf1676e399bd4690bd1b8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:11.697000px;}
.v1{vertical-align:30.381600px;}
.ls5{letter-spacing:-0.780000px;}
.ls68{letter-spacing:-0.336000px;}
.ls75{letter-spacing:-0.300000px;}
.ls9c{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.225000px;}
.ls45{letter-spacing:-0.180000px;}
.ls95{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.120000px;}
.ls94{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.060000px;}
.ls60{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003540px;}
.ls2{letter-spacing:0.005676px;}
.ls79{letter-spacing:0.048000px;}
.lse{letter-spacing:0.060000px;}
.ls50{letter-spacing:0.096000px;}
.ls40{letter-spacing:0.120000px;}
.ls67{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.192000px;}
.ls3d{letter-spacing:0.240000px;}
.ls7c{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.336000px;}
.ls18{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.384000px;}
.ls2b{letter-spacing:0.420000px;}
.ls72{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls6d{letter-spacing:0.528000px;}
.ls2f{letter-spacing:0.540000px;}
.ls5e{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.600000px;}
.ls6a{letter-spacing:0.624000px;}
.ls19{letter-spacing:0.660000px;}
.ls4c{letter-spacing:0.672000px;}
.ls1d{letter-spacing:0.720000px;}
.ls8e{letter-spacing:0.768000px;}
.ls16{letter-spacing:0.780000px;}
.ls96{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.840000px;}
.ls93{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912000px;}
.ls1c{letter-spacing:0.960000px;}
.ls7a{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls97{letter-spacing:1.056000px;}
.lsa{letter-spacing:1.080000px;}
.ls6e{letter-spacing:1.104000px;}
.ls1a{letter-spacing:1.140000px;}
.ls6f{letter-spacing:1.152000px;}
.ls31{letter-spacing:1.200000px;}
.ls1e{letter-spacing:1.260000px;}
.ls9b{letter-spacing:1.296000px;}
.ls39{letter-spacing:1.320000px;}
.ls8f{letter-spacing:1.344000px;}
.ls15{letter-spacing:1.380000px;}
.ls83{letter-spacing:1.392000px;}
.lsd{letter-spacing:1.440000px;}
.ls87{letter-spacing:1.488000px;}
.ls10{letter-spacing:1.500000px;}
.ls9a{letter-spacing:1.536000px;}
.ls12{letter-spacing:1.560000px;}
.ls90{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.620000px;}
.ls8c{letter-spacing:1.632000px;}
.ls1b{letter-spacing:1.680000px;}
.ls84{letter-spacing:1.728000px;}
.ls29{letter-spacing:1.740000px;}
.ls7b{letter-spacing:1.776000px;}
.ls32{letter-spacing:1.800000px;}
.ls8b{letter-spacing:1.824000px;}
.ls26{letter-spacing:1.860000px;}
.ls8d{letter-spacing:1.872000px;}
.ls20{letter-spacing:1.920000px;}
.ls99{letter-spacing:1.968000px;}
.ls3e{letter-spacing:1.980000px;}
.ls88{letter-spacing:2.016000px;}
.ls38{letter-spacing:2.040000px;}
.ls86{letter-spacing:2.064000px;}
.ls2c{letter-spacing:2.100000px;}
.ls36{letter-spacing:2.160000px;}
.ls92{letter-spacing:2.208000px;}
.ls3c{letter-spacing:2.220000px;}
.ls1f{letter-spacing:2.280000px;}
.ls43{letter-spacing:2.340000px;}
.ls5f{letter-spacing:2.352000px;}
.ls3a{letter-spacing:2.400000px;}
.ls85{letter-spacing:2.448000px;}
.ls13{letter-spacing:2.460000px;}
.ls89{letter-spacing:2.496000px;}
.ls27{letter-spacing:2.520000px;}
.ls14{letter-spacing:2.580000px;}
.ls8a{letter-spacing:2.592000px;}
.ls48{letter-spacing:2.640000px;}
.ls42{letter-spacing:2.700000px;}
.ls2d{letter-spacing:2.760000px;}
.ls4a{letter-spacing:2.820000px;}
.ls24{letter-spacing:2.880000px;}
.ls61{letter-spacing:2.940000px;}
.lsc{letter-spacing:3.000000px;}
.ls98{letter-spacing:3.024000px;}
.ls5b{letter-spacing:3.060000px;}
.ls17{letter-spacing:3.120000px;}
.lsb{letter-spacing:3.180000px;}
.ls3f{letter-spacing:3.240000px;}
.ls52{letter-spacing:3.300000px;}
.ls55{letter-spacing:3.360000px;}
.ls2a{letter-spacing:3.420000px;}
.ls41{letter-spacing:3.480000px;}
.ls4d{letter-spacing:3.540000px;}
.ls23{letter-spacing:3.600000px;}
.ls30{letter-spacing:3.660000px;}
.ls3b{letter-spacing:3.720000px;}
.ls54{letter-spacing:3.780000px;}
.ls44{letter-spacing:3.840000px;}
.ls4e{letter-spacing:3.900000px;}
.ls80{letter-spacing:3.960000px;}
.ls91{letter-spacing:4.032000px;}
.ls56{letter-spacing:4.080000px;}
.ls5a{letter-spacing:4.140000px;}
.ls74{letter-spacing:4.200000px;}
.ls53{letter-spacing:4.320000px;}
.ls34{letter-spacing:4.440000px;}
.ls9d{letter-spacing:4.620000px;}
.ls76{letter-spacing:4.680000px;}
.ls35{letter-spacing:4.740000px;}
.ls8{letter-spacing:4.800000px;}
.ls57{letter-spacing:4.980000px;}
.ls65{letter-spacing:5.100000px;}
.ls51{letter-spacing:5.160000px;}
.ls46{letter-spacing:5.340000px;}
.ls73{letter-spacing:5.400000px;}
.ls62{letter-spacing:5.460000px;}
.ls5c{letter-spacing:5.640000px;}
.ls33{letter-spacing:5.700000px;}
.ls7f{letter-spacing:5.760000px;}
.ls59{letter-spacing:5.820000px;}
.ls7e{letter-spacing:5.880000px;}
.ls47{letter-spacing:6.060000px;}
.ls5d{letter-spacing:6.120000px;}
.ls49{letter-spacing:6.240000px;}
.ls69{letter-spacing:6.300000px;}
.ls58{letter-spacing:6.420000px;}
.ls66{letter-spacing:6.480000px;}
.ls9e{letter-spacing:6.600000px;}
.ls63{letter-spacing:6.895800px;}
.ls82{letter-spacing:7.200000px;}
.ls64{letter-spacing:7.440000px;}
.ls81{letter-spacing:7.620000px;}
.ls77{letter-spacing:9.660000px;}
.ls0{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.ls71{letter-spacing:89.712000px;}
.ls70{letter-spacing:134.208000px;}
.ls7d{letter-spacing:140.736000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.wscd{word-spacing:-22.440000px;}
.wsa8{word-spacing:-20.100000px;}
.ws2b{word-spacing:-19.740000px;}
.wsb8{word-spacing:-19.680000px;}
.ws7a{word-spacing:-19.320000px;}
.ws7e{word-spacing:-18.720000px;}
.ws29{word-spacing:-18.660000px;}
.ws7c{word-spacing:-18.360000px;}
.ws33{word-spacing:-18.240000px;}
.wse{word-spacing:-18.120000px;}
.wsa7{word-spacing:-17.880000px;}
.ws9f{word-spacing:-17.820000px;}
.ws62{word-spacing:-17.760000px;}
.ws7d{word-spacing:-17.640000px;}
.ws64{word-spacing:-17.520000px;}
.ws2d{word-spacing:-17.400000px;}
.ws79{word-spacing:-17.340000px;}
.wsa1{word-spacing:-17.280000px;}
.ws55{word-spacing:-17.220000px;}
.ws31{word-spacing:-16.980000px;}
.ws8e{word-spacing:-16.860000px;}
.ws7b{word-spacing:-16.800000px;}
.ws32{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.680000px;}
.ws30{word-spacing:-16.620000px;}
.ws90{word-spacing:-16.560000px;}
.ws54{word-spacing:-16.500000px;}
.wsd{word-spacing:-16.440000px;}
.wsb3{word-spacing:-16.380000px;}
.wsc7{word-spacing:-16.320000px;}
.wsa2{word-spacing:-16.260000px;}
.wsbd{word-spacing:-16.200000px;}
.ws2c{word-spacing:-16.140000px;}
.ws34{word-spacing:-16.080000px;}
.ws2f{word-spacing:-16.020000px;}
.ws8f{word-spacing:-15.960000px;}
.ws53{word-spacing:-15.900000px;}
.ws7f{word-spacing:-15.840000px;}
.wsc8{word-spacing:-15.720000px;}
.wsfc{word-spacing:-15.600000px;}
.ws2a{word-spacing:-15.540000px;}
.wsc{word-spacing:-15.480000px;}
.ws10{word-spacing:-15.420000px;}
.wsa{word-spacing:-15.360000px;}
.ws2e{word-spacing:-15.300000px;}
.ws35{word-spacing:-15.240000px;}
.wsb{word-spacing:-15.180000px;}
.ws63{word-spacing:-15.060000px;}
.wsf{word-spacing:-15.000000px;}
.ws61{word-spacing:-14.940000px;}
.ws78{word-spacing:-14.880000px;}
.wsd4{word-spacing:-14.448000px;}
.wse8{word-spacing:-13.632000px;}
.wsb1{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.344000px;}
.wsd8{word-spacing:-12.720000px;}
.wse9{word-spacing:-12.672000px;}
.wse7{word-spacing:-12.624000px;}
.wsd2{word-spacing:-12.480000px;}
.wsd3{word-spacing:-12.384000px;}
.wsd6{word-spacing:-12.336000px;}
.ws4{word-spacing:-12.285000px;}
.ws65{word-spacing:-12.192000px;}
.wsea{word-spacing:-12.144000px;}
.wsb5{word-spacing:-12.000000px;}
.wsd5{word-spacing:-11.952000px;}
.wsd7{word-spacing:-11.760000px;}
.ws1{word-spacing:-10.210662px;}
.ws60{word-spacing:-8.745000px;}
.wsc1{word-spacing:-5.880000px;}
.wsca{word-spacing:-5.760000px;}
.ws94{word-spacing:-5.640000px;}
.ws8{word-spacing:-4.684200px;}
.ws73{word-spacing:-3.840000px;}
.ws8b{word-spacing:-3.720000px;}
.ws74{word-spacing:-3.540000px;}
.wsb9{word-spacing:-3.480000px;}
.ws4c{word-spacing:-3.420000px;}
.ws49{word-spacing:-3.240000px;}
.ws85{word-spacing:-3.120000px;}
.wsc3{word-spacing:-3.060000px;}
.ws6c{word-spacing:-3.000000px;}
.ws7{word-spacing:-2.886000px;}
.wsd1{word-spacing:-2.700000px;}
.wsdd{word-spacing:-2.640000px;}
.ws6d{word-spacing:-2.520000px;}
.wsde{word-spacing:-2.496000px;}
.ws3f{word-spacing:-2.400000px;}
.wsb2{word-spacing:-2.340000px;}
.wsa3{word-spacing:-2.280000px;}
.wsf4{word-spacing:-2.256000px;}
.ws5a{word-spacing:-2.220000px;}
.ws8c{word-spacing:-2.160000px;}
.ws71{word-spacing:-2.100000px;}
.ws3c{word-spacing:-2.040000px;}
.ws93{word-spacing:-1.860000px;}
.ws8a{word-spacing:-1.800000px;}
.wsaa{word-spacing:-1.740000px;}
.wse6{word-spacing:-1.632000px;}
.wsfd{word-spacing:-1.620000px;}
.ws26{word-spacing:-1.440000px;}
.wsf9{word-spacing:-1.344000px;}
.wsae{word-spacing:-1.320000px;}
.wsbb{word-spacing:-1.260000px;}
.ws4b{word-spacing:-1.140000px;}
.ws15{word-spacing:-1.080000px;}
.ws72{word-spacing:-1.020000px;}
.ws38{word-spacing:-0.900000px;}
.wsf8{word-spacing:-0.864000px;}
.ws9c{word-spacing:-0.840000px;}
.ws98{word-spacing:-0.780000px;}
.ws39{word-spacing:-0.720000px;}
.wse1{word-spacing:-0.672000px;}
.ws3b{word-spacing:-0.660000px;}
.wsec{word-spacing:-0.624000px;}
.ws44{word-spacing:-0.600000px;}
.wsfe{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.420000px;}
.wsbf{word-spacing:-0.384000px;}
.ws5f{word-spacing:-0.360000px;}
.wsf1{word-spacing:-0.336000px;}
.ws59{word-spacing:-0.300000px;}
.ws47{word-spacing:-0.240000px;}
.wsf5{word-spacing:-0.192000px;}
.ws24{word-spacing:-0.180000px;}
.wsad{word-spacing:-0.144000px;}
.ws88{word-spacing:-0.120000px;}
.ws58{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wsef{word-spacing:0.048000px;}
.ws6a{word-spacing:0.060000px;}
.wsdf{word-spacing:0.096000px;}
.ws22{word-spacing:0.120000px;}
.wsf7{word-spacing:0.144000px;}
.ws1d{word-spacing:0.180000px;}
.ws9{word-spacing:0.225000px;}
.ws1c{word-spacing:0.240000px;}
.ws9d{word-spacing:0.300000px;}
.wsee{word-spacing:0.336000px;}
.ws99{word-spacing:0.360000px;}
.wsac{word-spacing:0.384000px;}
.ws6b{word-spacing:0.420000px;}
.ws43{word-spacing:0.480000px;}
.wsb7{word-spacing:0.528000px;}
.ws86{word-spacing:0.540000px;}
.wse2{word-spacing:0.576000px;}
.wscb{word-spacing:0.600000px;}
.ws5b{word-spacing:0.660000px;}
.ws27{word-spacing:0.720000px;}
.wsc4{word-spacing:0.780000px;}
.ws3a{word-spacing:0.840000px;}
.wsb6{word-spacing:0.864000px;}
.wsb4{word-spacing:0.900000px;}
.ws9a{word-spacing:0.960000px;}
.ws17{word-spacing:1.020000px;}
.wsce{word-spacing:1.080000px;}
.wsab{word-spacing:1.104000px;}
.wsc5{word-spacing:1.140000px;}
.ws4d{word-spacing:1.200000px;}
.ws56{word-spacing:1.260000px;}
.wsd9{word-spacing:1.296000px;}
.ws50{word-spacing:1.320000px;}
.wsed{word-spacing:1.344000px;}
.ws5e{word-spacing:1.380000px;}
.wsdb{word-spacing:1.392000px;}
.wsc2{word-spacing:1.440000px;}
.wsf0{word-spacing:1.488000px;}
.ws87{word-spacing:1.560000px;}
.ws3d{word-spacing:1.620000px;}
.ws77{word-spacing:1.632000px;}
.wse3{word-spacing:1.680000px;}
.wsf3{word-spacing:1.728000px;}
.ws37{word-spacing:1.740000px;}
.wse0{word-spacing:1.776000px;}
.ws69{word-spacing:1.800000px;}
.wsba{word-spacing:1.860000px;}
.wseb{word-spacing:1.872000px;}
.ws23{word-spacing:1.920000px;}
.wsa0{word-spacing:1.980000px;}
.ws1f{word-spacing:2.040000px;}
.wsc6{word-spacing:2.064000px;}
.ws67{word-spacing:2.100000px;}
.ws21{word-spacing:2.160000px;}
.wsbc{word-spacing:2.208000px;}
.ws68{word-spacing:2.220000px;}
.ws52{word-spacing:2.280000px;}
.wsa4{word-spacing:2.340000px;}
.ws19{word-spacing:2.400000px;}
.ws76{word-spacing:2.544000px;}
.ws6e{word-spacing:2.580000px;}
.ws51{word-spacing:2.640000px;}
.wse4{word-spacing:2.688000px;}
.ws66{word-spacing:2.700000px;}
.wsc9{word-spacing:2.760000px;}
.ws95{word-spacing:2.820000px;}
.wsda{word-spacing:2.832000px;}
.wsfb{word-spacing:2.928000px;}
.ws89{word-spacing:2.940000px;}
.ws42{word-spacing:3.000000px;}
.wsa5{word-spacing:3.060000px;}
.wse5{word-spacing:3.072000px;}
.ws3e{word-spacing:3.120000px;}
.ws4e{word-spacing:3.180000px;}
.wsf6{word-spacing:3.216000px;}
.ws1a{word-spacing:3.240000px;}
.wsf2{word-spacing:3.264000px;}
.ws96{word-spacing:3.300000px;}
.wsfa{word-spacing:3.312000px;}
.ws48{word-spacing:3.360000px;}
.ws20{word-spacing:3.420000px;}
.ws13{word-spacing:3.540000px;}
.ws18{word-spacing:3.600000px;}
.ws1e{word-spacing:3.660000px;}
.wsb0{word-spacing:3.696000px;}
.wsa6{word-spacing:3.720000px;}
.ws41{word-spacing:3.780000px;}
.wsdc{word-spacing:3.792000px;}
.ws75{word-spacing:3.840000px;}
.ws4f{word-spacing:3.900000px;}
.ws6f{word-spacing:3.936000px;}
.ws25{word-spacing:3.960000px;}
.ws70{word-spacing:3.984000px;}
.ws57{word-spacing:4.080000px;}
.ws45{word-spacing:4.140000px;}
.ws91{word-spacing:4.200000px;}
.ws16{word-spacing:4.320000px;}
.ws36{word-spacing:4.380000px;}
.ws5c{word-spacing:4.440000px;}
.ws12{word-spacing:4.500000px;}
.ws9b{word-spacing:4.560000px;}
.ws40{word-spacing:4.620000px;}
.ws1b{word-spacing:4.680000px;}
.ws9e{word-spacing:4.740000px;}
.wsc0{word-spacing:4.800000px;}
.ws8d{word-spacing:4.860000px;}
.ws11{word-spacing:4.920000px;}
.wsbe{word-spacing:4.944000px;}
.ws14{word-spacing:4.980000px;}
.wsaf{word-spacing:5.040000px;}
.ws97{word-spacing:5.400000px;}
.wscf{word-spacing:5.460000px;}
.wsd0{word-spacing:5.520000px;}
.wscc{word-spacing:5.640000px;}
.ws4a{word-spacing:6.060000px;}
.ws92{word-spacing:6.780000px;}
.ws46{word-spacing:6.960000px;}
.wsa9{word-spacing:7.800000px;}
.ws2{word-spacing:49.322028px;}
.ws84{word-spacing:200.352000px;}
.ws80{word-spacing:203.808000px;}
.ws81{word-spacing:216.336000px;}
.ws83{word-spacing:353.280000px;}
.ws82{word-spacing:365.280000px;}
._b{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._7{margin-left:-7.620000px;}
._18{margin-left:-6.486000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.528000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.134000px;}
._8{width:1.020000px;}
._9{width:2.220000px;}
._f{width:3.655800px;}
._3{width:4.684200px;}
._a{width:6.300000px;}
._c{width:7.380000px;}
._d{width:8.430000px;}
._17{width:11.526000px;}
._6{width:59.503428px;}
._3e{width:61.056000px;}
._38{width:62.688000px;}
._21{width:64.368000px;}
._3c{width:68.688000px;}
._37{width:78.672000px;}
._28{width:86.688000px;}
._24{width:98.688000px;}
._33{width:110.688000px;}
._45{width:115.392000px;}
._3d{width:120.054000px;}
._32{width:126.672000px;}
._20{width:132.672000px;}
._1b{width:134.688000px;}
._2b{width:144.672000px;}
._1f{width:148.656000px;}
._2c{width:156.672000px;}
._3b{width:158.592000px;}
._27{width:180.576000px;}
._39{width:185.616000px;}
._26{width:190.656000px;}
._29{width:198.960000px;}
._3a{width:201.738000px;}
._23{width:204.054000px;}
._35{width:206.640000px;}
._50{width:223.872000px;}
._10{width:236.352000px;}
._2f{width:238.992000px;}
._2a{width:241.584000px;}
._51{width:265.680000px;}
._4b{width:279.024000px;}
._2e{width:297.840000px;}
._22{width:299.136000px;}
._30{width:318.960000px;}
._14{width:341.280000px;}
._25{width:344.256000px;}
._13{width:346.464000px;}
._11{width:365.280000px;}
._54{width:369.024000px;}
._12{width:377.280000px;}
._1e{width:392.208000px;}
._2d{width:442.848000px;}
._15{width:449.280000px;}
._46{width:458.496000px;}
._53{width:460.992000px;}
._4a{width:463.872000px;}
._1c{width:471.144000px;}
._36{width:475.878000px;}
._34{width:478.080000px;}
._31{width:479.808000px;}
._52{width:482.448000px;}
._42{width:499.896000px;}
._1d{width:524.496000px;}
._4d{width:525.600000px;}
._47{width:540.960000px;}
._41{width:543.984000px;}
._16{width:545.280000px;}
._19{width:553.008000px;}
._3f{width:557.286000px;}
._43{width:571.776000px;}
._49{width:576.960000px;}
._4f{width:579.936000px;}
._48{width:582.432000px;}
._4c{width:585.120000px;}
._4e{width:587.760000px;}
._1a{width:599.862000px;}
._44{width:668.928000px;}
._40{width:714.432000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.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;}
.y30{bottom:47.777250px;}
.y172{bottom:83.212500px;}
.y13c{bottom:83.343150px;}
.yf4{bottom:83.377950px;}
.y123{bottom:83.554950px;}
.y1f2{bottom:83.635350px;}
.y73{bottom:83.770350px;}
.y65{bottom:83.772600px;}
.ydf{bottom:83.912100px;}
.yab{bottom:83.920350px;}
.y195{bottom:83.972400px;}
.y12f{bottom:84.051300px;}
.y1c3{bottom:84.062100px;}
.y129{bottom:84.063000px;}
.y16d{bottom:84.523350px;}
.y179{bottom:84.775950px;}
.y120{bottom:86.312100px;}
.y2d{bottom:88.029450px;}
.y1fa{bottom:89.121900px;}
.y190{bottom:89.379150px;}
.y152{bottom:89.686500px;}
.y100{bottom:92.454000px;}
.y23b{bottom:95.263500px;}
.y171{bottom:98.956500px;}
.y13b{bottom:99.087150px;}
.yf3{bottom:99.121950px;}
.y122{bottom:99.298950px;}
.y194{bottom:99.716400px;}
.y12e{bottom:99.795300px;}
.y128{bottom:99.807000px;}
.y16c{bottom:100.267350px;}
.y178{bottom:100.519950px;}
.y1f1{bottom:101.635350px;}
.y72{bottom:101.770350px;}
.y64{bottom:101.772600px;}
.yde{bottom:101.912100px;}
.yaa{bottom:101.920350px;}
.y1c2{bottom:102.062100px;}
.y2c{bottom:103.023000px;}
.y1f9{bottom:104.121900px;}
.y11f{bottom:104.312100px;}
.y18f{bottom:105.879150px;}
.y151{bottom:106.186500px;}
.yff{bottom:108.702000px;}
.y23a{bottom:110.263500px;}
.y170{bottom:114.700500px;}
.y13a{bottom:114.831150px;}
.yf2{bottom:114.865950px;}
.y121{bottom:115.042950px;}
.y193{bottom:115.460400px;}
.y12d{bottom:115.539300px;}
.y127{bottom:115.551000px;}
.y177{bottom:116.263950px;}
.y1f0{bottom:119.635350px;}
.y71{bottom:119.770350px;}
.y63{bottom:119.772600px;}
.ydd{bottom:119.912100px;}
.ya9{bottom:119.920350px;}
.y1c1{bottom:120.062100px;}
.y11e{bottom:122.312100px;}
.yfe{bottom:124.950000px;}
.y239{bottom:125.263500px;}
.y16f{bottom:130.444500px;}
.y139{bottom:130.575150px;}
.yf1{bottom:130.609950px;}
.y12c{bottom:131.283300px;}
.y126{bottom:131.295000px;}
.y18e{bottom:131.391150px;}
.y150{bottom:131.698500px;}
.y176{bottom:132.007950px;}
.y1f8{bottom:137.230350px;}
.y1ef{bottom:137.635350px;}
.y70{bottom:137.770350px;}
.y62{bottom:137.772600px;}
.ydc{bottom:137.912100px;}
.ya8{bottom:137.920350px;}
.y1c0{bottom:138.062100px;}
.y238{bottom:140.263500px;}
.y11d{bottom:140.312100px;}
.yfd{bottom:141.198000px;}
.y16e{bottom:146.188500px;}
.y138{bottom:146.319150px;}
.yf0{bottom:146.353950px;}
.y12b{bottom:147.027300px;}
.y125{bottom:147.039000px;}
.y18d{bottom:147.639150px;}
.y175{bottom:147.751950px;}
.y14f{bottom:147.946500px;}
.y237{bottom:155.263500px;}
.y1ee{bottom:155.635350px;}
.y6f{bottom:155.770350px;}
.y61{bottom:155.772600px;}
.ydb{bottom:155.912100px;}
.ya7{bottom:155.920350px;}
.y1bf{bottom:156.062100px;}
.y11c{bottom:158.312100px;}
.y137{bottom:162.063150px;}
.yef{bottom:162.097950px;}
.y12a{bottom:162.771300px;}
.y174{bottom:163.495950px;}
.y18c{bottom:163.887150px;}
.y14e{bottom:164.194500px;}
.yfc{bottom:170.202000px;}
.y236{bottom:170.263500px;}
.y1ed{bottom:173.635350px;}
.y6e{bottom:173.770350px;}
.y60{bottom:173.772600px;}
.yda{bottom:173.912100px;}
.ya6{bottom:173.920350px;}
.y1be{bottom:174.062100px;}
.y11b{bottom:176.312100px;}
.y136{bottom:177.807150px;}
.y173{bottom:179.239950px;}
.y18b{bottom:180.135150px;}
.y14d{bottom:180.442500px;}
.y2b{bottom:184.564200px;}
.y235{bottom:185.263500px;}
.yfa{bottom:186.702000px;}
.y1ec{bottom:191.635350px;}
.y6d{bottom:191.770350px;}
.y5f{bottom:191.772600px;}
.yd9{bottom:191.912100px;}
.ya5{bottom:191.920350px;}
.y1bd{bottom:192.062100px;}
.y135{bottom:193.551150px;}
.y11a{bottom:194.312100px;}
.y18a{bottom:196.383150px;}
.y14c{bottom:196.690500px;}
.y234{bottom:200.263500px;}
.yfb{bottom:203.202000px;}
.y134{bottom:209.295150px;}
.y1f7{bottom:209.365350px;}
.y1eb{bottom:209.635350px;}
.y6c{bottom:209.770350px;}
.y5e{bottom:209.772600px;}
.yd8{bottom:209.912100px;}
.ya4{bottom:209.920350px;}
.y1bc{bottom:210.062100px;}
.y2a{bottom:211.909200px;}
.y119{bottom:212.312100px;}
.y189{bottom:212.631150px;}
.y14b{bottom:212.938500px;}
.y233{bottom:215.263500px;}
.y133{bottom:225.039150px;}
.y1ea{bottom:227.635350px;}
.y6b{bottom:227.770350px;}
.y5d{bottom:227.772600px;}
.yd7{bottom:227.912100px;}
.ya3{bottom:227.920350px;}
.y1bb{bottom:228.062100px;}
.y188{bottom:228.879150px;}
.y14a{bottom:229.186500px;}
.y29{bottom:229.909200px;}
.y232{bottom:230.263500px;}
.y118{bottom:230.312100px;}
.yf9{bottom:232.206000px;}
.y132{bottom:240.783150px;}
.y187{bottom:245.127150px;}
.y231{bottom:245.263500px;}
.y1f6{bottom:245.365350px;}
.y149{bottom:245.434500px;}
.y1e9{bottom:245.635350px;}
.y6a{bottom:245.770350px;}
.y5c{bottom:245.772600px;}
.yd6{bottom:245.912100px;}
.ya2{bottom:245.920350px;}
.y1ba{bottom:246.062100px;}
.y28{bottom:247.909200px;}
.y117{bottom:248.312100px;}
.y131{bottom:256.527150px;}
.y230{bottom:260.263500px;}
.y186{bottom:261.375150px;}
.y148{bottom:261.682500px;}
.y1e8{bottom:263.635350px;}
.y69{bottom:263.770350px;}
.y5b{bottom:263.772600px;}
.yd5{bottom:263.912100px;}
.y1b9{bottom:264.062100px;}
.yf8{bottom:264.595350px;}
.y27{bottom:265.909200px;}
.y116{bottom:266.312100px;}
.y22f{bottom:275.263500px;}
.y185{bottom:277.623150px;}
.y147{bottom:277.930500px;}
.ya1{bottom:281.515350px;}
.y1e7{bottom:281.635350px;}
.y68{bottom:281.770350px;}
.y5a{bottom:281.772600px;}
.yd4{bottom:281.912100px;}
.y1b8{bottom:282.062100px;}
.y26{bottom:283.909200px;}
.yf7{bottom:284.095350px;}
.y115{bottom:284.312100px;}
.y22e{bottom:290.263500px;}
.y184{bottom:293.871150px;}
.y146{bottom:294.178500px;}
.y1e6{bottom:299.635350px;}
.y9e{bottom:299.770350px;}
.y59{bottom:299.772600px;}
.yd3{bottom:299.912100px;}
.y1b7{bottom:300.062100px;}
.y25{bottom:301.909200px;}
.y114{bottom:302.312100px;}
.yf6{bottom:303.595350px;}
.y22d{bottom:305.263500px;}
.y145{bottom:310.426500px;}
.y1e5{bottom:317.635350px;}
.y9d{bottom:317.770350px;}
.y58{bottom:317.772600px;}
.yd2{bottom:317.912100px;}
.y1b6{bottom:318.062100px;}
.y24{bottom:319.909200px;}
.y22c{bottom:320.263500px;}
.y113{bottom:320.312100px;}
.y183{bottom:325.383150px;}
.y144{bottom:326.674500px;}
.y22b{bottom:335.263500px;}
.y1e4{bottom:335.635350px;}
.y9c{bottom:335.770350px;}
.y57{bottom:335.772600px;}
.yd1{bottom:335.912100px;}
.y1b5{bottom:336.062100px;}
.y23{bottom:337.909200px;}
.y112{bottom:338.312100px;}
.y143{bottom:342.922500px;}
.y22a{bottom:350.263500px;}
.y1f5{bottom:353.365350px;}
.y1e3{bottom:353.635350px;}
.y9b{bottom:353.770350px;}
.y56{bottom:353.772600px;}
.yd0{bottom:353.912100px;}
.y1b4{bottom:354.062100px;}
.y22{bottom:355.909200px;}
.y111{bottom:356.312100px;}
.y142{bottom:359.170500px;}
.y182{bottom:360.278250px;}
.y229{bottom:365.263500px;}
.y1e2{bottom:371.635350px;}
.y9a{bottom:371.770350px;}
.y55{bottom:371.772600px;}
.ycf{bottom:371.912100px;}
.y1b3{bottom:372.062100px;}
.y21{bottom:373.909200px;}
.y110{bottom:374.312100px;}
.y181{bottom:379.778250px;}
.y228{bottom:380.263500px;}
.y141{bottom:388.174500px;}
.yee{bottom:389.263500px;}
.ye1{bottom:389.365350px;}
.y1e1{bottom:389.635350px;}
.y99{bottom:389.770350px;}
.y54{bottom:389.772600px;}
.yce{bottom:389.912100px;}
.y1b2{bottom:390.062100px;}
.y20{bottom:391.909200px;}
.y10f{bottom:392.312100px;}
.y227{bottom:395.263500px;}
.yed{bottom:404.263500px;}
.y1f4{bottom:407.365350px;}
.y1e0{bottom:407.635350px;}
.y98{bottom:407.770350px;}
.y53{bottom:407.772600px;}
.ycd{bottom:407.912100px;}
.y1b1{bottom:408.062100px;}
.y1f{bottom:409.909200px;}
.y226{bottom:410.263500px;}
.y10e{bottom:410.312100px;}
.y140{bottom:417.178500px;}
.yec{bottom:419.263500px;}
.ye0{bottom:425.230350px;}
.y225{bottom:425.263500px;}
.y1df{bottom:425.635350px;}
.y97{bottom:425.770350px;}
.y52{bottom:425.772600px;}
.ycc{bottom:425.912100px;}
.y1e{bottom:427.909200px;}
.y10d{bottom:428.312100px;}
.y180{bottom:430.167900px;}
.yeb{bottom:434.263500px;}
.y224{bottom:440.263500px;}
.y1de{bottom:443.635350px;}
.y1b0{bottom:443.657100px;}
.y96{bottom:443.770350px;}
.y51{bottom:443.772600px;}
.ycb{bottom:443.935350px;}
.y1d{bottom:445.909200px;}
.y17f{bottom:445.911900px;}
.y10c{bottom:446.312100px;}
.yea{bottom:449.263500px;}
.y13f{bottom:449.569650px;}
.y223{bottom:455.263500px;}
.y1dd{bottom:461.635350px;}
.y17e{bottom:461.655900px;}
.y1af{bottom:461.657100px;}
.y95{bottom:461.770350px;}
.y50{bottom:461.772600px;}
.yca{bottom:461.935350px;}
.y1c{bottom:463.909200px;}
.ye9{bottom:464.263500px;}
.y10b{bottom:464.312100px;}
.y13e{bottom:469.069650px;}
.y222{bottom:470.263500px;}
.y17d{bottom:477.399900px;}
.y1dc{bottom:479.230350px;}
.y94{bottom:479.770350px;}
.y4f{bottom:479.772600px;}
.y1b{bottom:481.909200px;}
.y221{bottom:485.263500px;}
.y17c{bottom:493.143900px;}
.ye8{bottom:497.365350px;}
.yc9{bottom:497.530350px;}
.y93{bottom:497.770350px;}
.y4e{bottom:497.772600px;}
.y1ae{bottom:497.912100px;}
.y10a{bottom:499.805250px;}
.y1a{bottom:499.909200px;}
.y220{bottom:500.263500px;}
.y17b{bottom:508.887900px;}
.y109{bottom:514.805250px;}
.y21f{bottom:515.263500px;}
.ye7{bottom:515.365350px;}
.y1db{bottom:515.635350px;}
.y92{bottom:515.770350px;}
.y4d{bottom:515.772600px;}
.y1ad{bottom:515.912100px;}
.y155{bottom:517.210500px;}
.y19{bottom:517.909200px;}
.y17a{bottom:524.631900px;}
.y108{bottom:529.805250px;}
.y21e{bottom:530.263500px;}
.y154{bottom:532.954500px;}
.ye6{bottom:533.365350px;}
.y1da{bottom:533.635350px;}
.y91{bottom:533.770350px;}
.y4c{bottom:533.772600px;}
.yc8{bottom:533.785350px;}
.y1ac{bottom:533.912100px;}
.y18{bottom:535.909200px;}
.y107{bottom:544.805250px;}
.y21d{bottom:545.263500px;}
.y153{bottom:548.698500px;}
.ye5{bottom:551.365350px;}
.y1d9{bottom:551.635350px;}
.y90{bottom:551.770350px;}
.y4b{bottom:551.772600px;}
.yc7{bottom:551.785350px;}
.y1ab{bottom:551.912100px;}
.y17{bottom:553.909200px;}
.y106{bottom:559.805250px;}
.y21c{bottom:560.263500px;}
.ye4{bottom:569.365350px;}
.y1d8{bottom:569.635350px;}
.y8f{bottom:569.770350px;}
.y4a{bottom:569.772600px;}
.yc6{bottom:569.785350px;}
.y1aa{bottom:569.912100px;}
.y16{bottom:571.909200px;}
.y105{bottom:574.805250px;}
.y21b{bottom:575.263500px;}
.ye3{bottom:587.365350px;}
.y1d7{bottom:587.635350px;}
.y8e{bottom:587.770350px;}
.y49{bottom:587.772600px;}
.yc5{bottom:587.785350px;}
.y1a9{bottom:587.912100px;}
.y21a{bottom:590.263500px;}
.y219{bottom:605.263500px;}
.y1d6{bottom:605.635350px;}
.y8d{bottom:605.770350px;}
.y48{bottom:605.772600px;}
.yc4{bottom:605.785350px;}
.y1a8{bottom:605.912100px;}
.y104{bottom:605.920350px;}
.y15{bottom:617.067300px;}
.y218{bottom:620.263500px;}
.ye2{bottom:623.230350px;}
.ya0{bottom:623.365350px;}
.y103{bottom:623.515350px;}
.y1d5{bottom:623.635350px;}
.y8c{bottom:623.770350px;}
.y47{bottom:623.772600px;}
.yc3{bottom:623.785350px;}
.y1a7{bottom:623.912100px;}
.y14{bottom:629.518050px;}
.y217{bottom:635.263500px;}
.y102{bottom:641.515350px;}
.y1d4{bottom:641.635350px;}
.y8b{bottom:641.770350px;}
.y46{bottom:641.772600px;}
.yc2{bottom:641.785350px;}
.y1a6{bottom:641.912100px;}
.y216{bottom:650.263500px;}
.y9f{bottom:659.230350px;}
.y1d3{bottom:659.635350px;}
.y8a{bottom:659.770350px;}
.y45{bottom:659.772600px;}
.yc1{bottom:659.785350px;}
.y1a5{bottom:659.912100px;}
.y13{bottom:661.233600px;}
.y215{bottom:665.263500px;}
.y1d2{bottom:677.635350px;}
.y89{bottom:677.770350px;}
.y44{bottom:677.772600px;}
.yc0{bottom:677.785350px;}
.y1a4{bottom:677.920350px;}
.y12{bottom:680.158800px;}
.y214{bottom:680.263500px;}
.y11{bottom:688.233600px;}
.y213{bottom:695.263500px;}
.y1f3{bottom:695.365350px;}
.y1d1{bottom:695.635350px;}
.y88{bottom:695.770350px;}
.y43{bottom:695.772600px;}
.ybf{bottom:695.785350px;}
.y1a3{bottom:695.920350px;}
.y10{bottom:707.158800px;}
.y212{bottom:710.263500px;}
.y1d0{bottom:713.635350px;}
.y87{bottom:713.770350px;}
.y42{bottom:713.772600px;}
.ybe{bottom:713.785350px;}
.y1a2{bottom:713.920350px;}
.yf{bottom:715.233600px;}
.y211{bottom:725.263500px;}
.y1cf{bottom:731.635350px;}
.y86{bottom:731.770350px;}
.y41{bottom:731.772600px;}
.ybd{bottom:731.785350px;}
.y1a1{bottom:731.920350px;}
.ye{bottom:734.158800px;}
.y210{bottom:740.263500px;}
.yd{bottom:742.233600px;}
.y1ce{bottom:749.635350px;}
.y85{bottom:749.770350px;}
.y40{bottom:749.772600px;}
.ybc{bottom:749.785350px;}
.y1a0{bottom:749.920350px;}
.y20f{bottom:755.263500px;}
.yc{bottom:761.158800px;}
.y1cd{bottom:767.635350px;}
.y84{bottom:767.770350px;}
.y3f{bottom:767.772600px;}
.ybb{bottom:767.785350px;}
.y19f{bottom:767.920350px;}
.yb{bottom:769.233600px;}
.y20e{bottom:770.263500px;}
.ya{bottom:782.733600px;}
.y20d{bottom:785.263500px;}
.y1cc{bottom:785.635350px;}
.y83{bottom:785.770350px;}
.y3e{bottom:785.772600px;}
.yba{bottom:785.785350px;}
.y19e{bottom:785.920350px;}
.y15d{bottom:793.112100px;}
.y20c{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y1cb{bottom:803.635350px;}
.y82{bottom:803.770350px;}
.y3d{bottom:803.772600px;}
.y16b{bottom:803.777100px;}
.yb9{bottom:803.785350px;}
.y19d{bottom:803.920350px;}
.y15c{bottom:811.112100px;}
.y20b{bottom:815.263500px;}
.y192{bottom:821.365350px;}
.y1ca{bottom:821.635350px;}
.y81{bottom:821.770350px;}
.y3c{bottom:821.772600px;}
.y16a{bottom:821.777100px;}
.yb8{bottom:821.785350px;}
.y19c{bottom:821.920350px;}
.y20a{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y1c9{bottom:839.635350px;}
.y80{bottom:839.770350px;}
.y3b{bottom:839.772600px;}
.y169{bottom:839.777100px;}
.yb7{bottom:839.785350px;}
.y19b{bottom:839.920350px;}
.y209{bottom:845.263500px;}
.y15b{bottom:845.952600px;}
.y7{bottom:851.380950px;}
.y191{bottom:857.230350px;}
.y1c8{bottom:857.635350px;}
.y7f{bottom:857.770350px;}
.y3a{bottom:857.772600px;}
.y168{bottom:857.777100px;}
.yb6{bottom:857.785350px;}
.y19a{bottom:857.920350px;}
.y208{bottom:860.263500px;}
.y15a{bottom:861.558600px;}
.y207{bottom:875.263500px;}
.y1c7{bottom:875.635350px;}
.y7e{bottom:875.770350px;}
.y39{bottom:875.772600px;}
.y167{bottom:875.777100px;}
.yb5{bottom:875.785350px;}
.y159{bottom:875.920350px;}
.y206{bottom:890.263500px;}
.y158{bottom:893.515350px;}
.y1c6{bottom:893.635350px;}
.y7d{bottom:893.770350px;}
.y38{bottom:893.772600px;}
.y166{bottom:893.777100px;}
.yb4{bottom:893.785350px;}
.y199{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y205{bottom:905.263500px;}
.y157{bottom:911.515350px;}
.y1c5{bottom:911.635350px;}
.y7c{bottom:911.770350px;}
.y37{bottom:911.772600px;}
.y165{bottom:911.777100px;}
.yb3{bottom:911.785350px;}
.y204{bottom:920.263500px;}
.y198{bottom:929.515350px;}
.y7b{bottom:929.770350px;}
.y36{bottom:929.772600px;}
.y164{bottom:929.777100px;}
.yb2{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y203{bottom:935.263500px;}
.y1c4{bottom:947.230350px;}
.y197{bottom:947.515350px;}
.y7a{bottom:947.770350px;}
.y35{bottom:947.772600px;}
.y163{bottom:947.777100px;}
.yb1{bottom:947.785350px;}
.y202{bottom:950.263500px;}
.y201{bottom:965.263500px;}
.y79{bottom:965.770350px;}
.y34{bottom:965.772600px;}
.y162{bottom:965.777100px;}
.yb0{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y200{bottom:980.263500px;}
.y78{bottom:983.770350px;}
.y33{bottom:983.772600px;}
.y161{bottom:983.777100px;}
.yaf{bottom:983.785350px;}
.y1ff{bottom:995.263500px;}
.y77{bottom:1001.770350px;}
.y32{bottom:1001.772600px;}
.y160{bottom:1001.777100px;}
.yae{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1fe{bottom:1010.263500px;}
.y76{bottom:1019.770350px;}
.y67{bottom:1019.772600px;}
.y15f{bottom:1019.777100px;}
.yad{bottom:1019.785350px;}
.y1fd{bottom:1025.263500px;}
.y31{bottom:1037.367600px;}
.y75{bottom:1037.770350px;}
.y66{bottom:1037.772600px;}
.y15e{bottom:1037.777100px;}
.yac{bottom:1037.785350px;}
.y1fc{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1fb{bottom:1132.413900px;}
.y74{bottom:1132.418700px;}
.y13d{bottom:1132.421700px;}
.y23c{bottom:1132.423500px;}
.y124{bottom:1132.426950px;}
.y101{bottom:1132.434000px;}
.y196{bottom:1132.436400px;}
.y130{bottom:1132.443300px;}
.yf5{bottom:1132.453950px;}
.y156{bottom:1132.486500px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.he{height:32.783203px;}
.h8{height:32.805176px;}
.hd{height:32.815976px;}
.h14{height:33.328125px;}
.h12{height:33.351562px;}
.h15{height:34.945312px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h16{height:37.520508px;}
.h13{height:41.660156px;}
.h11{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.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;}
.x7{left:76.535400px;}
.x2d{left:78.656250px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x1c{left:99.919350px;}
.x3a{left:102.047250px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x34{left:114.135150px;}
.x39{left:123.307050px;}
.x3{left:125.427900px;}
.xe{left:131.815350px;}
.x12{left:144.725400px;}
.x8{left:190.553550px;}
.x32{left:197.984250px;}
.x33{left:205.135350px;}
.x35{left:219.556650px;}
.x27{left:224.527350px;}
.x31{left:227.084250px;}
.x2e{left:228.368250px;}
.x30{left:230.096250px;}
.x13{left:232.360200px;}
.x2f{left:242.852250px;}
.x36{left:269.997300px;}
.x1f{left:294.499350px;}
.x1d{left:300.943350px;}
.x1e{left:316.615350px;}
.x2c{left:400.724250px;}
.x21{left:418.375350px;}
.x20{left:441.259350px;}
.x6{left:455.041500px;}
.xa{left:457.103550px;}
.x1b{left:460.279350px;}
.xf{left:478.360350px;}
.x2a{left:482.598600px;}
.xb{left:491.123550px;}
.x16{left:493.286400px;}
.x18{left:498.806400px;}
.x1a{left:503.858400px;}
.x10{left:512.373600px;}
.x19{left:522.551400px;}
.x15{left:540.491400px;}
.x17{left:545.201400px;}
.x38{left:574.805400px;}
.x37{left:579.410400px;}
.x22{left:581.575350px;}
.x29{left:593.166600px;}
.x23{left:597.247350px;}
.x14{left:604.691400px;}
.x28{left:606.906600px;}
.xd{left:663.492300px;}
.x2{left:693.365400px;}
.x26{left:711.559350px;}
.x24{left:721.555350px;}
.xc{left:728.391600px;}
.x25{left:737.563350px;}
.x2b{left:743.868150px;}
.x11{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:10.397333pt;}
.v1{vertical-align:27.005867pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls68{letter-spacing:-0.298667pt;}
.ls75{letter-spacing:-0.266667pt;}
.ls9c{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.200000pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls95{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.106667pt;}
.ls94{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls60{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003147pt;}
.ls2{letter-spacing:0.005045pt;}
.ls79{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.053333pt;}
.ls50{letter-spacing:0.085333pt;}
.ls40{letter-spacing:0.106667pt;}
.ls67{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.170667pt;}
.ls3d{letter-spacing:0.213333pt;}
.ls7c{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.298667pt;}
.ls18{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.341333pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls72{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls6d{letter-spacing:0.469333pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls5e{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.533333pt;}
.ls6a{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.586667pt;}
.ls4c{letter-spacing:0.597333pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls8e{letter-spacing:0.682667pt;}
.ls16{letter-spacing:0.693333pt;}
.ls96{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.746667pt;}
.ls93{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.810667pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls7a{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls97{letter-spacing:0.938667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls6e{letter-spacing:0.981333pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls6f{letter-spacing:1.024000pt;}
.ls31{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:1.120000pt;}
.ls9b{letter-spacing:1.152000pt;}
.ls39{letter-spacing:1.173333pt;}
.ls8f{letter-spacing:1.194667pt;}
.ls15{letter-spacing:1.226667pt;}
.ls83{letter-spacing:1.237333pt;}
.lsd{letter-spacing:1.280000pt;}
.ls87{letter-spacing:1.322667pt;}
.ls10{letter-spacing:1.333333pt;}
.ls9a{letter-spacing:1.365333pt;}
.ls12{letter-spacing:1.386667pt;}
.ls90{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.440000pt;}
.ls8c{letter-spacing:1.450667pt;}
.ls1b{letter-spacing:1.493333pt;}
.ls84{letter-spacing:1.536000pt;}
.ls29{letter-spacing:1.546667pt;}
.ls7b{letter-spacing:1.578667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls8b{letter-spacing:1.621333pt;}
.ls26{letter-spacing:1.653333pt;}
.ls8d{letter-spacing:1.664000pt;}
.ls20{letter-spacing:1.706667pt;}
.ls99{letter-spacing:1.749333pt;}
.ls3e{letter-spacing:1.760000pt;}
.ls88{letter-spacing:1.792000pt;}
.ls38{letter-spacing:1.813333pt;}
.ls86{letter-spacing:1.834667pt;}
.ls2c{letter-spacing:1.866667pt;}
.ls36{letter-spacing:1.920000pt;}
.ls92{letter-spacing:1.962667pt;}
.ls3c{letter-spacing:1.973333pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls43{letter-spacing:2.080000pt;}
.ls5f{letter-spacing:2.090667pt;}
.ls3a{letter-spacing:2.133333pt;}
.ls85{letter-spacing:2.176000pt;}
.ls13{letter-spacing:2.186667pt;}
.ls89{letter-spacing:2.218667pt;}
.ls27{letter-spacing:2.240000pt;}
.ls14{letter-spacing:2.293333pt;}
.ls8a{letter-spacing:2.304000pt;}
.ls48{letter-spacing:2.346667pt;}
.ls42{letter-spacing:2.400000pt;}
.ls2d{letter-spacing:2.453333pt;}
.ls4a{letter-spacing:2.506667pt;}
.ls24{letter-spacing:2.560000pt;}
.ls61{letter-spacing:2.613333pt;}
.lsc{letter-spacing:2.666667pt;}
.ls98{letter-spacing:2.688000pt;}
.ls5b{letter-spacing:2.720000pt;}
.ls17{letter-spacing:2.773333pt;}
.lsb{letter-spacing:2.826667pt;}
.ls3f{letter-spacing:2.880000pt;}
.ls52{letter-spacing:2.933333pt;}
.ls55{letter-spacing:2.986667pt;}
.ls2a{letter-spacing:3.040000pt;}
.ls41{letter-spacing:3.093333pt;}
.ls4d{letter-spacing:3.146667pt;}
.ls23{letter-spacing:3.200000pt;}
.ls30{letter-spacing:3.253333pt;}
.ls3b{letter-spacing:3.306667pt;}
.ls54{letter-spacing:3.360000pt;}
.ls44{letter-spacing:3.413333pt;}
.ls4e{letter-spacing:3.466667pt;}
.ls80{letter-spacing:3.520000pt;}
.ls91{letter-spacing:3.584000pt;}
.ls56{letter-spacing:3.626667pt;}
.ls5a{letter-spacing:3.680000pt;}
.ls74{letter-spacing:3.733333pt;}
.ls53{letter-spacing:3.840000pt;}
.ls34{letter-spacing:3.946667pt;}
.ls9d{letter-spacing:4.106667pt;}
.ls76{letter-spacing:4.160000pt;}
.ls35{letter-spacing:4.213333pt;}
.ls8{letter-spacing:4.266667pt;}
.ls57{letter-spacing:4.426667pt;}
.ls65{letter-spacing:4.533333pt;}
.ls51{letter-spacing:4.586667pt;}
.ls46{letter-spacing:4.746667pt;}
.ls73{letter-spacing:4.800000pt;}
.ls62{letter-spacing:4.853333pt;}
.ls5c{letter-spacing:5.013333pt;}
.ls33{letter-spacing:5.066667pt;}
.ls7f{letter-spacing:5.120000pt;}
.ls59{letter-spacing:5.173333pt;}
.ls7e{letter-spacing:5.226667pt;}
.ls47{letter-spacing:5.386667pt;}
.ls5d{letter-spacing:5.440000pt;}
.ls49{letter-spacing:5.546667pt;}
.ls69{letter-spacing:5.600000pt;}
.ls58{letter-spacing:5.706667pt;}
.ls66{letter-spacing:5.760000pt;}
.ls9e{letter-spacing:5.866667pt;}
.ls63{letter-spacing:6.129600pt;}
.ls82{letter-spacing:6.400000pt;}
.ls64{letter-spacing:6.613333pt;}
.ls81{letter-spacing:6.773333pt;}
.ls77{letter-spacing:8.586667pt;}
.ls0{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ls71{letter-spacing:79.744000pt;}
.ls70{letter-spacing:119.296000pt;}
.ls7d{letter-spacing:125.098667pt;}
.ws0{word-spacing:-31.284267pt;}
.wscd{word-spacing:-19.946667pt;}
.wsa8{word-spacing:-17.866667pt;}
.ws2b{word-spacing:-17.546667pt;}
.wsb8{word-spacing:-17.493333pt;}
.ws7a{word-spacing:-17.173333pt;}
.ws7e{word-spacing:-16.640000pt;}
.ws29{word-spacing:-16.586667pt;}
.ws7c{word-spacing:-16.320000pt;}
.ws33{word-spacing:-16.213333pt;}
.wse{word-spacing:-16.106667pt;}
.wsa7{word-spacing:-15.893333pt;}
.ws9f{word-spacing:-15.840000pt;}
.ws62{word-spacing:-15.786667pt;}
.ws7d{word-spacing:-15.680000pt;}
.ws64{word-spacing:-15.573333pt;}
.ws2d{word-spacing:-15.466667pt;}
.ws79{word-spacing:-15.413333pt;}
.wsa1{word-spacing:-15.360000pt;}
.ws55{word-spacing:-15.306667pt;}
.ws31{word-spacing:-15.093333pt;}
.ws8e{word-spacing:-14.986667pt;}
.ws7b{word-spacing:-14.933333pt;}
.ws32{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws30{word-spacing:-14.773333pt;}
.ws90{word-spacing:-14.720000pt;}
.ws54{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.613333pt;}
.wsb3{word-spacing:-14.560000pt;}
.wsc7{word-spacing:-14.506667pt;}
.wsa2{word-spacing:-14.453333pt;}
.wsbd{word-spacing:-14.400000pt;}
.ws2c{word-spacing:-14.346667pt;}
.ws34{word-spacing:-14.293333pt;}
.ws2f{word-spacing:-14.240000pt;}
.ws8f{word-spacing:-14.186667pt;}
.ws53{word-spacing:-14.133333pt;}
.ws7f{word-spacing:-14.080000pt;}
.wsc8{word-spacing:-13.973333pt;}
.wsfc{word-spacing:-13.866667pt;}
.ws2a{word-spacing:-13.813333pt;}
.wsc{word-spacing:-13.760000pt;}
.ws10{word-spacing:-13.706667pt;}
.wsa{word-spacing:-13.653333pt;}
.ws2e{word-spacing:-13.600000pt;}
.ws35{word-spacing:-13.546667pt;}
.wsb{word-spacing:-13.493333pt;}
.ws63{word-spacing:-13.386667pt;}
.wsf{word-spacing:-13.333333pt;}
.ws61{word-spacing:-13.280000pt;}
.ws78{word-spacing:-13.226667pt;}
.wsd4{word-spacing:-12.842667pt;}
.wse8{word-spacing:-12.117333pt;}
.wsb1{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.861333pt;}
.wsd8{word-spacing:-11.306667pt;}
.wse9{word-spacing:-11.264000pt;}
.wse7{word-spacing:-11.221333pt;}
.wsd2{word-spacing:-11.093333pt;}
.wsd3{word-spacing:-11.008000pt;}
.wsd6{word-spacing:-10.965333pt;}
.ws4{word-spacing:-10.920000pt;}
.ws65{word-spacing:-10.837333pt;}
.wsea{word-spacing:-10.794667pt;}
.wsb5{word-spacing:-10.666667pt;}
.wsd5{word-spacing:-10.624000pt;}
.wsd7{word-spacing:-10.453333pt;}
.ws1{word-spacing:-9.076144pt;}
.ws60{word-spacing:-7.773333pt;}
.wsc1{word-spacing:-5.226667pt;}
.wsca{word-spacing:-5.120000pt;}
.ws94{word-spacing:-5.013333pt;}
.ws8{word-spacing:-4.163733pt;}
.ws73{word-spacing:-3.413333pt;}
.ws8b{word-spacing:-3.306667pt;}
.ws74{word-spacing:-3.146667pt;}
.wsb9{word-spacing:-3.093333pt;}
.ws4c{word-spacing:-3.040000pt;}
.ws49{word-spacing:-2.880000pt;}
.ws85{word-spacing:-2.773333pt;}
.wsc3{word-spacing:-2.720000pt;}
.ws6c{word-spacing:-2.666667pt;}
.ws7{word-spacing:-2.565333pt;}
.wsd1{word-spacing:-2.400000pt;}
.wsdd{word-spacing:-2.346667pt;}
.ws6d{word-spacing:-2.240000pt;}
.wsde{word-spacing:-2.218667pt;}
.ws3f{word-spacing:-2.133333pt;}
.wsb2{word-spacing:-2.080000pt;}
.wsa3{word-spacing:-2.026667pt;}
.wsf4{word-spacing:-2.005333pt;}
.ws5a{word-spacing:-1.973333pt;}
.ws8c{word-spacing:-1.920000pt;}
.ws71{word-spacing:-1.866667pt;}
.ws3c{word-spacing:-1.813333pt;}
.ws93{word-spacing:-1.653333pt;}
.ws8a{word-spacing:-1.600000pt;}
.wsaa{word-spacing:-1.546667pt;}
.wse6{word-spacing:-1.450667pt;}
.wsfd{word-spacing:-1.440000pt;}
.ws26{word-spacing:-1.280000pt;}
.wsf9{word-spacing:-1.194667pt;}
.wsae{word-spacing:-1.173333pt;}
.wsbb{word-spacing:-1.120000pt;}
.ws4b{word-spacing:-1.013333pt;}
.ws15{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.906667pt;}
.ws38{word-spacing:-0.800000pt;}
.wsf8{word-spacing:-0.768000pt;}
.ws9c{word-spacing:-0.746667pt;}
.ws98{word-spacing:-0.693333pt;}
.ws39{word-spacing:-0.640000pt;}
.wse1{word-spacing:-0.597333pt;}
.ws3b{word-spacing:-0.586667pt;}
.wsec{word-spacing:-0.554667pt;}
.ws44{word-spacing:-0.533333pt;}
.wsfe{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.373333pt;}
.wsbf{word-spacing:-0.341333pt;}
.ws5f{word-spacing:-0.320000pt;}
.wsf1{word-spacing:-0.298667pt;}
.ws59{word-spacing:-0.266667pt;}
.ws47{word-spacing:-0.213333pt;}
.wsf5{word-spacing:-0.170667pt;}
.ws24{word-spacing:-0.160000pt;}
.wsad{word-spacing:-0.128000pt;}
.ws88{word-spacing:-0.106667pt;}
.ws58{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wsef{word-spacing:0.042667pt;}
.ws6a{word-spacing:0.053333pt;}
.wsdf{word-spacing:0.085333pt;}
.ws22{word-spacing:0.106667pt;}
.wsf7{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.160000pt;}
.ws9{word-spacing:0.200000pt;}
.ws1c{word-spacing:0.213333pt;}
.ws9d{word-spacing:0.266667pt;}
.wsee{word-spacing:0.298667pt;}
.ws99{word-spacing:0.320000pt;}
.wsac{word-spacing:0.341333pt;}
.ws6b{word-spacing:0.373333pt;}
.ws43{word-spacing:0.426667pt;}
.wsb7{word-spacing:0.469333pt;}
.ws86{word-spacing:0.480000pt;}
.wse2{word-spacing:0.512000pt;}
.wscb{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.586667pt;}
.ws27{word-spacing:0.640000pt;}
.wsc4{word-spacing:0.693333pt;}
.ws3a{word-spacing:0.746667pt;}
.wsb6{word-spacing:0.768000pt;}
.wsb4{word-spacing:0.800000pt;}
.ws9a{word-spacing:0.853333pt;}
.ws17{word-spacing:0.906667pt;}
.wsce{word-spacing:0.960000pt;}
.wsab{word-spacing:0.981333pt;}
.wsc5{word-spacing:1.013333pt;}
.ws4d{word-spacing:1.066667pt;}
.ws56{word-spacing:1.120000pt;}
.wsd9{word-spacing:1.152000pt;}
.ws50{word-spacing:1.173333pt;}
.wsed{word-spacing:1.194667pt;}
.ws5e{word-spacing:1.226667pt;}
.wsdb{word-spacing:1.237333pt;}
.wsc2{word-spacing:1.280000pt;}
.wsf0{word-spacing:1.322667pt;}
.ws87{word-spacing:1.386667pt;}
.ws3d{word-spacing:1.440000pt;}
.ws77{word-spacing:1.450667pt;}
.wse3{word-spacing:1.493333pt;}
.wsf3{word-spacing:1.536000pt;}
.ws37{word-spacing:1.546667pt;}
.wse0{word-spacing:1.578667pt;}
.ws69{word-spacing:1.600000pt;}
.wsba{word-spacing:1.653333pt;}
.wseb{word-spacing:1.664000pt;}
.ws23{word-spacing:1.706667pt;}
.wsa0{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.813333pt;}
.wsc6{word-spacing:1.834667pt;}
.ws67{word-spacing:1.866667pt;}
.ws21{word-spacing:1.920000pt;}
.wsbc{word-spacing:1.962667pt;}
.ws68{word-spacing:1.973333pt;}
.ws52{word-spacing:2.026667pt;}
.wsa4{word-spacing:2.080000pt;}
.ws19{word-spacing:2.133333pt;}
.ws76{word-spacing:2.261333pt;}
.ws6e{word-spacing:2.293333pt;}
.ws51{word-spacing:2.346667pt;}
.wse4{word-spacing:2.389333pt;}
.ws66{word-spacing:2.400000pt;}
.wsc9{word-spacing:2.453333pt;}
.ws95{word-spacing:2.506667pt;}
.wsda{word-spacing:2.517333pt;}
.wsfb{word-spacing:2.602667pt;}
.ws89{word-spacing:2.613333pt;}
.ws42{word-spacing:2.666667pt;}
.wsa5{word-spacing:2.720000pt;}
.wse5{word-spacing:2.730667pt;}
.ws3e{word-spacing:2.773333pt;}
.ws4e{word-spacing:2.826667pt;}
.wsf6{word-spacing:2.858667pt;}
.ws1a{word-spacing:2.880000pt;}
.wsf2{word-spacing:2.901333pt;}
.ws96{word-spacing:2.933333pt;}
.wsfa{word-spacing:2.944000pt;}
.ws48{word-spacing:2.986667pt;}
.ws20{word-spacing:3.040000pt;}
.ws13{word-spacing:3.146667pt;}
.ws18{word-spacing:3.200000pt;}
.ws1e{word-spacing:3.253333pt;}
.wsb0{word-spacing:3.285333pt;}
.wsa6{word-spacing:3.306667pt;}
.ws41{word-spacing:3.360000pt;}
.wsdc{word-spacing:3.370667pt;}
.ws75{word-spacing:3.413333pt;}
.ws4f{word-spacing:3.466667pt;}
.ws6f{word-spacing:3.498667pt;}
.ws25{word-spacing:3.520000pt;}
.ws70{word-spacing:3.541333pt;}
.ws57{word-spacing:3.626667pt;}
.ws45{word-spacing:3.680000pt;}
.ws91{word-spacing:3.733333pt;}
.ws16{word-spacing:3.840000pt;}
.ws36{word-spacing:3.893333pt;}
.ws5c{word-spacing:3.946667pt;}
.ws12{word-spacing:4.000000pt;}
.ws9b{word-spacing:4.053333pt;}
.ws40{word-spacing:4.106667pt;}
.ws1b{word-spacing:4.160000pt;}
.ws9e{word-spacing:4.213333pt;}
.wsc0{word-spacing:4.266667pt;}
.ws8d{word-spacing:4.320000pt;}
.ws11{word-spacing:4.373333pt;}
.wsbe{word-spacing:4.394667pt;}
.ws14{word-spacing:4.426667pt;}
.wsaf{word-spacing:4.480000pt;}
.ws97{word-spacing:4.800000pt;}
.wscf{word-spacing:4.853333pt;}
.wsd0{word-spacing:4.906667pt;}
.wscc{word-spacing:5.013333pt;}
.ws4a{word-spacing:5.386667pt;}
.ws92{word-spacing:6.026667pt;}
.ws46{word-spacing:6.186667pt;}
.wsa9{word-spacing:6.933333pt;}
.ws2{word-spacing:43.841803pt;}
.ws84{word-spacing:178.090667pt;}
.ws80{word-spacing:181.162667pt;}
.ws81{word-spacing:192.298667pt;}
.ws83{word-spacing:314.026667pt;}
.ws82{word-spacing:324.693333pt;}
._b{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._7{margin-left:-6.773333pt;}
._18{margin-left:-5.765333pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.136000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.008000pt;}
._8{width:0.906667pt;}
._9{width:1.973333pt;}
._f{width:3.249600pt;}
._3{width:4.163733pt;}
._a{width:5.600000pt;}
._c{width:6.560000pt;}
._d{width:7.493333pt;}
._17{width:10.245333pt;}
._6{width:52.891936pt;}
._3e{width:54.272000pt;}
._38{width:55.722667pt;}
._21{width:57.216000pt;}
._3c{width:61.056000pt;}
._37{width:69.930667pt;}
._28{width:77.056000pt;}
._24{width:87.722667pt;}
._33{width:98.389333pt;}
._45{width:102.570667pt;}
._3d{width:106.714667pt;}
._32{width:112.597333pt;}
._20{width:117.930667pt;}
._1b{width:119.722667pt;}
._2b{width:128.597333pt;}
._1f{width:132.138667pt;}
._2c{width:139.264000pt;}
._3b{width:140.970667pt;}
._27{width:160.512000pt;}
._39{width:164.992000pt;}
._26{width:169.472000pt;}
._29{width:176.853333pt;}
._3a{width:179.322667pt;}
._23{width:181.381333pt;}
._35{width:183.680000pt;}
._50{width:198.997333pt;}
._10{width:210.090667pt;}
._2f{width:212.437333pt;}
._2a{width:214.741333pt;}
._51{width:236.160000pt;}
._4b{width:248.021333pt;}
._2e{width:264.746667pt;}
._22{width:265.898667pt;}
._30{width:283.520000pt;}
._14{width:303.360000pt;}
._25{width:306.005333pt;}
._13{width:307.968000pt;}
._11{width:324.693333pt;}
._54{width:328.021333pt;}
._12{width:335.360000pt;}
._1e{width:348.629333pt;}
._2d{width:393.642667pt;}
._15{width:399.360000pt;}
._46{width:407.552000pt;}
._53{width:409.770667pt;}
._4a{width:412.330667pt;}
._1c{width:418.794667pt;}
._36{width:423.002667pt;}
._34{width:424.960000pt;}
._31{width:426.496000pt;}
._52{width:428.842667pt;}
._42{width:444.352000pt;}
._1d{width:466.218667pt;}
._4d{width:467.200000pt;}
._47{width:480.853333pt;}
._41{width:483.541333pt;}
._16{width:484.693333pt;}
._19{width:491.562667pt;}
._3f{width:495.365333pt;}
._43{width:508.245333pt;}
._49{width:512.853333pt;}
._4f{width:515.498667pt;}
._48{width:517.717333pt;}
._4c{width:520.106667pt;}
._4e{width:522.453333pt;}
._1a{width:533.210667pt;}
._44{width:594.602667pt;}
._40{width:635.050667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.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;}
.y30{bottom:42.468667pt;}
.y172{bottom:73.966667pt;}
.y13c{bottom:74.082800pt;}
.yf4{bottom:74.113733pt;}
.y123{bottom:74.271067pt;}
.y1f2{bottom:74.342533pt;}
.y73{bottom:74.462533pt;}
.y65{bottom:74.464533pt;}
.ydf{bottom:74.588533pt;}
.yab{bottom:74.595867pt;}
.y195{bottom:74.642133pt;}
.y12f{bottom:74.712267pt;}
.y1c3{bottom:74.721867pt;}
.y129{bottom:74.722667pt;}
.y16d{bottom:75.131867pt;}
.y179{bottom:75.356400pt;}
.y120{bottom:76.721867pt;}
.y2d{bottom:78.248400pt;}
.y1fa{bottom:79.219467pt;}
.y190{bottom:79.448133pt;}
.y152{bottom:79.721333pt;}
.y100{bottom:82.181333pt;}
.y23b{bottom:84.678667pt;}
.y171{bottom:87.961333pt;}
.y13b{bottom:88.077467pt;}
.yf3{bottom:88.108400pt;}
.y122{bottom:88.265733pt;}
.y194{bottom:88.636800pt;}
.y12e{bottom:88.706933pt;}
.y128{bottom:88.717333pt;}
.y16c{bottom:89.126533pt;}
.y178{bottom:89.351067pt;}
.y1f1{bottom:90.342533pt;}
.y72{bottom:90.462533pt;}
.y64{bottom:90.464533pt;}
.yde{bottom:90.588533pt;}
.yaa{bottom:90.595867pt;}
.y1c2{bottom:90.721867pt;}
.y2c{bottom:91.576000pt;}
.y1f9{bottom:92.552800pt;}
.y11f{bottom:92.721867pt;}
.y18f{bottom:94.114800pt;}
.y151{bottom:94.388000pt;}
.yff{bottom:96.624000pt;}
.y23a{bottom:98.012000pt;}
.y170{bottom:101.956000pt;}
.y13a{bottom:102.072133pt;}
.yf2{bottom:102.103067pt;}
.y121{bottom:102.260400pt;}
.y193{bottom:102.631467pt;}
.y12d{bottom:102.701600pt;}
.y127{bottom:102.712000pt;}
.y177{bottom:103.345733pt;}
.y1f0{bottom:106.342533pt;}
.y71{bottom:106.462533pt;}
.y63{bottom:106.464533pt;}
.ydd{bottom:106.588533pt;}
.ya9{bottom:106.595867pt;}
.y1c1{bottom:106.721867pt;}
.y11e{bottom:108.721867pt;}
.yfe{bottom:111.066667pt;}
.y239{bottom:111.345333pt;}
.y16f{bottom:115.950667pt;}
.y139{bottom:116.066800pt;}
.yf1{bottom:116.097733pt;}
.y12c{bottom:116.696267pt;}
.y126{bottom:116.706667pt;}
.y18e{bottom:116.792133pt;}
.y150{bottom:117.065333pt;}
.y176{bottom:117.340400pt;}
.y1f8{bottom:121.982533pt;}
.y1ef{bottom:122.342533pt;}
.y70{bottom:122.462533pt;}
.y62{bottom:122.464533pt;}
.ydc{bottom:122.588533pt;}
.ya8{bottom:122.595867pt;}
.y1c0{bottom:122.721867pt;}
.y238{bottom:124.678667pt;}
.y11d{bottom:124.721867pt;}
.yfd{bottom:125.509333pt;}
.y16e{bottom:129.945333pt;}
.y138{bottom:130.061467pt;}
.yf0{bottom:130.092400pt;}
.y12b{bottom:130.690933pt;}
.y125{bottom:130.701333pt;}
.y18d{bottom:131.234800pt;}
.y175{bottom:131.335067pt;}
.y14f{bottom:131.508000pt;}
.y237{bottom:138.012000pt;}
.y1ee{bottom:138.342533pt;}
.y6f{bottom:138.462533pt;}
.y61{bottom:138.464533pt;}
.ydb{bottom:138.588533pt;}
.ya7{bottom:138.595867pt;}
.y1bf{bottom:138.721867pt;}
.y11c{bottom:140.721867pt;}
.y137{bottom:144.056133pt;}
.yef{bottom:144.087067pt;}
.y12a{bottom:144.685600pt;}
.y174{bottom:145.329733pt;}
.y18c{bottom:145.677467pt;}
.y14e{bottom:145.950667pt;}
.yfc{bottom:151.290667pt;}
.y236{bottom:151.345333pt;}
.y1ed{bottom:154.342533pt;}
.y6e{bottom:154.462533pt;}
.y60{bottom:154.464533pt;}
.yda{bottom:154.588533pt;}
.ya6{bottom:154.595867pt;}
.y1be{bottom:154.721867pt;}
.y11b{bottom:156.721867pt;}
.y136{bottom:158.050800pt;}
.y173{bottom:159.324400pt;}
.y18b{bottom:160.120133pt;}
.y14d{bottom:160.393333pt;}
.y2b{bottom:164.057067pt;}
.y235{bottom:164.678667pt;}
.yfa{bottom:165.957333pt;}
.y1ec{bottom:170.342533pt;}
.y6d{bottom:170.462533pt;}
.y5f{bottom:170.464533pt;}
.yd9{bottom:170.588533pt;}
.ya5{bottom:170.595867pt;}
.y1bd{bottom:170.721867pt;}
.y135{bottom:172.045467pt;}
.y11a{bottom:172.721867pt;}
.y18a{bottom:174.562800pt;}
.y14c{bottom:174.836000pt;}
.y234{bottom:178.012000pt;}
.yfb{bottom:180.624000pt;}
.y134{bottom:186.040133pt;}
.y1f7{bottom:186.102533pt;}
.y1eb{bottom:186.342533pt;}
.y6c{bottom:186.462533pt;}
.y5e{bottom:186.464533pt;}
.yd8{bottom:186.588533pt;}
.ya4{bottom:186.595867pt;}
.y1bc{bottom:186.721867pt;}
.y2a{bottom:188.363733pt;}
.y119{bottom:188.721867pt;}
.y189{bottom:189.005467pt;}
.y14b{bottom:189.278667pt;}
.y233{bottom:191.345333pt;}
.y133{bottom:200.034800pt;}
.y1ea{bottom:202.342533pt;}
.y6b{bottom:202.462533pt;}
.y5d{bottom:202.464533pt;}
.yd7{bottom:202.588533pt;}
.ya3{bottom:202.595867pt;}
.y1bb{bottom:202.721867pt;}
.y188{bottom:203.448133pt;}
.y14a{bottom:203.721333pt;}
.y29{bottom:204.363733pt;}
.y232{bottom:204.678667pt;}
.y118{bottom:204.721867pt;}
.yf9{bottom:206.405333pt;}
.y132{bottom:214.029467pt;}
.y187{bottom:217.890800pt;}
.y231{bottom:218.012000pt;}
.y1f6{bottom:218.102533pt;}
.y149{bottom:218.164000pt;}
.y1e9{bottom:218.342533pt;}
.y6a{bottom:218.462533pt;}
.y5c{bottom:218.464533pt;}
.yd6{bottom:218.588533pt;}
.ya2{bottom:218.595867pt;}
.y1ba{bottom:218.721867pt;}
.y28{bottom:220.363733pt;}
.y117{bottom:220.721867pt;}
.y131{bottom:228.024133pt;}
.y230{bottom:231.345333pt;}
.y186{bottom:232.333467pt;}
.y148{bottom:232.606667pt;}
.y1e8{bottom:234.342533pt;}
.y69{bottom:234.462533pt;}
.y5b{bottom:234.464533pt;}
.yd5{bottom:234.588533pt;}
.y1b9{bottom:234.721867pt;}
.yf8{bottom:235.195867pt;}
.y27{bottom:236.363733pt;}
.y116{bottom:236.721867pt;}
.y22f{bottom:244.678667pt;}
.y185{bottom:246.776133pt;}
.y147{bottom:247.049333pt;}
.ya1{bottom:250.235867pt;}
.y1e7{bottom:250.342533pt;}
.y68{bottom:250.462533pt;}
.y5a{bottom:250.464533pt;}
.yd4{bottom:250.588533pt;}
.y1b8{bottom:250.721867pt;}
.y26{bottom:252.363733pt;}
.yf7{bottom:252.529200pt;}
.y115{bottom:252.721867pt;}
.y22e{bottom:258.012000pt;}
.y184{bottom:261.218800pt;}
.y146{bottom:261.492000pt;}
.y1e6{bottom:266.342533pt;}
.y9e{bottom:266.462533pt;}
.y59{bottom:266.464533pt;}
.yd3{bottom:266.588533pt;}
.y1b7{bottom:266.721867pt;}
.y25{bottom:268.363733pt;}
.y114{bottom:268.721867pt;}
.yf6{bottom:269.862533pt;}
.y22d{bottom:271.345333pt;}
.y145{bottom:275.934667pt;}
.y1e5{bottom:282.342533pt;}
.y9d{bottom:282.462533pt;}
.y58{bottom:282.464533pt;}
.yd2{bottom:282.588533pt;}
.y1b6{bottom:282.721867pt;}
.y24{bottom:284.363733pt;}
.y22c{bottom:284.678667pt;}
.y113{bottom:284.721867pt;}
.y183{bottom:289.229467pt;}
.y144{bottom:290.377333pt;}
.y22b{bottom:298.012000pt;}
.y1e4{bottom:298.342533pt;}
.y9c{bottom:298.462533pt;}
.y57{bottom:298.464533pt;}
.yd1{bottom:298.588533pt;}
.y1b5{bottom:298.721867pt;}
.y23{bottom:300.363733pt;}
.y112{bottom:300.721867pt;}
.y143{bottom:304.820000pt;}
.y22a{bottom:311.345333pt;}
.y1f5{bottom:314.102533pt;}
.y1e3{bottom:314.342533pt;}
.y9b{bottom:314.462533pt;}
.y56{bottom:314.464533pt;}
.yd0{bottom:314.588533pt;}
.y1b4{bottom:314.721867pt;}
.y22{bottom:316.363733pt;}
.y111{bottom:316.721867pt;}
.y142{bottom:319.262667pt;}
.y182{bottom:320.247333pt;}
.y229{bottom:324.678667pt;}
.y1e2{bottom:330.342533pt;}
.y9a{bottom:330.462533pt;}
.y55{bottom:330.464533pt;}
.ycf{bottom:330.588533pt;}
.y1b3{bottom:330.721867pt;}
.y21{bottom:332.363733pt;}
.y110{bottom:332.721867pt;}
.y181{bottom:337.580667pt;}
.y228{bottom:338.012000pt;}
.y141{bottom:345.044000pt;}
.yee{bottom:346.012000pt;}
.ye1{bottom:346.102533pt;}
.y1e1{bottom:346.342533pt;}
.y99{bottom:346.462533pt;}
.y54{bottom:346.464533pt;}
.yce{bottom:346.588533pt;}
.y1b2{bottom:346.721867pt;}
.y20{bottom:348.363733pt;}
.y10f{bottom:348.721867pt;}
.y227{bottom:351.345333pt;}
.yed{bottom:359.345333pt;}
.y1f4{bottom:362.102533pt;}
.y1e0{bottom:362.342533pt;}
.y98{bottom:362.462533pt;}
.y53{bottom:362.464533pt;}
.ycd{bottom:362.588533pt;}
.y1b1{bottom:362.721867pt;}
.y1f{bottom:364.363733pt;}
.y226{bottom:364.678667pt;}
.y10e{bottom:364.721867pt;}
.y140{bottom:370.825333pt;}
.yec{bottom:372.678667pt;}
.ye0{bottom:377.982533pt;}
.y225{bottom:378.012000pt;}
.y1df{bottom:378.342533pt;}
.y97{bottom:378.462533pt;}
.y52{bottom:378.464533pt;}
.ycc{bottom:378.588533pt;}
.y1e{bottom:380.363733pt;}
.y10d{bottom:380.721867pt;}
.y180{bottom:382.371467pt;}
.yeb{bottom:386.012000pt;}
.y224{bottom:391.345333pt;}
.y1de{bottom:394.342533pt;}
.y1b0{bottom:394.361867pt;}
.y96{bottom:394.462533pt;}
.y51{bottom:394.464533pt;}
.ycb{bottom:394.609200pt;}
.y1d{bottom:396.363733pt;}
.y17f{bottom:396.366133pt;}
.y10c{bottom:396.721867pt;}
.yea{bottom:399.345333pt;}
.y13f{bottom:399.617467pt;}
.y223{bottom:404.678667pt;}
.y1dd{bottom:410.342533pt;}
.y17e{bottom:410.360800pt;}
.y1af{bottom:410.361867pt;}
.y95{bottom:410.462533pt;}
.y50{bottom:410.464533pt;}
.yca{bottom:410.609200pt;}
.y1c{bottom:412.363733pt;}
.ye9{bottom:412.678667pt;}
.y10b{bottom:412.721867pt;}
.y13e{bottom:416.950800pt;}
.y222{bottom:418.012000pt;}
.y17d{bottom:424.355467pt;}
.y1dc{bottom:425.982533pt;}
.y94{bottom:426.462533pt;}
.y4f{bottom:426.464533pt;}
.y1b{bottom:428.363733pt;}
.y221{bottom:431.345333pt;}
.y17c{bottom:438.350133pt;}
.ye8{bottom:442.102533pt;}
.yc9{bottom:442.249200pt;}
.y93{bottom:442.462533pt;}
.y4e{bottom:442.464533pt;}
.y1ae{bottom:442.588533pt;}
.y10a{bottom:444.271333pt;}
.y1a{bottom:444.363733pt;}
.y220{bottom:444.678667pt;}
.y17b{bottom:452.344800pt;}
.y109{bottom:457.604667pt;}
.y21f{bottom:458.012000pt;}
.ye7{bottom:458.102533pt;}
.y1db{bottom:458.342533pt;}
.y92{bottom:458.462533pt;}
.y4d{bottom:458.464533pt;}
.y1ad{bottom:458.588533pt;}
.y155{bottom:459.742667pt;}
.y19{bottom:460.363733pt;}
.y17a{bottom:466.339467pt;}
.y108{bottom:470.938000pt;}
.y21e{bottom:471.345333pt;}
.y154{bottom:473.737333pt;}
.ye6{bottom:474.102533pt;}
.y1da{bottom:474.342533pt;}
.y91{bottom:474.462533pt;}
.y4c{bottom:474.464533pt;}
.yc8{bottom:474.475867pt;}
.y1ac{bottom:474.588533pt;}
.y18{bottom:476.363733pt;}
.y107{bottom:484.271333pt;}
.y21d{bottom:484.678667pt;}
.y153{bottom:487.732000pt;}
.ye5{bottom:490.102533pt;}
.y1d9{bottom:490.342533pt;}
.y90{bottom:490.462533pt;}
.y4b{bottom:490.464533pt;}
.yc7{bottom:490.475867pt;}
.y1ab{bottom:490.588533pt;}
.y17{bottom:492.363733pt;}
.y106{bottom:497.604667pt;}
.y21c{bottom:498.012000pt;}
.ye4{bottom:506.102533pt;}
.y1d8{bottom:506.342533pt;}
.y8f{bottom:506.462533pt;}
.y4a{bottom:506.464533pt;}
.yc6{bottom:506.475867pt;}
.y1aa{bottom:506.588533pt;}
.y16{bottom:508.363733pt;}
.y105{bottom:510.938000pt;}
.y21b{bottom:511.345333pt;}
.ye3{bottom:522.102533pt;}
.y1d7{bottom:522.342533pt;}
.y8e{bottom:522.462533pt;}
.y49{bottom:522.464533pt;}
.yc5{bottom:522.475867pt;}
.y1a9{bottom:522.588533pt;}
.y21a{bottom:524.678667pt;}
.y219{bottom:538.012000pt;}
.y1d6{bottom:538.342533pt;}
.y8d{bottom:538.462533pt;}
.y48{bottom:538.464533pt;}
.yc4{bottom:538.475867pt;}
.y1a8{bottom:538.588533pt;}
.y104{bottom:538.595867pt;}
.y15{bottom:548.504267pt;}
.y218{bottom:551.345333pt;}
.ye2{bottom:553.982533pt;}
.ya0{bottom:554.102533pt;}
.y103{bottom:554.235867pt;}
.y1d5{bottom:554.342533pt;}
.y8c{bottom:554.462533pt;}
.y47{bottom:554.464533pt;}
.yc3{bottom:554.475867pt;}
.y1a7{bottom:554.588533pt;}
.y14{bottom:559.571600pt;}
.y217{bottom:564.678667pt;}
.y102{bottom:570.235867pt;}
.y1d4{bottom:570.342533pt;}
.y8b{bottom:570.462533pt;}
.y46{bottom:570.464533pt;}
.yc2{bottom:570.475867pt;}
.y1a6{bottom:570.588533pt;}
.y216{bottom:578.012000pt;}
.y9f{bottom:585.982533pt;}
.y1d3{bottom:586.342533pt;}
.y8a{bottom:586.462533pt;}
.y45{bottom:586.464533pt;}
.yc1{bottom:586.475867pt;}
.y1a5{bottom:586.588533pt;}
.y13{bottom:587.763200pt;}
.y215{bottom:591.345333pt;}
.y1d2{bottom:602.342533pt;}
.y89{bottom:602.462533pt;}
.y44{bottom:602.464533pt;}
.yc0{bottom:602.475867pt;}
.y1a4{bottom:602.595867pt;}
.y12{bottom:604.585600pt;}
.y214{bottom:604.678667pt;}
.y11{bottom:611.763200pt;}
.y213{bottom:618.012000pt;}
.y1f3{bottom:618.102533pt;}
.y1d1{bottom:618.342533pt;}
.y88{bottom:618.462533pt;}
.y43{bottom:618.464533pt;}
.ybf{bottom:618.475867pt;}
.y1a3{bottom:618.595867pt;}
.y10{bottom:628.585600pt;}
.y212{bottom:631.345333pt;}
.y1d0{bottom:634.342533pt;}
.y87{bottom:634.462533pt;}
.y42{bottom:634.464533pt;}
.ybe{bottom:634.475867pt;}
.y1a2{bottom:634.595867pt;}
.yf{bottom:635.763200pt;}
.y211{bottom:644.678667pt;}
.y1cf{bottom:650.342533pt;}
.y86{bottom:650.462533pt;}
.y41{bottom:650.464533pt;}
.ybd{bottom:650.475867pt;}
.y1a1{bottom:650.595867pt;}
.ye{bottom:652.585600pt;}
.y210{bottom:658.012000pt;}
.yd{bottom:659.763200pt;}
.y1ce{bottom:666.342533pt;}
.y85{bottom:666.462533pt;}
.y40{bottom:666.464533pt;}
.ybc{bottom:666.475867pt;}
.y1a0{bottom:666.595867pt;}
.y20f{bottom:671.345333pt;}
.yc{bottom:676.585600pt;}
.y1cd{bottom:682.342533pt;}
.y84{bottom:682.462533pt;}
.y3f{bottom:682.464533pt;}
.ybb{bottom:682.475867pt;}
.y19f{bottom:682.595867pt;}
.yb{bottom:683.763200pt;}
.y20e{bottom:684.678667pt;}
.ya{bottom:695.763200pt;}
.y20d{bottom:698.012000pt;}
.y1cc{bottom:698.342533pt;}
.y83{bottom:698.462533pt;}
.y3e{bottom:698.464533pt;}
.yba{bottom:698.475867pt;}
.y19e{bottom:698.595867pt;}
.y15d{bottom:704.988533pt;}
.y20c{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y1cb{bottom:714.342533pt;}
.y82{bottom:714.462533pt;}
.y3d{bottom:714.464533pt;}
.y16b{bottom:714.468533pt;}
.yb9{bottom:714.475867pt;}
.y19d{bottom:714.595867pt;}
.y15c{bottom:720.988533pt;}
.y20b{bottom:724.678667pt;}
.y192{bottom:730.102533pt;}
.y1ca{bottom:730.342533pt;}
.y81{bottom:730.462533pt;}
.y3c{bottom:730.464533pt;}
.y16a{bottom:730.468533pt;}
.yb8{bottom:730.475867pt;}
.y19c{bottom:730.595867pt;}
.y20a{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y1c9{bottom:746.342533pt;}
.y80{bottom:746.462533pt;}
.y3b{bottom:746.464533pt;}
.y169{bottom:746.468533pt;}
.yb7{bottom:746.475867pt;}
.y19b{bottom:746.595867pt;}
.y209{bottom:751.345333pt;}
.y15b{bottom:751.957867pt;}
.y7{bottom:756.783067pt;}
.y191{bottom:761.982533pt;}
.y1c8{bottom:762.342533pt;}
.y7f{bottom:762.462533pt;}
.y3a{bottom:762.464533pt;}
.y168{bottom:762.468533pt;}
.yb6{bottom:762.475867pt;}
.y19a{bottom:762.595867pt;}
.y208{bottom:764.678667pt;}
.y15a{bottom:765.829867pt;}
.y207{bottom:778.012000pt;}
.y1c7{bottom:778.342533pt;}
.y7e{bottom:778.462533pt;}
.y39{bottom:778.464533pt;}
.y167{bottom:778.468533pt;}
.yb5{bottom:778.475867pt;}
.y159{bottom:778.595867pt;}
.y206{bottom:791.345333pt;}
.y158{bottom:794.235867pt;}
.y1c6{bottom:794.342533pt;}
.y7d{bottom:794.462533pt;}
.y38{bottom:794.464533pt;}
.y166{bottom:794.468533pt;}
.yb4{bottom:794.475867pt;}
.y199{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y205{bottom:804.678667pt;}
.y157{bottom:810.235867pt;}
.y1c5{bottom:810.342533pt;}
.y7c{bottom:810.462533pt;}
.y37{bottom:810.464533pt;}
.y165{bottom:810.468533pt;}
.yb3{bottom:810.475867pt;}
.y204{bottom:818.012000pt;}
.y198{bottom:826.235867pt;}
.y7b{bottom:826.462533pt;}
.y36{bottom:826.464533pt;}
.y164{bottom:826.468533pt;}
.yb2{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y203{bottom:831.345333pt;}
.y1c4{bottom:841.982533pt;}
.y197{bottom:842.235867pt;}
.y7a{bottom:842.462533pt;}
.y35{bottom:842.464533pt;}
.y163{bottom:842.468533pt;}
.yb1{bottom:842.475867pt;}
.y202{bottom:844.678667pt;}
.y201{bottom:858.012000pt;}
.y79{bottom:858.462533pt;}
.y34{bottom:858.464533pt;}
.y162{bottom:858.468533pt;}
.yb0{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y200{bottom:871.345333pt;}
.y78{bottom:874.462533pt;}
.y33{bottom:874.464533pt;}
.y161{bottom:874.468533pt;}
.yaf{bottom:874.475867pt;}
.y1ff{bottom:884.678667pt;}
.y77{bottom:890.462533pt;}
.y32{bottom:890.464533pt;}
.y160{bottom:890.468533pt;}
.yae{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1fe{bottom:898.012000pt;}
.y76{bottom:906.462533pt;}
.y67{bottom:906.464533pt;}
.y15f{bottom:906.468533pt;}
.yad{bottom:906.475867pt;}
.y1fd{bottom:911.345333pt;}
.y31{bottom:922.104533pt;}
.y75{bottom:922.462533pt;}
.y66{bottom:922.464533pt;}
.y15e{bottom:922.468533pt;}
.yac{bottom:922.475867pt;}
.y1fc{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1fb{bottom:1006.590133pt;}
.y74{bottom:1006.594400pt;}
.y13d{bottom:1006.597067pt;}
.y23c{bottom:1006.598667pt;}
.y124{bottom:1006.601733pt;}
.y101{bottom:1006.608000pt;}
.y196{bottom:1006.610133pt;}
.y130{bottom:1006.616267pt;}
.yf5{bottom:1006.625733pt;}
.y156{bottom:1006.654667pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.he{height:29.140625pt;}
.h8{height:29.160156pt;}
.hd{height:29.169756pt;}
.h14{height:29.625000pt;}
.h12{height:29.645833pt;}
.h15{height:31.062500pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h16{height:33.351562pt;}
.h13{height:37.031250pt;}
.h11{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.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;}
.x7{left:68.031467pt;}
.x2d{left:69.916667pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1c{left:88.817200pt;}
.x3a{left:90.708667pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x34{left:101.453467pt;}
.x39{left:109.606267pt;}
.x3{left:111.491467pt;}
.xe{left:117.169200pt;}
.x12{left:128.644800pt;}
.x8{left:169.380933pt;}
.x32{left:175.986000pt;}
.x33{left:182.342533pt;}
.x35{left:195.161467pt;}
.x27{left:199.579867pt;}
.x31{left:201.852667pt;}
.x2e{left:202.994000pt;}
.x30{left:204.530000pt;}
.x13{left:206.542400pt;}
.x2f{left:215.868667pt;}
.x36{left:239.997600pt;}
.x1f{left:261.777200pt;}
.x1d{left:267.505200pt;}
.x1e{left:281.435867pt;}
.x2c{left:356.199333pt;}
.x21{left:371.889200pt;}
.x20{left:392.230533pt;}
.x6{left:404.481333pt;}
.xa{left:406.314267pt;}
.x1b{left:409.137200pt;}
.xf{left:425.209200pt;}
.x2a{left:428.976533pt;}
.xb{left:436.554267pt;}
.x16{left:438.476800pt;}
.x18{left:443.383467pt;}
.x1a{left:447.874133pt;}
.x10{left:455.443200pt;}
.x19{left:464.490133pt;}
.x15{left:480.436800pt;}
.x17{left:484.623467pt;}
.x38{left:510.938133pt;}
.x37{left:515.031467pt;}
.x22{left:516.955867pt;}
.x29{left:527.259200pt;}
.x23{left:530.886533pt;}
.x14{left:537.503467pt;}
.x28{left:539.472533pt;}
.xd{left:589.770933pt;}
.x2{left:616.324800pt;}
.x26{left:632.497200pt;}
.x24{left:641.382533pt;}
.xc{left:647.459200pt;}
.x25{left:655.611867pt;}
.x2b{left:661.216133pt;}
.x11{left:666.356800pt;}
}




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