
    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_1a25337e968647ba92b83cc1.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_e3623252ea2f8c13ca63f1cf.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_a3007ab9f19741984b6ea338.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_6394a9734d227c0eadb39d2f.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_af07bfa9d75aa892cebf94a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e928682f3146fa12d76957b6.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_ef81ad9b76d52c72152abbed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_fe9605176d94de4c5cfa816b.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_2de8ec96eca0e9c141607b63.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_3e67239a694f5958258514fe.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_017d1cb8680cd592e2fd181d.woff2')format("woff");}.ffb{font-family:ffb;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;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.254000px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:32.976000px;}
.ls55{letter-spacing:-3.360000px;}
.ls54{letter-spacing:-3.300000px;}
.ls8a{letter-spacing:-2.640000px;}
.ls59{letter-spacing:-2.592000px;}
.ls3b{letter-spacing:-2.280000px;}
.ls42{letter-spacing:-1.020000px;}
.ls14{letter-spacing:-0.780000px;}
.ls62{letter-spacing:-0.600000px;}
.ls63{letter-spacing:-0.528000px;}
.ls93{letter-spacing:-0.336000px;}
.ls88{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.225000px;}
.ls94{letter-spacing:-0.192000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls89{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120000px;}
.ls95{letter-spacing:-0.096000px;}
.ls43{letter-spacing:-0.060000px;}
.ls64{letter-spacing:-0.048000px;}
.ls13{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005676px;}
.ls57{letter-spacing:0.048000px;}
.ls41{letter-spacing:0.060000px;}
.ls58{letter-spacing:0.096000px;}
.ls2b{letter-spacing:0.120000px;}
.ls4c{letter-spacing:0.144000px;}
.ls47{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.240000px;}
.ls7f{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.300000px;}
.ls6a{letter-spacing:0.336000px;}
.ls1b{letter-spacing:0.360000px;}
.ls6f{letter-spacing:0.384000px;}
.ls1c{letter-spacing:0.420000px;}
.ls68{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.480000px;}
.ls6e{letter-spacing:0.528000px;}
.lse{letter-spacing:0.540000px;}
.ls71{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.624000px;}
.ls45{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.672000px;}
.ls5{letter-spacing:0.720000px;}
.ls70{letter-spacing:0.768000px;}
.ls25{letter-spacing:0.780000px;}
.ls6c{letter-spacing:0.816000px;}
.ls37{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.900000px;}
.ls78{letter-spacing:0.912000px;}
.ls21{letter-spacing:0.960000px;}
.ls86{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.020000px;}
.ls80{letter-spacing:1.056000px;}
.ls1f{letter-spacing:1.080000px;}
.ls7a{letter-spacing:1.104000px;}
.lsd{letter-spacing:1.140000px;}
.ls7e{letter-spacing:1.152000px;}
.ls3e{letter-spacing:1.200000px;}
.ls8e{letter-spacing:1.248000px;}
.ls32{letter-spacing:1.260000px;}
.ls3f{letter-spacing:1.291800px;}
.lsa{letter-spacing:1.320000px;}
.ls76{letter-spacing:1.344000px;}
.ls2c{letter-spacing:1.380000px;}
.ls73{letter-spacing:1.392000px;}
.ls18{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.500000px;}
.ls8c{letter-spacing:1.536000px;}
.ls46{letter-spacing:1.560000px;}
.ls67{letter-spacing:1.584000px;}
.ls2d{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.680000px;}
.ls79{letter-spacing:1.728000px;}
.ls24{letter-spacing:1.740000px;}
.ls81{letter-spacing:1.776000px;}
.ls30{letter-spacing:1.800000px;}
.ls82{letter-spacing:1.824000px;}
.ls17{letter-spacing:1.860000px;}
.ls53{letter-spacing:1.872000px;}
.ls1a{letter-spacing:1.920000px;}
.ls85{letter-spacing:1.968000px;}
.ls35{letter-spacing:1.980000px;}
.ls84{letter-spacing:2.016000px;}
.ls19{letter-spacing:2.040000px;}
.ls7d{letter-spacing:2.064000px;}
.ls2e{letter-spacing:2.100000px;}
.ls8b{letter-spacing:2.112000px;}
.ls1d{letter-spacing:2.160000px;}
.ls92{letter-spacing:2.208000px;}
.ls23{letter-spacing:2.220000px;}
.ls7c{letter-spacing:2.256000px;}
.ls22{letter-spacing:2.280000px;}
.ls3d{letter-spacing:2.340000px;}
.ls6{letter-spacing:2.400000px;}
.ls2a{letter-spacing:2.460000px;}
.ls77{letter-spacing:2.496000px;}
.ls29{letter-spacing:2.520000px;}
.ls50{letter-spacing:2.580000px;}
.ls11{letter-spacing:2.640000px;}
.ls83{letter-spacing:2.688000px;}
.ls9{letter-spacing:2.700000px;}
.ls51{letter-spacing:2.760000px;}
.ls4d{letter-spacing:2.784000px;}
.ls3c{letter-spacing:2.820000px;}
.ls91{letter-spacing:2.832000px;}
.ls10{letter-spacing:2.880000px;}
.ls72{letter-spacing:2.928000px;}
.lsc{letter-spacing:2.940000px;}
.ls7b{letter-spacing:2.976000px;}
.lsf{letter-spacing:3.000000px;}
.ls36{letter-spacing:3.120000px;}
.ls12{letter-spacing:3.180000px;}
.ls8d{letter-spacing:3.216000px;}
.ls52{letter-spacing:3.240000px;}
.ls8f{letter-spacing:3.360000px;}
.ls4a{letter-spacing:3.420000px;}
.ls2f{letter-spacing:3.480000px;}
.ls87{letter-spacing:3.504000px;}
.ls8{letter-spacing:3.540000px;}
.ls5f{letter-spacing:3.600000px;}
.ls5a{letter-spacing:3.720000px;}
.ls69{letter-spacing:3.744000px;}
.ls75{letter-spacing:4.032000px;}
.ls28{letter-spacing:4.080000px;}
.ls4f{letter-spacing:4.128000px;}
.ls44{letter-spacing:4.200000px;}
.ls5b{letter-spacing:4.260000px;}
.ls49{letter-spacing:4.320000px;}
.ls90{letter-spacing:4.368000px;}
.ls40{letter-spacing:4.380000px;}
.ls96{letter-spacing:4.440000px;}
.ls16{letter-spacing:4.560000px;}
.ls4{letter-spacing:4.620000px;}
.ls56{letter-spacing:4.704000px;}
.ls5c{letter-spacing:4.740000px;}
.ls4b{letter-spacing:4.800000px;}
.ls60{letter-spacing:4.920000px;}
.ls61{letter-spacing:5.160000px;}
.ls5d{letter-spacing:5.760000px;}
.ls33{letter-spacing:6.180000px;}
.ls31{letter-spacing:6.780000px;}
.ls65{letter-spacing:7.380000px;}
.ls48{letter-spacing:7.440000px;}
.ls66{letter-spacing:7.620000px;}
.ls5e{letter-spacing:10.680000px;}
.ls2{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.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;}
}
.ws7c{word-spacing:-22.440000px;}
.ws7e{word-spacing:-18.600000px;}
.ws67{word-spacing:-17.760000px;}
.ws7d{word-spacing:-17.580000px;}
.ws13{word-spacing:-17.280000px;}
.ws14{word-spacing:-17.220000px;}
.ws18{word-spacing:-17.040000px;}
.ws17{word-spacing:-16.800000px;}
.ws15{word-spacing:-16.740000px;}
.ws47{word-spacing:-16.680000px;}
.ws57{word-spacing:-16.560000px;}
.ws2e{word-spacing:-16.320000px;}
.ws6a{word-spacing:-16.260000px;}
.ws12{word-spacing:-16.080000px;}
.ws96{word-spacing:-16.032000px;}
.ws11{word-spacing:-16.020000px;}
.ws68{word-spacing:-15.840000px;}
.ws69{word-spacing:-15.780000px;}
.ws2{word-spacing:-15.720000px;}
.ws4c{word-spacing:-15.660000px;}
.ws19{word-spacing:-15.600000px;}
.ws10{word-spacing:-15.420000px;}
.ws4d{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.120000px;}
.ws4b{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws94{word-spacing:-14.928000px;}
.ws49{word-spacing:-14.880000px;}
.ws99{word-spacing:-14.256000px;}
.ws9d{word-spacing:-14.016000px;}
.ws9b{word-spacing:-13.776000px;}
.ws97{word-spacing:-13.728000px;}
.ws4a{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.344000px;}
.wsb6{word-spacing:-13.008000px;}
.ws98{word-spacing:-12.912000px;}
.wsb7{word-spacing:-12.864000px;}
.ws93{word-spacing:-12.768000px;}
.ws72{word-spacing:-12.720000px;}
.ws90{word-spacing:-12.528000px;}
.ws4{word-spacing:-12.510000px;}
.ws91{word-spacing:-12.336000px;}
.ws9a{word-spacing:-12.288000px;}
.ws92{word-spacing:-12.240000px;}
.ws60{word-spacing:-12.192000px;}
.ws76{word-spacing:-12.048000px;}
.ws32{word-spacing:-12.000000px;}
.ws95{word-spacing:-11.952000px;}
.ws66{word-spacing:-11.700000px;}
.ws8b{word-spacing:-11.280000px;}
.ws0{word-spacing:-10.210662px;}
.ws89{word-spacing:-9.936000px;}
.ws9c{word-spacing:-9.360000px;}
.ws81{word-spacing:-6.288000px;}
.ws85{word-spacing:-6.048000px;}
.ws83{word-spacing:-4.896000px;}
.wsbf{word-spacing:-4.368000px;}
.ws8c{word-spacing:-4.260000px;}
.wsa7{word-spacing:-4.032000px;}
.wsb5{word-spacing:-3.504000px;}
.wscf{word-spacing:-3.168000px;}
.wsd{word-spacing:-3.000000px;}
.wsa5{word-spacing:-2.976000px;}
.ws70{word-spacing:-2.940000px;}
.wscc{word-spacing:-2.928000px;}
.ws7{word-spacing:-2.886000px;}
.ws45{word-spacing:-2.820000px;}
.ws9f{word-spacing:-2.700000px;}
.wsb1{word-spacing:-2.688000px;}
.wsbb{word-spacing:-2.640000px;}
.wsc9{word-spacing:-2.496000px;}
.ws50{word-spacing:-2.460000px;}
.ws87{word-spacing:-2.448000px;}
.wscd{word-spacing:-2.400000px;}
.ws82{word-spacing:-2.304000px;}
.ws1d{word-spacing:-2.280000px;}
.ws84{word-spacing:-2.256000px;}
.ws1e{word-spacing:-2.220000px;}
.wsb9{word-spacing:-2.112000px;}
.wsad{word-spacing:-2.064000px;}
.ws1a{word-spacing:-2.040000px;}
.wsb3{word-spacing:-1.968000px;}
.wsaa{word-spacing:-1.728000px;}
.ws2c{word-spacing:-1.680000px;}
.ws4f{word-spacing:-1.620000px;}
.wsba{word-spacing:-1.536000px;}
.wsd0{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.260000px;}
.wsa6{word-spacing:-1.200000px;}
.wsae{word-spacing:-1.152000px;}
.wsc4{word-spacing:-1.008000px;}
.ws6f{word-spacing:-0.960000px;}
.wsc7{word-spacing:-0.816000px;}
.wsa3{word-spacing:-0.768000px;}
.ws3f{word-spacing:-0.720000px;}
.wsc6{word-spacing:-0.672000px;}
.ws54{word-spacing:-0.660000px;}
.ws44{word-spacing:-0.600000px;}
.wsa0{word-spacing:-0.528000px;}
.ws52{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.360000px;}
.ws46{word-spacing:-0.300000px;}
.wsaf{word-spacing:-0.288000px;}
.wsa2{word-spacing:-0.240000px;}
.ws62{word-spacing:-0.192000px;}
.ws22{word-spacing:-0.120000px;}
.ws7b{word-spacing:-0.096000px;}
.wsc5{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws86{word-spacing:0.048000px;}
.ws5d{word-spacing:0.060000px;}
.ws75{word-spacing:0.120000px;}
.wsc3{word-spacing:0.144000px;}
.ws2b{word-spacing:0.180000px;}
.wscb{word-spacing:0.192000px;}
.ws8{word-spacing:0.225000px;}
.ws77{word-spacing:0.288000px;}
.ws3e{word-spacing:0.300000px;}
.wsc0{word-spacing:0.336000px;}
.wsb8{word-spacing:0.384000px;}
.ws6d{word-spacing:0.420000px;}
.wsca{word-spacing:0.432000px;}
.ws8f{word-spacing:0.480000px;}
.ws79{word-spacing:0.576000px;}
.ws78{word-spacing:0.720000px;}
.ws48{word-spacing:0.780000px;}
.ws55{word-spacing:0.840000px;}
.wsb2{word-spacing:0.960000px;}
.ws88{word-spacing:1.008000px;}
.wsc8{word-spacing:1.200000px;}
.wsab{word-spacing:1.248000px;}
.ws42{word-spacing:1.380000px;}
.ws5c{word-spacing:1.440000px;}
.wsbd{word-spacing:1.488000px;}
.ws25{word-spacing:1.500000px;}
.ws1c{word-spacing:1.560000px;}
.wsb4{word-spacing:1.584000px;}
.ws6c{word-spacing:1.620000px;}
.ws7f{word-spacing:1.680000px;}
.wsbc{word-spacing:1.776000px;}
.ws51{word-spacing:1.800000px;}
.wse{word-spacing:1.860000px;}
.ws71{word-spacing:1.872000px;}
.ws20{word-spacing:2.160000px;}
.wsa9{word-spacing:2.256000px;}
.wsa{word-spacing:2.280000px;}
.ws34{word-spacing:2.340000px;}
.ws21{word-spacing:2.400000px;}
.ws65{word-spacing:2.448000px;}
.ws36{word-spacing:2.460000px;}
.ws24{word-spacing:2.520000px;}
.wsac{word-spacing:2.544000px;}
.wsa1{word-spacing:2.592000px;}
.ws56{word-spacing:2.640000px;}
.wsc1{word-spacing:2.736000px;}
.ws8d{word-spacing:2.760000px;}
.ws61{word-spacing:2.784000px;}
.ws37{word-spacing:2.880000px;}
.ws4e{word-spacing:2.940000px;}
.ws80{word-spacing:3.000000px;}
.wsa8{word-spacing:3.120000px;}
.wsb0{word-spacing:3.168000px;}
.ws33{word-spacing:3.180000px;}
.wsc2{word-spacing:3.216000px;}
.ws6e{word-spacing:3.240000px;}
.ws27{word-spacing:3.300000px;}
.ws2a{word-spacing:3.360000px;}
.ws28{word-spacing:3.420000px;}
.wsa4{word-spacing:3.456000px;}
.ws40{word-spacing:3.480000px;}
.wsbe{word-spacing:3.552000px;}
.ws8a{word-spacing:3.648000px;}
.ws41{word-spacing:3.780000px;}
.wsce{word-spacing:3.792000px;}
.wsc{word-spacing:3.840000px;}
.ws23{word-spacing:3.900000px;}
.ws63{word-spacing:3.936000px;}
.ws6b{word-spacing:3.960000px;}
.ws5f{word-spacing:3.984000px;}
.wsf{word-spacing:4.020000px;}
.ws35{word-spacing:4.080000px;}
.ws64{word-spacing:4.128000px;}
.ws53{word-spacing:4.260000px;}
.ws5e{word-spacing:4.380000px;}
.ws43{word-spacing:4.500000px;}
.ws1f{word-spacing:4.680000px;}
.ws74{word-spacing:4.704000px;}
.ws29{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws8e{word-spacing:5.460000px;}
.ws9e{word-spacing:5.520000px;}
.ws7a{word-spacing:6.624000px;}
.ws2d{word-spacing:8.280000px;}
.ws1{word-spacing:49.322028px;}
.ws5a{word-spacing:120.096000px;}
.ws5b{word-spacing:121.008000px;}
.ws59{word-spacing:140.928000px;}
.ws38{word-spacing:182.304000px;}
.ws3c{word-spacing:233.904000px;}
.ws58{word-spacing:276.192000px;}
.ws73{word-spacing:297.216000px;}
.ws30{word-spacing:302.448000px;}
.ws2f{word-spacing:302.496000px;}
.ws31{word-spacing:314.448000px;}
.ws3d{word-spacing:328.560000px;}
.ws3b{word-spacing:357.888000px;}
.ws3a{word-spacing:368.544000px;}
.ws39{word-spacing:454.464000px;}
._e{margin-left:-2898.096000px;}
._1d{margin-left:-2874.288000px;}
._2{margin-left:-9.495000px;}
._b{margin-left:-7.740000px;}
._7{margin-left:-6.591600px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.260000px;}
._6{width:1.056000px;}
._c{width:3.012000px;}
._9{width:4.020000px;}
._a{width:5.190000px;}
._d{width:6.600000px;}
._8{width:7.980000px;}
._71{width:10.080000px;}
._72{width:11.337600px;}
._6f{width:54.048000px;}
._4{width:59.533614px;}
._70{width:66.047400px;}
._3f{width:120.096000px;}
._40{width:132.096000px;}
._4a{width:134.112000px;}
._3e{width:140.112000px;}
._42{width:144.096000px;}
._4e{width:146.112000px;}
._49{width:147.744000px;}
._55{width:148.832400px;}
._52{width:151.455600px;}
._43{width:152.544000px;}
._46{width:154.080000px;}
._41{width:156.096000px;}
._59{width:158.112000px;}
._3d{width:160.176000px;}
._3c{width:164.112000px;}
._47{width:166.080000px;}
._51{width:170.112000px;}
._4d{width:172.176000px;}
._4c{width:176.112000px;}
._f{width:181.632000px;}
._58{width:183.504000px;}
._24{width:187.680000px;}
._50{width:196.176000px;}
._48{width:216.192000px;}
._3a{width:220.992000px;}
._45{width:222.144000px;}
._19{width:227.664000px;}
._1f{width:230.304000px;}
._44{width:236.160000px;}
._1a{width:245.472000px;}
._2f{width:246.768000px;}
._13{width:250.476000px;}
._5e{width:252.384000px;}
._4b{width:259.008000px;}
._26{width:263.760000px;}
._4f{width:266.976000px;}
._65{width:274.656000px;}
._5b{width:276.432000px;}
._10{width:279.456000px;}
._63{width:287.184000px;}
._29{width:288.960000px;}
._2b{width:292.944000px;}
._5d{width:295.008000px;}
._1e{width:300.057000px;}
._20{width:302.928000px;}
._57{width:305.712000px;}
._23{width:308.073000px;}
._5c{width:309.177000px;}
._25{width:312.105000px;}
._2c{width:315.648000px;}
._62{width:317.184000px;}
._5a{width:319.056000px;}
._39{width:322.848000px;}
._2a{width:324.408600px;}
._6b{width:325.974000px;}
._67{width:329.184000px;}
._17{width:333.024000px;}
._12{width:334.848000px;}
._27{width:339.600000px;}
._22{width:341.472000px;}
._18{width:345.072000px;}
._60{width:346.560000px;}
._21{width:351.120000px;}
._16{width:353.472000px;}
._37{width:363.552000px;}
._68{width:365.520000px;}
._2d{width:384.528000px;}
._2e{width:408.351000px;}
._28{width:414.528000px;}
._54{width:421.680000px;}
._1c{width:423.744000px;}
._38{width:428.256000px;}
._1b{width:435.744000px;}
._14{width:438.336000px;}
._15{width:450.336000px;}
._6e{width:461.952000px;}
._53{width:472.320000px;}
._35{width:492.870000px;}
._34{width:516.870000px;}
._32{width:536.934000px;}
._56{width:544.272000px;}
._11{width:549.888000px;}
._30{width:564.870000px;}
._33{width:583.920000px;}
._31{width:591.558000px;}
._3b{width:598.896000px;}
._36{width:655.008000px;}
._6a{width:876.384000px;}
._6d{width:933.792000px;}
._6c{width:970.473000px;}
._69{width:988.368000px;}
._61{width:1013.760000px;}
._64{width:1029.696000px;}
._66{width:1075.008000px;}
._5f{width:1173.744000px;}
.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;}
.y2f{bottom:47.777250px;}
.y24d{bottom:80.263500px;}
.y166{bottom:82.817550px;}
.y186{bottom:83.379150px;}
.yd6{bottom:83.497350px;}
.yea{bottom:83.554950px;}
.y18d{bottom:83.673000px;}
.y16a{bottom:83.767500px;}
.y139{bottom:83.770350px;}
.y174{bottom:83.779200px;}
.y20c{bottom:86.121900px;}
.y2c{bottom:88.026750px;}
.y10c{bottom:91.112100px;}
.ybb{bottom:92.186400px;}
.y24c{bottom:95.263500px;}
.y1ad{bottom:98.914350px;}
.ye9{bottom:99.298950px;}
.y165{bottom:99.317550px;}
.y18c{bottom:99.417000px;}
.y169{bottom:99.511500px;}
.y173{bottom:99.523200px;}
.y185{bottom:99.879150px;}
.yba{bottom:100.442400px;}
.y20b{bottom:101.121900px;}
.y60{bottom:101.770350px;}
.y1dd{bottom:101.929350px;}
.y86{bottom:102.053850px;}
.y2b{bottom:103.023000px;}
.yd5{bottom:109.009350px;}
.y10b{bottom:109.112100px;}
.y24b{bottom:110.263500px;}
.ye8{bottom:115.042950px;}
.y168{bottom:115.255500px;}
.y20a{bottom:116.121900px;}
.y1ac{bottom:116.914350px;}
.y1dc{bottom:119.524350px;}
.y5f{bottom:119.770350px;}
.y85{bottom:120.053850px;}
.y164{bottom:124.829550px;}
.yb9{bottom:124.946400px;}
.yd4{bottom:125.257350px;}
.y24a{bottom:125.263500px;}
.y184{bottom:125.391150px;}
.y10a{bottom:127.112100px;}
.y209{bottom:131.121900px;}
.yb8{bottom:133.202400px;}
.y1ab{bottom:134.914350px;}
.y5e{bottom:137.770350px;}
.y84{bottom:138.053850px;}
.y249{bottom:140.263500px;}
.y163{bottom:140.657550px;}
.yd3{bottom:141.505350px;}
.y183{bottom:141.639150px;}
.y109{bottom:145.112100px;}
.y208{bottom:146.121900px;}
.y248{bottom:155.263500px;}
.y5d{bottom:155.770350px;}
.y1db{bottom:155.929350px;}
.y83{bottom:156.053850px;}
.y162{bottom:156.465900px;}
.yb7{bottom:157.706400px;}
.yd2{bottom:157.753350px;}
.y182{bottom:157.887150px;}
.y207{bottom:161.121900px;}
.y108{bottom:163.112100px;}
.y28{bottom:164.168100px;}
.yb6{bottom:165.962400px;}
.y247{bottom:170.263500px;}
.y1aa{bottom:170.509350px;}
.y161{bottom:172.293900px;}
.y5c{bottom:173.770350px;}
.y1da{bottom:173.929350px;}
.yd1{bottom:174.001350px;}
.y82{bottom:174.053850px;}
.y181{bottom:174.135150px;}
.y206{bottom:176.121900px;}
.y107{bottom:181.112100px;}
.y27{bottom:182.168100px;}
.y246{bottom:185.263500px;}
.y160{bottom:188.121900px;}
.yd0{bottom:190.249350px;}
.y180{bottom:190.383150px;}
.yb5{bottom:190.466400px;}
.y205{bottom:191.121900px;}
.y5b{bottom:191.770350px;}
.y1d9{bottom:191.929350px;}
.y81{bottom:192.053850px;}
.yb4{bottom:198.722400px;}
.y106{bottom:199.112100px;}
.y26{bottom:200.168100px;}
.y245{bottom:200.263500px;}
.y15f{bottom:203.949900px;}
.y204{bottom:206.121900px;}
.ycf{bottom:206.497350px;}
.y17f{bottom:206.631150px;}
.y5a{bottom:209.770350px;}
.y1d8{bottom:209.929350px;}
.y80{bottom:210.053850px;}
.y244{bottom:215.263500px;}
.y105{bottom:217.112100px;}
.y25{bottom:218.168100px;}
.y15e{bottom:219.777900px;}
.y203{bottom:221.121900px;}
.yce{bottom:222.745350px;}
.y17e{bottom:222.879150px;}
.yb3{bottom:223.226400px;}
.y1a9{bottom:224.547000px;}
.y59{bottom:227.770350px;}
.y1d7{bottom:227.929350px;}
.y7f{bottom:228.053850px;}
.y243{bottom:230.263500px;}
.yb2{bottom:231.482400px;}
.y104{bottom:235.112100px;}
.y15d{bottom:235.605900px;}
.y202{bottom:236.121900px;}
.y24{bottom:236.168100px;}
.ycd{bottom:238.993350px;}
.y17d{bottom:239.127150px;}
.y1a8{bottom:239.547000px;}
.y242{bottom:245.263500px;}
.y58{bottom:245.770350px;}
.y1d6{bottom:245.929350px;}
.y7e{bottom:246.053850px;}
.y201{bottom:251.121900px;}
.y15c{bottom:251.433900px;}
.y103{bottom:253.112100px;}
.y23{bottom:254.168100px;}
.y1a7{bottom:254.547000px;}
.ycc{bottom:255.241350px;}
.yb1{bottom:255.986400px;}
.y241{bottom:260.263500px;}
.y57{bottom:263.770350px;}
.y138{bottom:263.777100px;}
.y1d5{bottom:263.929350px;}
.y7d{bottom:264.053850px;}
.yb0{bottom:264.242400px;}
.y200{bottom:266.121900px;}
.y15b{bottom:267.261900px;}
.y1a6{bottom:269.547000px;}
.y17c{bottom:270.639150px;}
.y102{bottom:271.112100px;}
.ycb{bottom:271.489350px;}
.y22{bottom:272.168100px;}
.y240{bottom:275.263500px;}
.y1ff{bottom:281.121900px;}
.y1d4{bottom:281.524350px;}
.y56{bottom:281.770350px;}
.y137{bottom:281.777100px;}
.y7c{bottom:282.053850px;}
.y15a{bottom:283.089900px;}
.y1a5{bottom:284.547000px;}
.yaf{bottom:288.746400px;}
.y101{bottom:289.112100px;}
.y21{bottom:290.168100px;}
.y23f{bottom:290.263500px;}
.y1fe{bottom:296.121900px;}
.yae{bottom:297.002400px;}
.y159{bottom:298.917900px;}
.y1a4{bottom:299.547000px;}
.y55{bottom:299.770350px;}
.y136{bottom:299.777100px;}
.y7b{bottom:300.053850px;}
.yca{bottom:303.001350px;}
.y23e{bottom:305.263500px;}
.y17b{bottom:305.534250px;}
.y100{bottom:307.112100px;}
.y20{bottom:308.168100px;}
.y1fd{bottom:311.121900px;}
.y1a3{bottom:314.547000px;}
.y158{bottom:314.745900px;}
.y54{bottom:317.770350px;}
.y135{bottom:317.777100px;}
.y1d3{bottom:317.929350px;}
.y7a{bottom:318.053850px;}
.y23d{bottom:320.263500px;}
.yad{bottom:321.506400px;}
.y17a{bottom:325.034250px;}
.yff{bottom:325.112100px;}
.y1fc{bottom:326.121900px;}
.y1f{bottom:326.168100px;}
.y1a2{bottom:329.547000px;}
.yac{bottom:329.762400px;}
.y157{bottom:330.573900px;}
.y23c{bottom:335.263500px;}
.y53{bottom:335.770350px;}
.y134{bottom:335.777100px;}
.y1d2{bottom:335.929350px;}
.y79{bottom:336.053850px;}
.yc9{bottom:337.896450px;}
.y1fb{bottom:341.121900px;}
.yfe{bottom:343.112100px;}
.y1e{bottom:344.168100px;}
.y1a1{bottom:344.547000px;}
.y156{bottom:346.401900px;}
.y23b{bottom:350.263500px;}
.y52{bottom:353.770350px;}
.y133{bottom:353.777100px;}
.y1d1{bottom:353.929350px;}
.y78{bottom:354.070350px;}
.yab{bottom:354.266400px;}
.y1fa{bottom:356.121900px;}
.y1a0{bottom:359.547000px;}
.yfd{bottom:361.112100px;}
.y1d{bottom:362.168100px;}
.y155{bottom:362.229900px;}
.yaa{bottom:362.522400px;}
.y23a{bottom:365.263500px;}
.y179{bottom:365.968500px;}
.y1f9{bottom:371.121900px;}
.y132{bottom:371.777100px;}
.y1d0{bottom:371.929350px;}
.y77{bottom:372.070350px;}
.y19f{bottom:374.547000px;}
.y154{bottom:378.057900px;}
.yfc{bottom:379.112100px;}
.y2a{bottom:380.168100px;}
.y239{bottom:380.263500px;}
.y178{bottom:381.712500px;}
.y1f8{bottom:386.121900px;}
.ya9{bottom:387.026400px;}
.y51{bottom:389.365350px;}
.y19e{bottom:389.547000px;}
.y131{bottom:389.777100px;}
.y1cf{bottom:389.929350px;}
.y76{bottom:390.070350px;}
.y153{bottom:393.885900px;}
.yc8{bottom:394.812450px;}
.y238{bottom:395.263500px;}
.ya8{bottom:395.282400px;}
.yfb{bottom:397.112100px;}
.y177{bottom:397.456500px;}
.y1c{bottom:397.765200px;}
.y29{bottom:398.168100px;}
.y1f7{bottom:401.121900px;}
.y19d{bottom:404.547000px;}
.y130{bottom:407.777100px;}
.y1ce{bottom:407.929350px;}
.y75{bottom:408.070350px;}
.y152{bottom:409.704450px;}
.y237{bottom:410.263500px;}
.yc7{bottom:411.060450px;}
.y176{bottom:413.200500px;}
.yfa{bottom:415.112100px;}
.y1f6{bottom:416.121900px;}
.y19c{bottom:419.547000px;}
.ya6{bottom:419.786400px;}
.y18b{bottom:421.244100px;}
.y50{bottom:425.230350px;}
.y236{bottom:425.263500px;}
.y151{bottom:425.532450px;}
.y12f{bottom:425.777100px;}
.y1cd{bottom:425.929350px;}
.y74{bottom:426.070350px;}
.yc6{bottom:427.308450px;}
.ya5{bottom:428.042400px;}
.y175{bottom:428.944500px;}
.y1f5{bottom:431.121900px;}
.y19b{bottom:434.547000px;}
.ya7{bottom:436.286400px;}
.y18a{bottom:436.988100px;}
.y235{bottom:440.263500px;}
.y150{bottom:441.360450px;}
.yc5{bottom:443.556450px;}
.y12e{bottom:443.777100px;}
.y1cc{bottom:443.929350px;}
.y73{bottom:444.070350px;}
.y1f4{bottom:446.121900px;}
.y19a{bottom:449.547000px;}
.yf9{bottom:449.952750px;}
.y189{bottom:452.732100px;}
.y234{bottom:455.263500px;}
.y14f{bottom:457.188450px;}
.yc4{bottom:459.804450px;}
.y1f3{bottom:461.121900px;}
.y12d{bottom:461.777100px;}
.y1cb{bottom:461.929350px;}
.y72{bottom:462.070350px;}
.y199{bottom:464.547000px;}
.ya4{bottom:465.302400px;}
.yf8{bottom:465.558750px;}
.y188{bottom:468.476100px;}
.y1b{bottom:468.508650px;}
.y233{bottom:470.263500px;}
.y14e{bottom:473.016450px;}
.ya3{bottom:473.558400px;}
.yc3{bottom:476.052450px;}
.y1f2{bottom:476.121900px;}
.y4f{bottom:479.770350px;}
.y12c{bottom:479.777100px;}
.yf7{bottom:479.920350px;}
.y1ca{bottom:479.929350px;}
.y71{bottom:480.070350px;}
.y187{bottom:484.220100px;}
.y232{bottom:485.263500px;}
.y1a{bottom:486.514200px;}
.y14d{bottom:488.844450px;}
.y1f1{bottom:491.121900px;}
.yc2{bottom:492.552450px;}
.yf6{bottom:497.515350px;}
.y198{bottom:497.665350px;}
.y4e{bottom:497.770350px;}
.y12b{bottom:497.777100px;}
.y1c9{bottom:497.929350px;}
.y70{bottom:498.070350px;}
.y231{bottom:500.263500px;}
.y14c{bottom:504.672450px;}
.y1f0{bottom:506.121900px;}
.yc1{bottom:508.800450px;}
.y19{bottom:513.859200px;}
.ya2{bottom:514.210350px;}
.y230{bottom:515.263500px;}
.yf5{bottom:515.515350px;}
.y197{bottom:515.665350px;}
.y4d{bottom:515.770350px;}
.y12a{bottom:515.777100px;}
.y1c8{bottom:515.929350px;}
.y14b{bottom:520.500450px;}
.y1ef{bottom:521.121900px;}
.y22f{bottom:530.263500px;}
.y18{bottom:531.859200px;}
.y6f{bottom:533.665350px;}
.ya1{bottom:533.710350px;}
.y4c{bottom:533.770350px;}
.y129{bottom:533.777100px;}
.y1c7{bottom:533.929350px;}
.y1ee{bottom:536.121900px;}
.y14a{bottom:536.328450px;}
.yc0{bottom:541.548450px;}
.y22e{bottom:545.263500px;}
.y17{bottom:549.859200px;}
.y1ed{bottom:551.121900px;}
.yf4{bottom:551.365350px;}
.y4b{bottom:551.770350px;}
.y128{bottom:551.777100px;}
.y196{bottom:551.920350px;}
.y1c6{bottom:551.929350px;}
.y149{bottom:552.156450px;}
.y22d{bottom:560.263500px;}
.y1ec{bottom:566.121900px;}
.y16{bottom:567.859200px;}
.y148{bottom:567.984450px;}
.yf3{bottom:569.365350px;}
.y4a{bottom:569.770350px;}
.y269{bottom:569.772600px;}
.y127{bottom:569.777100px;}
.y6e{bottom:569.920350px;}
.y1c5{bottom:569.929350px;}
.ybf{bottom:573.060450px;}
.y22c{bottom:575.263500px;}
.y1eb{bottom:581.121900px;}
.y147{bottom:583.812450px;}
.y15{bottom:585.859200px;}
.yf2{bottom:587.365350px;}
.y1c4{bottom:587.524350px;}
.y49{bottom:587.770350px;}
.y268{bottom:587.772600px;}
.y126{bottom:587.777100px;}
.y6d{bottom:587.920350px;}
.y22b{bottom:590.263500px;}
.y1ea{bottom:596.121900px;}
.y146{bottom:599.640450px;}
.y14{bottom:603.859200px;}
.y22a{bottom:605.263500px;}
.yf1{bottom:605.365350px;}
.y48{bottom:605.770350px;}
.y9f{bottom:605.772600px;}
.y125{bottom:605.777100px;}
.y6c{bottom:605.920350px;}
.ybe{bottom:607.960350px;}
.y1e9{bottom:611.121900px;}
.y145{bottom:615.468450px;}
.y229{bottom:620.263500px;}
.y13{bottom:621.859200px;}
.yf0{bottom:623.365350px;}
.y47{bottom:623.770350px;}
.y9e{bottom:623.772600px;}
.y124{bottom:623.777100px;}
.y6b{bottom:623.920350px;}
.y1c3{bottom:623.929350px;}
.y1e8{bottom:626.121900px;}
.ybd{bottom:627.460350px;}
.y144{bottom:631.296450px;}
.y228{bottom:635.263500px;}
.y12{bottom:639.859200px;}
.y1e7{bottom:641.121900px;}
.yef{bottom:641.365350px;}
.y46{bottom:641.770350px;}
.y9d{bottom:641.772600px;}
.y123{bottom:641.777100px;}
.y6a{bottom:641.920350px;}
.y1c2{bottom:641.929350px;}
.y227{bottom:650.263500px;}
.y1e6{bottom:656.121900px;}
.y16d{bottom:657.403500px;}
.y11{bottom:657.859200px;}
.yee{bottom:659.365350px;}
.y45{bottom:659.770350px;}
.y9c{bottom:659.772600px;}
.y122{bottom:659.777100px;}
.y69{bottom:659.920350px;}
.y1c1{bottom:659.929350px;}
.y143{bottom:660.300450px;}
.y226{bottom:665.263500px;}
.y1e5{bottom:671.121900px;}
.y16c{bottom:673.147500px;}
.y10{bottom:675.859200px;}
.yed{bottom:677.365350px;}
.ya0{bottom:677.515350px;}
.y44{bottom:677.770350px;}
.y9b{bottom:677.772600px;}
.y121{bottom:677.777100px;}
.y68{bottom:677.920350px;}
.y1c0{bottom:677.929350px;}
.y267{bottom:680.263500px;}
.y225{bottom:680.265900px;}
.y1e4{bottom:686.121900px;}
.y16b{bottom:688.891500px;}
.y142{bottom:689.304450px;}
.y266{bottom:695.263500px;}
.y224{bottom:695.265900px;}
.y43{bottom:695.770350px;}
.y9a{bottom:695.772600px;}
.y120{bottom:695.777100px;}
.y67{bottom:695.920350px;}
.y1bf{bottom:695.929350px;}
.y1e3{bottom:701.121900px;}
.y265{bottom:710.263500px;}
.y223{bottom:710.265900px;}
.yec{bottom:713.230350px;}
.y42{bottom:713.770350px;}
.y99{bottom:713.772600px;}
.y11f{bottom:713.777100px;}
.ye7{bottom:713.785350px;}
.y66{bottom:713.920350px;}
.y1be{bottom:713.929350px;}
.y1e2{bottom:716.121900px;}
.yf{bottom:721.017300px;}
.y141{bottom:721.705350px;}
.y264{bottom:725.263500px;}
.y222{bottom:725.265900px;}
.y41{bottom:731.770350px;}
.y98{bottom:731.772600px;}
.y11e{bottom:731.777100px;}
.ye6{bottom:731.785350px;}
.y65{bottom:731.920350px;}
.y1bd{bottom:731.929350px;}
.ye{bottom:733.468050px;}
.y263{bottom:740.263500px;}
.y221{bottom:740.265900px;}
.y140{bottom:741.205350px;}
.y1e1{bottom:749.232600px;}
.yd8{bottom:749.515350px;}
.y40{bottom:749.770350px;}
.y97{bottom:749.772600px;}
.y11d{bottom:749.777100px;}
.ye5{bottom:749.785350px;}
.y64{bottom:749.920350px;}
.y1bc{bottom:749.929350px;}
.y262{bottom:755.263500px;}
.y220{bottom:755.265900px;}
.y3f{bottom:767.770350px;}
.y96{bottom:767.772600px;}
.y11c{bottom:767.777100px;}
.ye4{bottom:767.785350px;}
.y63{bottom:767.920350px;}
.y261{bottom:770.263500px;}
.y21f{bottom:770.265900px;}
.yd{bottom:770.608950px;}
.yc{bottom:778.683600px;}
.y260{bottom:785.263500px;}
.y21e{bottom:785.265900px;}
.y1bb{bottom:785.524350px;}
.y3e{bottom:785.770350px;}
.y95{bottom:785.772600px;}
.y11b{bottom:785.777100px;}
.y13f{bottom:785.785350px;}
.y62{bottom:785.920350px;}
.yb{bottom:797.608950px;}
.y25f{bottom:800.263500px;}
.y21d{bottom:800.265900px;}
.ye3{bottom:803.380350px;}
.y3d{bottom:803.770350px;}
.y94{bottom:803.772600px;}
.y11a{bottom:803.777100px;}
.y13e{bottom:803.785350px;}
.y172{bottom:803.920350px;}
.ya{bottom:805.683600px;}
.y25e{bottom:815.263500px;}
.y21c{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.y1e0{bottom:821.367600px;}
.ye2{bottom:821.380350px;}
.y61{bottom:821.515350px;}
.y3c{bottom:821.770350px;}
.y93{bottom:821.772600px;}
.y119{bottom:821.777100px;}
.y1ba{bottom:821.779350px;}
.y13d{bottom:821.785350px;}
.y171{bottom:821.920350px;}
.y25d{bottom:830.263500px;}
.y21b{bottom:830.265900px;}
.y8{bottom:838.108950px;}
.y3b{bottom:839.770350px;}
.y92{bottom:839.772600px;}
.y118{bottom:839.777100px;}
.y1b9{bottom:839.779350px;}
.y13c{bottom:839.785350px;}
.y170{bottom:839.920350px;}
.y25c{bottom:845.263500px;}
.y21a{bottom:845.265900px;}
.ye1{bottom:857.245350px;}
.y1df{bottom:857.367600px;}
.y3a{bottom:857.770350px;}
.y91{bottom:857.772600px;}
.y117{bottom:857.777100px;}
.y1b8{bottom:857.779350px;}
.y195{bottom:857.920350px;}
.y25b{bottom:860.263500px;}
.y219{bottom:860.265900px;}
.y7{bottom:866.836200px;}
.y25a{bottom:875.263500px;}
.y218{bottom:875.265900px;}
.y13b{bottom:875.380350px;}
.y16f{bottom:875.515350px;}
.y39{bottom:875.770350px;}
.y90{bottom:875.772600px;}
.y116{bottom:875.777100px;}
.y1b7{bottom:875.779350px;}
.y194{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y259{bottom:890.263500px;}
.y217{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y8f{bottom:893.772600px;}
.y115{bottom:893.777100px;}
.y1b6{bottom:893.779350px;}
.y193{bottom:893.920350px;}
.y258{bottom:905.263500px;}
.y216{bottom:905.265900px;}
.y13a{bottom:911.245350px;}
.y37{bottom:911.770350px;}
.y8e{bottom:911.772600px;}
.y114{bottom:911.777100px;}
.y1b5{bottom:911.779350px;}
.ye0{bottom:911.785350px;}
.y192{bottom:911.920350px;}
.y257{bottom:920.263500px;}
.y215{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y8d{bottom:929.772600px;}
.y113{bottom:929.777100px;}
.y1b4{bottom:929.779350px;}
.ydf{bottom:929.785350px;}
.y191{bottom:929.920350px;}
.y5{bottom:934.012050px;}
.y256{bottom:935.263500px;}
.y214{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y8c{bottom:947.772600px;}
.y112{bottom:947.777100px;}
.y1b3{bottom:947.779350px;}
.yde{bottom:947.785350px;}
.y190{bottom:947.920350px;}
.y255{bottom:950.263500px;}
.y213{bottom:950.265900px;}
.y254{bottom:965.263500px;}
.y212{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y8b{bottom:965.772600px;}
.y111{bottom:965.777100px;}
.y1b2{bottom:965.779350px;}
.ydd{bottom:965.785350px;}
.y18f{bottom:965.920350px;}
.y4{bottom:970.472850px;}
.y253{bottom:980.263500px;}
.y211{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y8a{bottom:983.772600px;}
.y110{bottom:983.777100px;}
.y1b1{bottom:983.779350px;}
.ydc{bottom:983.785350px;}
.y252{bottom:995.263500px;}
.y210{bottom:995.265900px;}
.y18e{bottom:1001.515350px;}
.y32{bottom:1001.770350px;}
.y89{bottom:1001.772600px;}
.y10f{bottom:1001.777100px;}
.y1b0{bottom:1001.779350px;}
.ydb{bottom:1001.785350px;}
.y3{bottom:1006.933650px;}
.y251{bottom:1010.263500px;}
.y20f{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y1de{bottom:1019.772600px;}
.y10e{bottom:1019.777100px;}
.y1af{bottom:1019.779350px;}
.yda{bottom:1019.785350px;}
.y250{bottom:1025.263500px;}
.y20e{bottom:1025.265900px;}
.y88{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.y10d{bottom:1037.777100px;}
.y1ae{bottom:1037.779350px;}
.yd9{bottom:1037.785350px;}
.y24f{bottom:1040.263500px;}
.y20d{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.ybc{bottom:1132.322400px;}
.y167{bottom:1132.409550px;}
.y87{bottom:1132.418700px;}
.y16e{bottom:1132.421700px;}
.y24e{bottom:1132.423500px;}
.yeb{bottom:1132.426950px;}
.yd7{bottom:1132.453350px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.he{height:32.761230px;}
.h8{height:32.805176px;}
.h18{height:33.351562px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.h14{height:40.031250px;}
.h16{height:40.069050px;}
.h17{height:40.109850px;}
.h11{height:41.689453px;}
.ha{height:43.681641px;}
.hc{height:43.718034px;}
.hb{height:43.740234px;}
.h15{height:45.035156px;}
.hd{height:50.039062px;}
.h19{height:51.659062px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h12{height:57.426773px;}
.h13{height:73.007250px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:70.582650px;}
.xb{left:76.535400px;}
.x1a{left:78.661350px;}
.x24{left:85.055400px;}
.x2a{left:90.634050px;}
.x27{left:92.720400px;}
.x26{left:95.075400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x14{left:99.921300px;}
.x31{left:102.050850px;}
.x4{left:106.299150px;}
.xd{left:110.540400px;}
.x28{left:113.435400px;}
.x23{left:121.745400px;}
.x34{left:123.307350px;}
.x3{left:125.439150px;}
.x22{left:127.310400px;}
.x7{left:131.811000px;}
.xc{left:144.710400px;}
.x29{left:146.030400px;}
.x21{left:160.970400px;}
.x25{left:181.745400px;}
.x32{left:190.132500px;}
.x5{left:191.348250px;}
.x2b{left:200.537550px;}
.x16{left:203.889300px;}
.x1e{left:209.641350px;}
.x6{left:212.876400px;}
.x1b{left:214.369350px;}
.x33{left:215.560350px;}
.x1d{left:221.281350px;}
.x18{left:299.661300px;}
.x17{left:320.973300px;}
.x15{left:363.909300px;}
.x2d{left:374.541300px;}
.x1f{left:383.970150px;}
.xa{left:455.041500px;}
.xe{left:457.070400px;}
.x12{left:478.345350px;}
.x8{left:480.471000px;}
.x36{left:482.603250px;}
.xf{left:491.105400px;}
.x35{left:503.875350px;}
.x13{left:512.365350px;}
.x2c{left:600.685350px;}
.x20{left:612.910350px;}
.x11{left:663.492300px;}
.x1c{left:673.309350px;}
.x2{left:693.365400px;}
.x2f{left:721.717650px;}
.x10{left:728.391600px;}
.x30{left:743.868150px;}
.x19{left:749.661300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.114667pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:29.312000pt;}
.ls55{letter-spacing:-2.986667pt;}
.ls54{letter-spacing:-2.933333pt;}
.ls8a{letter-spacing:-2.346667pt;}
.ls59{letter-spacing:-2.304000pt;}
.ls3b{letter-spacing:-2.026667pt;}
.ls42{letter-spacing:-0.906667pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls62{letter-spacing:-0.533333pt;}
.ls63{letter-spacing:-0.469333pt;}
.ls93{letter-spacing:-0.298667pt;}
.ls88{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.200000pt;}
.ls94{letter-spacing:-0.170667pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls89{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls95{letter-spacing:-0.085333pt;}
.ls43{letter-spacing:-0.053333pt;}
.ls64{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.005045pt;}
.ls57{letter-spacing:0.042667pt;}
.ls41{letter-spacing:0.053333pt;}
.ls58{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls4c{letter-spacing:0.128000pt;}
.ls47{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls7f{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls6a{letter-spacing:0.298667pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls6f{letter-spacing:0.341333pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls68{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls6e{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.480000pt;}
.ls71{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.554667pt;}
.ls45{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.597333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls70{letter-spacing:0.682667pt;}
.ls25{letter-spacing:0.693333pt;}
.ls6c{letter-spacing:0.725333pt;}
.ls37{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.800000pt;}
.ls78{letter-spacing:0.810667pt;}
.ls21{letter-spacing:0.853333pt;}
.ls86{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:0.906667pt;}
.ls80{letter-spacing:0.938667pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls7a{letter-spacing:0.981333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls7e{letter-spacing:1.024000pt;}
.ls3e{letter-spacing:1.066667pt;}
.ls8e{letter-spacing:1.109333pt;}
.ls32{letter-spacing:1.120000pt;}
.ls3f{letter-spacing:1.148267pt;}
.lsa{letter-spacing:1.173333pt;}
.ls76{letter-spacing:1.194667pt;}
.ls2c{letter-spacing:1.226667pt;}
.ls73{letter-spacing:1.237333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.333333pt;}
.ls8c{letter-spacing:1.365333pt;}
.ls46{letter-spacing:1.386667pt;}
.ls67{letter-spacing:1.408000pt;}
.ls2d{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.493333pt;}
.ls79{letter-spacing:1.536000pt;}
.ls24{letter-spacing:1.546667pt;}
.ls81{letter-spacing:1.578667pt;}
.ls30{letter-spacing:1.600000pt;}
.ls82{letter-spacing:1.621333pt;}
.ls17{letter-spacing:1.653333pt;}
.ls53{letter-spacing:1.664000pt;}
.ls1a{letter-spacing:1.706667pt;}
.ls85{letter-spacing:1.749333pt;}
.ls35{letter-spacing:1.760000pt;}
.ls84{letter-spacing:1.792000pt;}
.ls19{letter-spacing:1.813333pt;}
.ls7d{letter-spacing:1.834667pt;}
.ls2e{letter-spacing:1.866667pt;}
.ls8b{letter-spacing:1.877333pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls92{letter-spacing:1.962667pt;}
.ls23{letter-spacing:1.973333pt;}
.ls7c{letter-spacing:2.005333pt;}
.ls22{letter-spacing:2.026667pt;}
.ls3d{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls2a{letter-spacing:2.186667pt;}
.ls77{letter-spacing:2.218667pt;}
.ls29{letter-spacing:2.240000pt;}
.ls50{letter-spacing:2.293333pt;}
.ls11{letter-spacing:2.346667pt;}
.ls83{letter-spacing:2.389333pt;}
.ls9{letter-spacing:2.400000pt;}
.ls51{letter-spacing:2.453333pt;}
.ls4d{letter-spacing:2.474667pt;}
.ls3c{letter-spacing:2.506667pt;}
.ls91{letter-spacing:2.517333pt;}
.ls10{letter-spacing:2.560000pt;}
.ls72{letter-spacing:2.602667pt;}
.lsc{letter-spacing:2.613333pt;}
.ls7b{letter-spacing:2.645333pt;}
.lsf{letter-spacing:2.666667pt;}
.ls36{letter-spacing:2.773333pt;}
.ls12{letter-spacing:2.826667pt;}
.ls8d{letter-spacing:2.858667pt;}
.ls52{letter-spacing:2.880000pt;}
.ls8f{letter-spacing:2.986667pt;}
.ls4a{letter-spacing:3.040000pt;}
.ls2f{letter-spacing:3.093333pt;}
.ls87{letter-spacing:3.114667pt;}
.ls8{letter-spacing:3.146667pt;}
.ls5f{letter-spacing:3.200000pt;}
.ls5a{letter-spacing:3.306667pt;}
.ls69{letter-spacing:3.328000pt;}
.ls75{letter-spacing:3.584000pt;}
.ls28{letter-spacing:3.626667pt;}
.ls4f{letter-spacing:3.669333pt;}
.ls44{letter-spacing:3.733333pt;}
.ls5b{letter-spacing:3.786667pt;}
.ls49{letter-spacing:3.840000pt;}
.ls90{letter-spacing:3.882667pt;}
.ls40{letter-spacing:3.893333pt;}
.ls96{letter-spacing:3.946667pt;}
.ls16{letter-spacing:4.053333pt;}
.ls4{letter-spacing:4.106667pt;}
.ls56{letter-spacing:4.181333pt;}
.ls5c{letter-spacing:4.213333pt;}
.ls4b{letter-spacing:4.266667pt;}
.ls60{letter-spacing:4.373333pt;}
.ls61{letter-spacing:4.586667pt;}
.ls5d{letter-spacing:5.120000pt;}
.ls33{letter-spacing:5.493333pt;}
.ls31{letter-spacing:6.026667pt;}
.ls65{letter-spacing:6.560000pt;}
.ls48{letter-spacing:6.613333pt;}
.ls66{letter-spacing:6.773333pt;}
.ls5e{letter-spacing:9.493333pt;}
.ls2{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ws7c{word-spacing:-19.946667pt;}
.ws7e{word-spacing:-16.533333pt;}
.ws67{word-spacing:-15.786667pt;}
.ws7d{word-spacing:-15.626667pt;}
.ws13{word-spacing:-15.360000pt;}
.ws14{word-spacing:-15.306667pt;}
.ws18{word-spacing:-15.146667pt;}
.ws17{word-spacing:-14.933333pt;}
.ws15{word-spacing:-14.880000pt;}
.ws47{word-spacing:-14.826667pt;}
.ws57{word-spacing:-14.720000pt;}
.ws2e{word-spacing:-14.506667pt;}
.ws6a{word-spacing:-14.453333pt;}
.ws12{word-spacing:-14.293333pt;}
.ws96{word-spacing:-14.250667pt;}
.ws11{word-spacing:-14.240000pt;}
.ws68{word-spacing:-14.080000pt;}
.ws69{word-spacing:-14.026667pt;}
.ws2{word-spacing:-13.973333pt;}
.ws4c{word-spacing:-13.920000pt;}
.ws19{word-spacing:-13.866667pt;}
.ws10{word-spacing:-13.706667pt;}
.ws4d{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.440000pt;}
.ws4b{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws94{word-spacing:-13.269333pt;}
.ws49{word-spacing:-13.226667pt;}
.ws99{word-spacing:-12.672000pt;}
.ws9d{word-spacing:-12.458667pt;}
.ws9b{word-spacing:-12.245333pt;}
.ws97{word-spacing:-12.202667pt;}
.ws4a{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.861333pt;}
.wsb6{word-spacing:-11.562667pt;}
.ws98{word-spacing:-11.477333pt;}
.wsb7{word-spacing:-11.434667pt;}
.ws93{word-spacing:-11.349333pt;}
.ws72{word-spacing:-11.306667pt;}
.ws90{word-spacing:-11.136000pt;}
.ws4{word-spacing:-11.120000pt;}
.ws91{word-spacing:-10.965333pt;}
.ws9a{word-spacing:-10.922667pt;}
.ws92{word-spacing:-10.880000pt;}
.ws60{word-spacing:-10.837333pt;}
.ws76{word-spacing:-10.709333pt;}
.ws32{word-spacing:-10.666667pt;}
.ws95{word-spacing:-10.624000pt;}
.ws66{word-spacing:-10.400000pt;}
.ws8b{word-spacing:-10.026667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws89{word-spacing:-8.832000pt;}
.ws9c{word-spacing:-8.320000pt;}
.ws81{word-spacing:-5.589333pt;}
.ws85{word-spacing:-5.376000pt;}
.ws83{word-spacing:-4.352000pt;}
.wsbf{word-spacing:-3.882667pt;}
.ws8c{word-spacing:-3.786667pt;}
.wsa7{word-spacing:-3.584000pt;}
.wsb5{word-spacing:-3.114667pt;}
.wscf{word-spacing:-2.816000pt;}
.wsd{word-spacing:-2.666667pt;}
.wsa5{word-spacing:-2.645333pt;}
.ws70{word-spacing:-2.613333pt;}
.wscc{word-spacing:-2.602667pt;}
.ws7{word-spacing:-2.565333pt;}
.ws45{word-spacing:-2.506667pt;}
.ws9f{word-spacing:-2.400000pt;}
.wsb1{word-spacing:-2.389333pt;}
.wsbb{word-spacing:-2.346667pt;}
.wsc9{word-spacing:-2.218667pt;}
.ws50{word-spacing:-2.186667pt;}
.ws87{word-spacing:-2.176000pt;}
.wscd{word-spacing:-2.133333pt;}
.ws82{word-spacing:-2.048000pt;}
.ws1d{word-spacing:-2.026667pt;}
.ws84{word-spacing:-2.005333pt;}
.ws1e{word-spacing:-1.973333pt;}
.wsb9{word-spacing:-1.877333pt;}
.wsad{word-spacing:-1.834667pt;}
.ws1a{word-spacing:-1.813333pt;}
.wsb3{word-spacing:-1.749333pt;}
.wsaa{word-spacing:-1.536000pt;}
.ws2c{word-spacing:-1.493333pt;}
.ws4f{word-spacing:-1.440000pt;}
.wsba{word-spacing:-1.365333pt;}
.wsd0{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.120000pt;}
.wsa6{word-spacing:-1.066667pt;}
.wsae{word-spacing:-1.024000pt;}
.wsc4{word-spacing:-0.896000pt;}
.ws6f{word-spacing:-0.853333pt;}
.wsc7{word-spacing:-0.725333pt;}
.wsa3{word-spacing:-0.682667pt;}
.ws3f{word-spacing:-0.640000pt;}
.wsc6{word-spacing:-0.597333pt;}
.ws54{word-spacing:-0.586667pt;}
.ws44{word-spacing:-0.533333pt;}
.wsa0{word-spacing:-0.469333pt;}
.ws52{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws46{word-spacing:-0.266667pt;}
.wsaf{word-spacing:-0.256000pt;}
.wsa2{word-spacing:-0.213333pt;}
.ws62{word-spacing:-0.170667pt;}
.ws22{word-spacing:-0.106667pt;}
.ws7b{word-spacing:-0.085333pt;}
.wsc5{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws86{word-spacing:0.042667pt;}
.ws5d{word-spacing:0.053333pt;}
.ws75{word-spacing:0.106667pt;}
.wsc3{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.160000pt;}
.wscb{word-spacing:0.170667pt;}
.ws8{word-spacing:0.200000pt;}
.ws77{word-spacing:0.256000pt;}
.ws3e{word-spacing:0.266667pt;}
.wsc0{word-spacing:0.298667pt;}
.wsb8{word-spacing:0.341333pt;}
.ws6d{word-spacing:0.373333pt;}
.wsca{word-spacing:0.384000pt;}
.ws8f{word-spacing:0.426667pt;}
.ws79{word-spacing:0.512000pt;}
.ws78{word-spacing:0.640000pt;}
.ws48{word-spacing:0.693333pt;}
.ws55{word-spacing:0.746667pt;}
.wsb2{word-spacing:0.853333pt;}
.ws88{word-spacing:0.896000pt;}
.wsc8{word-spacing:1.066667pt;}
.wsab{word-spacing:1.109333pt;}
.ws42{word-spacing:1.226667pt;}
.ws5c{word-spacing:1.280000pt;}
.wsbd{word-spacing:1.322667pt;}
.ws25{word-spacing:1.333333pt;}
.ws1c{word-spacing:1.386667pt;}
.wsb4{word-spacing:1.408000pt;}
.ws6c{word-spacing:1.440000pt;}
.ws7f{word-spacing:1.493333pt;}
.wsbc{word-spacing:1.578667pt;}
.ws51{word-spacing:1.600000pt;}
.wse{word-spacing:1.653333pt;}
.ws71{word-spacing:1.664000pt;}
.ws20{word-spacing:1.920000pt;}
.wsa9{word-spacing:2.005333pt;}
.wsa{word-spacing:2.026667pt;}
.ws34{word-spacing:2.080000pt;}
.ws21{word-spacing:2.133333pt;}
.ws65{word-spacing:2.176000pt;}
.ws36{word-spacing:2.186667pt;}
.ws24{word-spacing:2.240000pt;}
.wsac{word-spacing:2.261333pt;}
.wsa1{word-spacing:2.304000pt;}
.ws56{word-spacing:2.346667pt;}
.wsc1{word-spacing:2.432000pt;}
.ws8d{word-spacing:2.453333pt;}
.ws61{word-spacing:2.474667pt;}
.ws37{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.613333pt;}
.ws80{word-spacing:2.666667pt;}
.wsa8{word-spacing:2.773333pt;}
.wsb0{word-spacing:2.816000pt;}
.ws33{word-spacing:2.826667pt;}
.wsc2{word-spacing:2.858667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws27{word-spacing:2.933333pt;}
.ws2a{word-spacing:2.986667pt;}
.ws28{word-spacing:3.040000pt;}
.wsa4{word-spacing:3.072000pt;}
.ws40{word-spacing:3.093333pt;}
.wsbe{word-spacing:3.157333pt;}
.ws8a{word-spacing:3.242667pt;}
.ws41{word-spacing:3.360000pt;}
.wsce{word-spacing:3.370667pt;}
.wsc{word-spacing:3.413333pt;}
.ws23{word-spacing:3.466667pt;}
.ws63{word-spacing:3.498667pt;}
.ws6b{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.541333pt;}
.wsf{word-spacing:3.573333pt;}
.ws35{word-spacing:3.626667pt;}
.ws64{word-spacing:3.669333pt;}
.ws53{word-spacing:3.786667pt;}
.ws5e{word-spacing:3.893333pt;}
.ws43{word-spacing:4.000000pt;}
.ws1f{word-spacing:4.160000pt;}
.ws74{word-spacing:4.181333pt;}
.ws29{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws8e{word-spacing:4.853333pt;}
.ws9e{word-spacing:4.906667pt;}
.ws7a{word-spacing:5.888000pt;}
.ws2d{word-spacing:7.360000pt;}
.ws1{word-spacing:43.841803pt;}
.ws5a{word-spacing:106.752000pt;}
.ws5b{word-spacing:107.562667pt;}
.ws59{word-spacing:125.269333pt;}
.ws38{word-spacing:162.048000pt;}
.ws3c{word-spacing:207.914667pt;}
.ws58{word-spacing:245.504000pt;}
.ws73{word-spacing:264.192000pt;}
.ws30{word-spacing:268.842667pt;}
.ws2f{word-spacing:268.885333pt;}
.ws31{word-spacing:279.509333pt;}
.ws3d{word-spacing:292.053333pt;}
.ws3b{word-spacing:318.122667pt;}
.ws3a{word-spacing:327.594667pt;}
.ws39{word-spacing:403.968000pt;}
._e{margin-left:-2576.085333pt;}
._1d{margin-left:-2554.922667pt;}
._2{margin-left:-8.440000pt;}
._b{margin-left:-6.880000pt;}
._7{margin-left:-5.859200pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.120000pt;}
._6{width:0.938667pt;}
._c{width:2.677333pt;}
._9{width:3.573333pt;}
._a{width:4.613333pt;}
._d{width:5.866667pt;}
._8{width:7.093333pt;}
._71{width:8.960000pt;}
._72{width:10.077867pt;}
._6f{width:48.042667pt;}
._4{width:52.918768pt;}
._70{width:58.708800pt;}
._3f{width:106.752000pt;}
._40{width:117.418667pt;}
._4a{width:119.210667pt;}
._3e{width:124.544000pt;}
._42{width:128.085333pt;}
._4e{width:129.877333pt;}
._49{width:131.328000pt;}
._55{width:132.295467pt;}
._52{width:134.627200pt;}
._43{width:135.594667pt;}
._46{width:136.960000pt;}
._41{width:138.752000pt;}
._59{width:140.544000pt;}
._3d{width:142.378667pt;}
._3c{width:145.877333pt;}
._47{width:147.626667pt;}
._51{width:151.210667pt;}
._4d{width:153.045333pt;}
._4c{width:156.544000pt;}
._f{width:161.450667pt;}
._58{width:163.114667pt;}
._24{width:166.826667pt;}
._50{width:174.378667pt;}
._48{width:192.170667pt;}
._3a{width:196.437333pt;}
._45{width:197.461333pt;}
._19{width:202.368000pt;}
._1f{width:204.714667pt;}
._44{width:209.920000pt;}
._1a{width:218.197333pt;}
._2f{width:219.349333pt;}
._13{width:222.645333pt;}
._5e{width:224.341333pt;}
._4b{width:230.229333pt;}
._26{width:234.453333pt;}
._4f{width:237.312000pt;}
._65{width:244.138667pt;}
._5b{width:245.717333pt;}
._10{width:248.405333pt;}
._63{width:255.274667pt;}
._29{width:256.853333pt;}
._2b{width:260.394667pt;}
._5d{width:262.229333pt;}
._1e{width:266.717333pt;}
._20{width:269.269333pt;}
._57{width:271.744000pt;}
._23{width:273.842667pt;}
._5c{width:274.824000pt;}
._25{width:277.426667pt;}
._2c{width:280.576000pt;}
._62{width:281.941333pt;}
._5a{width:283.605333pt;}
._39{width:286.976000pt;}
._2a{width:288.363200pt;}
._6b{width:289.754667pt;}
._67{width:292.608000pt;}
._17{width:296.021333pt;}
._12{width:297.642667pt;}
._27{width:301.866667pt;}
._22{width:303.530667pt;}
._18{width:306.730667pt;}
._60{width:308.053333pt;}
._21{width:312.106667pt;}
._16{width:314.197333pt;}
._37{width:323.157333pt;}
._68{width:324.906667pt;}
._2d{width:341.802667pt;}
._2e{width:362.978667pt;}
._28{width:368.469333pt;}
._54{width:374.826667pt;}
._1c{width:376.661333pt;}
._38{width:380.672000pt;}
._1b{width:387.328000pt;}
._14{width:389.632000pt;}
._15{width:400.298667pt;}
._6e{width:410.624000pt;}
._53{width:419.840000pt;}
._35{width:438.106667pt;}
._34{width:459.440000pt;}
._32{width:477.274667pt;}
._56{width:483.797333pt;}
._11{width:488.789333pt;}
._30{width:502.106667pt;}
._33{width:519.040000pt;}
._31{width:525.829333pt;}
._3b{width:532.352000pt;}
._36{width:582.229333pt;}
._6a{width:779.008000pt;}
._6d{width:830.037333pt;}
._6c{width:862.642667pt;}
._69{width:878.549333pt;}
._61{width:901.120000pt;}
._64{width:915.285333pt;}
._66{width:955.562667pt;}
._5f{width:1043.328000pt;}
.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;}
.y2f{bottom:42.468667pt;}
.y24d{bottom:71.345333pt;}
.y166{bottom:73.615600pt;}
.y186{bottom:74.114800pt;}
.yd6{bottom:74.219867pt;}
.yea{bottom:74.271067pt;}
.y18d{bottom:74.376000pt;}
.y16a{bottom:74.460000pt;}
.y139{bottom:74.462533pt;}
.y174{bottom:74.470400pt;}
.y20c{bottom:76.552800pt;}
.y2c{bottom:78.246000pt;}
.y10c{bottom:80.988533pt;}
.ybb{bottom:81.943467pt;}
.y24c{bottom:84.678667pt;}
.y1ad{bottom:87.923867pt;}
.ye9{bottom:88.265733pt;}
.y165{bottom:88.282267pt;}
.y18c{bottom:88.370667pt;}
.y169{bottom:88.454667pt;}
.y173{bottom:88.465067pt;}
.y185{bottom:88.781467pt;}
.yba{bottom:89.282133pt;}
.y20b{bottom:89.886133pt;}
.y60{bottom:90.462533pt;}
.y1dd{bottom:90.603867pt;}
.y86{bottom:90.714533pt;}
.y2b{bottom:91.576000pt;}
.yd5{bottom:96.897200pt;}
.y10b{bottom:96.988533pt;}
.y24b{bottom:98.012000pt;}
.ye8{bottom:102.260400pt;}
.y168{bottom:102.449333pt;}
.y20a{bottom:103.219467pt;}
.y1ac{bottom:103.923867pt;}
.y1dc{bottom:106.243867pt;}
.y5f{bottom:106.462533pt;}
.y85{bottom:106.714533pt;}
.y164{bottom:110.959600pt;}
.yb9{bottom:111.063467pt;}
.yd4{bottom:111.339867pt;}
.y24a{bottom:111.345333pt;}
.y184{bottom:111.458800pt;}
.y10a{bottom:112.988533pt;}
.y209{bottom:116.552800pt;}
.yb8{bottom:118.402133pt;}
.y1ab{bottom:119.923867pt;}
.y5e{bottom:122.462533pt;}
.y84{bottom:122.714533pt;}
.y249{bottom:124.678667pt;}
.y163{bottom:125.028933pt;}
.yd3{bottom:125.782533pt;}
.y183{bottom:125.901467pt;}
.y109{bottom:128.988533pt;}
.y208{bottom:129.886133pt;}
.y248{bottom:138.012000pt;}
.y5d{bottom:138.462533pt;}
.y1db{bottom:138.603867pt;}
.y83{bottom:138.714533pt;}
.y162{bottom:139.080800pt;}
.yb7{bottom:140.183467pt;}
.yd2{bottom:140.225200pt;}
.y182{bottom:140.344133pt;}
.y207{bottom:143.219467pt;}
.y108{bottom:144.988533pt;}
.y28{bottom:145.927200pt;}
.yb6{bottom:147.522133pt;}
.y247{bottom:151.345333pt;}
.y1aa{bottom:151.563867pt;}
.y161{bottom:153.150133pt;}
.y5c{bottom:154.462533pt;}
.y1da{bottom:154.603867pt;}
.yd1{bottom:154.667867pt;}
.y82{bottom:154.714533pt;}
.y181{bottom:154.786800pt;}
.y206{bottom:156.552800pt;}
.y107{bottom:160.988533pt;}
.y27{bottom:161.927200pt;}
.y246{bottom:164.678667pt;}
.y160{bottom:167.219467pt;}
.yd0{bottom:169.110533pt;}
.y180{bottom:169.229467pt;}
.yb5{bottom:169.303467pt;}
.y205{bottom:169.886133pt;}
.y5b{bottom:170.462533pt;}
.y1d9{bottom:170.603867pt;}
.y81{bottom:170.714533pt;}
.yb4{bottom:176.642133pt;}
.y106{bottom:176.988533pt;}
.y26{bottom:177.927200pt;}
.y245{bottom:178.012000pt;}
.y15f{bottom:181.288800pt;}
.y204{bottom:183.219467pt;}
.ycf{bottom:183.553200pt;}
.y17f{bottom:183.672133pt;}
.y5a{bottom:186.462533pt;}
.y1d8{bottom:186.603867pt;}
.y80{bottom:186.714533pt;}
.y244{bottom:191.345333pt;}
.y105{bottom:192.988533pt;}
.y25{bottom:193.927200pt;}
.y15e{bottom:195.358133pt;}
.y203{bottom:196.552800pt;}
.yce{bottom:197.995867pt;}
.y17e{bottom:198.114800pt;}
.yb3{bottom:198.423467pt;}
.y1a9{bottom:199.597333pt;}
.y59{bottom:202.462533pt;}
.y1d7{bottom:202.603867pt;}
.y7f{bottom:202.714533pt;}
.y243{bottom:204.678667pt;}
.yb2{bottom:205.762133pt;}
.y104{bottom:208.988533pt;}
.y15d{bottom:209.427467pt;}
.y202{bottom:209.886133pt;}
.y24{bottom:209.927200pt;}
.ycd{bottom:212.438533pt;}
.y17d{bottom:212.557467pt;}
.y1a8{bottom:212.930667pt;}
.y242{bottom:218.012000pt;}
.y58{bottom:218.462533pt;}
.y1d6{bottom:218.603867pt;}
.y7e{bottom:218.714533pt;}
.y201{bottom:223.219467pt;}
.y15c{bottom:223.496800pt;}
.y103{bottom:224.988533pt;}
.y23{bottom:225.927200pt;}
.y1a7{bottom:226.264000pt;}
.ycc{bottom:226.881200pt;}
.yb1{bottom:227.543467pt;}
.y241{bottom:231.345333pt;}
.y57{bottom:234.462533pt;}
.y138{bottom:234.468533pt;}
.y1d5{bottom:234.603867pt;}
.y7d{bottom:234.714533pt;}
.yb0{bottom:234.882133pt;}
.y200{bottom:236.552800pt;}
.y15b{bottom:237.566133pt;}
.y1a6{bottom:239.597333pt;}
.y17c{bottom:240.568133pt;}
.y102{bottom:240.988533pt;}
.ycb{bottom:241.323867pt;}
.y22{bottom:241.927200pt;}
.y240{bottom:244.678667pt;}
.y1ff{bottom:249.886133pt;}
.y1d4{bottom:250.243867pt;}
.y56{bottom:250.462533pt;}
.y137{bottom:250.468533pt;}
.y7c{bottom:250.714533pt;}
.y15a{bottom:251.635467pt;}
.y1a5{bottom:252.930667pt;}
.yaf{bottom:256.663467pt;}
.y101{bottom:256.988533pt;}
.y21{bottom:257.927200pt;}
.y23f{bottom:258.012000pt;}
.y1fe{bottom:263.219467pt;}
.yae{bottom:264.002133pt;}
.y159{bottom:265.704800pt;}
.y1a4{bottom:266.264000pt;}
.y55{bottom:266.462533pt;}
.y136{bottom:266.468533pt;}
.y7b{bottom:266.714533pt;}
.yca{bottom:269.334533pt;}
.y23e{bottom:271.345333pt;}
.y17b{bottom:271.586000pt;}
.y100{bottom:272.988533pt;}
.y20{bottom:273.927200pt;}
.y1fd{bottom:276.552800pt;}
.y1a3{bottom:279.597333pt;}
.y158{bottom:279.774133pt;}
.y54{bottom:282.462533pt;}
.y135{bottom:282.468533pt;}
.y1d3{bottom:282.603867pt;}
.y7a{bottom:282.714533pt;}
.y23d{bottom:284.678667pt;}
.yad{bottom:285.783467pt;}
.y17a{bottom:288.919333pt;}
.yff{bottom:288.988533pt;}
.y1fc{bottom:289.886133pt;}
.y1f{bottom:289.927200pt;}
.y1a2{bottom:292.930667pt;}
.yac{bottom:293.122133pt;}
.y157{bottom:293.843467pt;}
.y23c{bottom:298.012000pt;}
.y53{bottom:298.462533pt;}
.y134{bottom:298.468533pt;}
.y1d2{bottom:298.603867pt;}
.y79{bottom:298.714533pt;}
.yc9{bottom:300.352400pt;}
.y1fb{bottom:303.219467pt;}
.yfe{bottom:304.988533pt;}
.y1e{bottom:305.927200pt;}
.y1a1{bottom:306.264000pt;}
.y156{bottom:307.912800pt;}
.y23b{bottom:311.345333pt;}
.y52{bottom:314.462533pt;}
.y133{bottom:314.468533pt;}
.y1d1{bottom:314.603867pt;}
.y78{bottom:314.729200pt;}
.yab{bottom:314.903467pt;}
.y1fa{bottom:316.552800pt;}
.y1a0{bottom:319.597333pt;}
.yfd{bottom:320.988533pt;}
.y1d{bottom:321.927200pt;}
.y155{bottom:321.982133pt;}
.yaa{bottom:322.242133pt;}
.y23a{bottom:324.678667pt;}
.y179{bottom:325.305333pt;}
.y1f9{bottom:329.886133pt;}
.y132{bottom:330.468533pt;}
.y1d0{bottom:330.603867pt;}
.y77{bottom:330.729200pt;}
.y19f{bottom:332.930667pt;}
.y154{bottom:336.051467pt;}
.yfc{bottom:336.988533pt;}
.y2a{bottom:337.927200pt;}
.y239{bottom:338.012000pt;}
.y178{bottom:339.300000pt;}
.y1f8{bottom:343.219467pt;}
.ya9{bottom:344.023467pt;}
.y51{bottom:346.102533pt;}
.y19e{bottom:346.264000pt;}
.y131{bottom:346.468533pt;}
.y1cf{bottom:346.603867pt;}
.y76{bottom:346.729200pt;}
.y153{bottom:350.120800pt;}
.yc8{bottom:350.944400pt;}
.y238{bottom:351.345333pt;}
.ya8{bottom:351.362133pt;}
.yfb{bottom:352.988533pt;}
.y177{bottom:353.294667pt;}
.y1c{bottom:353.569067pt;}
.y29{bottom:353.927200pt;}
.y1f7{bottom:356.552800pt;}
.y19d{bottom:359.597333pt;}
.y130{bottom:362.468533pt;}
.y1ce{bottom:362.603867pt;}
.y75{bottom:362.729200pt;}
.y152{bottom:364.181733pt;}
.y237{bottom:364.678667pt;}
.yc7{bottom:365.387067pt;}
.y176{bottom:367.289333pt;}
.yfa{bottom:368.988533pt;}
.y1f6{bottom:369.886133pt;}
.y19c{bottom:372.930667pt;}
.ya6{bottom:373.143467pt;}
.y18b{bottom:374.439200pt;}
.y50{bottom:377.982533pt;}
.y236{bottom:378.012000pt;}
.y151{bottom:378.251067pt;}
.y12f{bottom:378.468533pt;}
.y1cd{bottom:378.603867pt;}
.y74{bottom:378.729200pt;}
.yc6{bottom:379.829733pt;}
.ya5{bottom:380.482133pt;}
.y175{bottom:381.284000pt;}
.y1f5{bottom:383.219467pt;}
.y19b{bottom:386.264000pt;}
.ya7{bottom:387.810133pt;}
.y18a{bottom:388.433867pt;}
.y235{bottom:391.345333pt;}
.y150{bottom:392.320400pt;}
.yc5{bottom:394.272400pt;}
.y12e{bottom:394.468533pt;}
.y1cc{bottom:394.603867pt;}
.y73{bottom:394.729200pt;}
.y1f4{bottom:396.552800pt;}
.y19a{bottom:399.597333pt;}
.yf9{bottom:399.958000pt;}
.y189{bottom:402.428533pt;}
.y234{bottom:404.678667pt;}
.y14f{bottom:406.389733pt;}
.yc4{bottom:408.715067pt;}
.y1f3{bottom:409.886133pt;}
.y12d{bottom:410.468533pt;}
.y1cb{bottom:410.603867pt;}
.y72{bottom:410.729200pt;}
.y199{bottom:412.930667pt;}
.ya4{bottom:413.602133pt;}
.yf8{bottom:413.830000pt;}
.y188{bottom:416.423200pt;}
.y1b{bottom:416.452133pt;}
.y233{bottom:418.012000pt;}
.y14e{bottom:420.459067pt;}
.ya3{bottom:420.940800pt;}
.yc3{bottom:423.157733pt;}
.y1f2{bottom:423.219467pt;}
.y4f{bottom:426.462533pt;}
.y12c{bottom:426.468533pt;}
.yf7{bottom:426.595867pt;}
.y1ca{bottom:426.603867pt;}
.y71{bottom:426.729200pt;}
.y187{bottom:430.417867pt;}
.y232{bottom:431.345333pt;}
.y1a{bottom:432.457067pt;}
.y14d{bottom:434.528400pt;}
.y1f1{bottom:436.552800pt;}
.yc2{bottom:437.824400pt;}
.yf6{bottom:442.235867pt;}
.y198{bottom:442.369200pt;}
.y4e{bottom:442.462533pt;}
.y12b{bottom:442.468533pt;}
.y1c9{bottom:442.603867pt;}
.y70{bottom:442.729200pt;}
.y231{bottom:444.678667pt;}
.y14c{bottom:448.597733pt;}
.y1f0{bottom:449.886133pt;}
.yc1{bottom:452.267067pt;}
.y19{bottom:456.763733pt;}
.ya2{bottom:457.075867pt;}
.y230{bottom:458.012000pt;}
.yf5{bottom:458.235867pt;}
.y197{bottom:458.369200pt;}
.y4d{bottom:458.462533pt;}
.y12a{bottom:458.468533pt;}
.y1c8{bottom:458.603867pt;}
.y14b{bottom:462.667067pt;}
.y1ef{bottom:463.219467pt;}
.y22f{bottom:471.345333pt;}
.y18{bottom:472.763733pt;}
.y6f{bottom:474.369200pt;}
.ya1{bottom:474.409200pt;}
.y4c{bottom:474.462533pt;}
.y129{bottom:474.468533pt;}
.y1c7{bottom:474.603867pt;}
.y1ee{bottom:476.552800pt;}
.y14a{bottom:476.736400pt;}
.yc0{bottom:481.376400pt;}
.y22e{bottom:484.678667pt;}
.y17{bottom:488.763733pt;}
.y1ed{bottom:489.886133pt;}
.yf4{bottom:490.102533pt;}
.y4b{bottom:490.462533pt;}
.y128{bottom:490.468533pt;}
.y196{bottom:490.595867pt;}
.y1c6{bottom:490.603867pt;}
.y149{bottom:490.805733pt;}
.y22d{bottom:498.012000pt;}
.y1ec{bottom:503.219467pt;}
.y16{bottom:504.763733pt;}
.y148{bottom:504.875067pt;}
.yf3{bottom:506.102533pt;}
.y4a{bottom:506.462533pt;}
.y269{bottom:506.464533pt;}
.y127{bottom:506.468533pt;}
.y6e{bottom:506.595867pt;}
.y1c5{bottom:506.603867pt;}
.ybf{bottom:509.387067pt;}
.y22c{bottom:511.345333pt;}
.y1eb{bottom:516.552800pt;}
.y147{bottom:518.944400pt;}
.y15{bottom:520.763733pt;}
.yf2{bottom:522.102533pt;}
.y1c4{bottom:522.243867pt;}
.y49{bottom:522.462533pt;}
.y268{bottom:522.464533pt;}
.y126{bottom:522.468533pt;}
.y6d{bottom:522.595867pt;}
.y22b{bottom:524.678667pt;}
.y1ea{bottom:529.886133pt;}
.y146{bottom:533.013733pt;}
.y14{bottom:536.763733pt;}
.y22a{bottom:538.012000pt;}
.yf1{bottom:538.102533pt;}
.y48{bottom:538.462533pt;}
.y9f{bottom:538.464533pt;}
.y125{bottom:538.468533pt;}
.y6c{bottom:538.595867pt;}
.ybe{bottom:540.409200pt;}
.y1e9{bottom:543.219467pt;}
.y145{bottom:547.083067pt;}
.y229{bottom:551.345333pt;}
.y13{bottom:552.763733pt;}
.yf0{bottom:554.102533pt;}
.y47{bottom:554.462533pt;}
.y9e{bottom:554.464533pt;}
.y124{bottom:554.468533pt;}
.y6b{bottom:554.595867pt;}
.y1c3{bottom:554.603867pt;}
.y1e8{bottom:556.552800pt;}
.ybd{bottom:557.742533pt;}
.y144{bottom:561.152400pt;}
.y228{bottom:564.678667pt;}
.y12{bottom:568.763733pt;}
.y1e7{bottom:569.886133pt;}
.yef{bottom:570.102533pt;}
.y46{bottom:570.462533pt;}
.y9d{bottom:570.464533pt;}
.y123{bottom:570.468533pt;}
.y6a{bottom:570.595867pt;}
.y1c2{bottom:570.603867pt;}
.y227{bottom:578.012000pt;}
.y1e6{bottom:583.219467pt;}
.y16d{bottom:584.358667pt;}
.y11{bottom:584.763733pt;}
.yee{bottom:586.102533pt;}
.y45{bottom:586.462533pt;}
.y9c{bottom:586.464533pt;}
.y122{bottom:586.468533pt;}
.y69{bottom:586.595867pt;}
.y1c1{bottom:586.603867pt;}
.y143{bottom:586.933733pt;}
.y226{bottom:591.345333pt;}
.y1e5{bottom:596.552800pt;}
.y16c{bottom:598.353333pt;}
.y10{bottom:600.763733pt;}
.yed{bottom:602.102533pt;}
.ya0{bottom:602.235867pt;}
.y44{bottom:602.462533pt;}
.y9b{bottom:602.464533pt;}
.y121{bottom:602.468533pt;}
.y68{bottom:602.595867pt;}
.y1c0{bottom:602.603867pt;}
.y267{bottom:604.678667pt;}
.y225{bottom:604.680800pt;}
.y1e4{bottom:609.886133pt;}
.y16b{bottom:612.348000pt;}
.y142{bottom:612.715067pt;}
.y266{bottom:618.012000pt;}
.y224{bottom:618.014133pt;}
.y43{bottom:618.462533pt;}
.y9a{bottom:618.464533pt;}
.y120{bottom:618.468533pt;}
.y67{bottom:618.595867pt;}
.y1bf{bottom:618.603867pt;}
.y1e3{bottom:623.219467pt;}
.y265{bottom:631.345333pt;}
.y223{bottom:631.347467pt;}
.yec{bottom:633.982533pt;}
.y42{bottom:634.462533pt;}
.y99{bottom:634.464533pt;}
.y11f{bottom:634.468533pt;}
.ye7{bottom:634.475867pt;}
.y66{bottom:634.595867pt;}
.y1be{bottom:634.603867pt;}
.y1e2{bottom:636.552800pt;}
.yf{bottom:640.904267pt;}
.y141{bottom:641.515867pt;}
.y264{bottom:644.678667pt;}
.y222{bottom:644.680800pt;}
.y41{bottom:650.462533pt;}
.y98{bottom:650.464533pt;}
.y11e{bottom:650.468533pt;}
.ye6{bottom:650.475867pt;}
.y65{bottom:650.595867pt;}
.y1bd{bottom:650.603867pt;}
.ye{bottom:651.971600pt;}
.y263{bottom:658.012000pt;}
.y221{bottom:658.014133pt;}
.y140{bottom:658.849200pt;}
.y1e1{bottom:665.984533pt;}
.yd8{bottom:666.235867pt;}
.y40{bottom:666.462533pt;}
.y97{bottom:666.464533pt;}
.y11d{bottom:666.468533pt;}
.ye5{bottom:666.475867pt;}
.y64{bottom:666.595867pt;}
.y1bc{bottom:666.603867pt;}
.y262{bottom:671.345333pt;}
.y220{bottom:671.347467pt;}
.y3f{bottom:682.462533pt;}
.y96{bottom:682.464533pt;}
.y11c{bottom:682.468533pt;}
.ye4{bottom:682.475867pt;}
.y63{bottom:682.595867pt;}
.y261{bottom:684.678667pt;}
.y21f{bottom:684.680800pt;}
.yd{bottom:684.985733pt;}
.yc{bottom:692.163200pt;}
.y260{bottom:698.012000pt;}
.y21e{bottom:698.014133pt;}
.y1bb{bottom:698.243867pt;}
.y3e{bottom:698.462533pt;}
.y95{bottom:698.464533pt;}
.y11b{bottom:698.468533pt;}
.y13f{bottom:698.475867pt;}
.y62{bottom:698.595867pt;}
.yb{bottom:708.985733pt;}
.y25f{bottom:711.345333pt;}
.y21d{bottom:711.347467pt;}
.ye3{bottom:714.115867pt;}
.y3d{bottom:714.462533pt;}
.y94{bottom:714.464533pt;}
.y11a{bottom:714.468533pt;}
.y13e{bottom:714.475867pt;}
.y172{bottom:714.595867pt;}
.ya{bottom:716.163200pt;}
.y25e{bottom:724.678667pt;}
.y21c{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.y1e0{bottom:730.104533pt;}
.ye2{bottom:730.115867pt;}
.y61{bottom:730.235867pt;}
.y3c{bottom:730.462533pt;}
.y93{bottom:730.464533pt;}
.y119{bottom:730.468533pt;}
.y1ba{bottom:730.470533pt;}
.y13d{bottom:730.475867pt;}
.y171{bottom:730.595867pt;}
.y25d{bottom:738.012000pt;}
.y21b{bottom:738.014133pt;}
.y8{bottom:744.985733pt;}
.y3b{bottom:746.462533pt;}
.y92{bottom:746.464533pt;}
.y118{bottom:746.468533pt;}
.y1b9{bottom:746.470533pt;}
.y13c{bottom:746.475867pt;}
.y170{bottom:746.595867pt;}
.y25c{bottom:751.345333pt;}
.y21a{bottom:751.347467pt;}
.ye1{bottom:761.995867pt;}
.y1df{bottom:762.104533pt;}
.y3a{bottom:762.462533pt;}
.y91{bottom:762.464533pt;}
.y117{bottom:762.468533pt;}
.y1b8{bottom:762.470533pt;}
.y195{bottom:762.595867pt;}
.y25b{bottom:764.678667pt;}
.y219{bottom:764.680800pt;}
.y7{bottom:770.521067pt;}
.y25a{bottom:778.012000pt;}
.y218{bottom:778.014133pt;}
.y13b{bottom:778.115867pt;}
.y16f{bottom:778.235867pt;}
.y39{bottom:778.462533pt;}
.y90{bottom:778.464533pt;}
.y116{bottom:778.468533pt;}
.y1b7{bottom:778.470533pt;}
.y194{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y259{bottom:791.345333pt;}
.y217{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y8f{bottom:794.464533pt;}
.y115{bottom:794.468533pt;}
.y1b6{bottom:794.470533pt;}
.y193{bottom:794.595867pt;}
.y258{bottom:804.678667pt;}
.y216{bottom:804.680800pt;}
.y13a{bottom:809.995867pt;}
.y37{bottom:810.462533pt;}
.y8e{bottom:810.464533pt;}
.y114{bottom:810.468533pt;}
.y1b5{bottom:810.470533pt;}
.ye0{bottom:810.475867pt;}
.y192{bottom:810.595867pt;}
.y257{bottom:818.012000pt;}
.y215{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y8d{bottom:826.464533pt;}
.y113{bottom:826.468533pt;}
.y1b4{bottom:826.470533pt;}
.ydf{bottom:826.475867pt;}
.y191{bottom:826.595867pt;}
.y5{bottom:830.232933pt;}
.y256{bottom:831.345333pt;}
.y214{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y8c{bottom:842.464533pt;}
.y112{bottom:842.468533pt;}
.y1b3{bottom:842.470533pt;}
.yde{bottom:842.475867pt;}
.y190{bottom:842.595867pt;}
.y255{bottom:844.678667pt;}
.y213{bottom:844.680800pt;}
.y254{bottom:858.012000pt;}
.y212{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y8b{bottom:858.464533pt;}
.y111{bottom:858.468533pt;}
.y1b2{bottom:858.470533pt;}
.ydd{bottom:858.475867pt;}
.y18f{bottom:858.595867pt;}
.y4{bottom:862.642533pt;}
.y253{bottom:871.345333pt;}
.y211{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y8a{bottom:874.464533pt;}
.y110{bottom:874.468533pt;}
.y1b1{bottom:874.470533pt;}
.ydc{bottom:874.475867pt;}
.y252{bottom:884.678667pt;}
.y210{bottom:884.680800pt;}
.y18e{bottom:890.235867pt;}
.y32{bottom:890.462533pt;}
.y89{bottom:890.464533pt;}
.y10f{bottom:890.468533pt;}
.y1b0{bottom:890.470533pt;}
.ydb{bottom:890.475867pt;}
.y3{bottom:895.052133pt;}
.y251{bottom:898.012000pt;}
.y20f{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y1de{bottom:906.464533pt;}
.y10e{bottom:906.468533pt;}
.y1af{bottom:906.470533pt;}
.yda{bottom:906.475867pt;}
.y250{bottom:911.345333pt;}
.y20e{bottom:911.347467pt;}
.y88{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.y10d{bottom:922.468533pt;}
.y1ae{bottom:922.470533pt;}
.yd9{bottom:922.475867pt;}
.y24f{bottom:924.678667pt;}
.y20d{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.ybc{bottom:1006.508800pt;}
.y167{bottom:1006.586267pt;}
.y87{bottom:1006.594400pt;}
.y16e{bottom:1006.597067pt;}
.y24e{bottom:1006.598667pt;}
.yeb{bottom:1006.601733pt;}
.yd7{bottom:1006.625200pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.he{height:29.121094pt;}
.h8{height:29.160156pt;}
.h18{height:29.645833pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.h14{height:35.583333pt;}
.h16{height:35.616933pt;}
.h17{height:35.653200pt;}
.h11{height:37.057292pt;}
.ha{height:38.828125pt;}
.hc{height:38.860475pt;}
.hb{height:38.880208pt;}
.h15{height:40.031250pt;}
.hd{height:44.479167pt;}
.h19{height:45.919167pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h12{height:51.046021pt;}
.h13{height:64.895333pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:62.740133pt;}
.xb{left:68.031467pt;}
.x1a{left:69.921200pt;}
.x24{left:75.604800pt;}
.x2a{left:80.563600pt;}
.x27{left:82.418133pt;}
.x26{left:84.511467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x14{left:88.818933pt;}
.x31{left:90.711867pt;}
.x4{left:94.488133pt;}
.xd{left:98.258133pt;}
.x28{left:100.831467pt;}
.x23{left:108.218133pt;}
.x34{left:109.606533pt;}
.x3{left:111.501467pt;}
.x22{left:113.164800pt;}
.x7{left:117.165333pt;}
.xc{left:128.631467pt;}
.x29{left:129.804800pt;}
.x21{left:143.084800pt;}
.x25{left:161.551467pt;}
.x32{left:169.006667pt;}
.x5{left:170.087333pt;}
.x2b{left:178.255600pt;}
.x16{left:181.234933pt;}
.x1e{left:186.347867pt;}
.x6{left:189.223467pt;}
.x1b{left:190.550533pt;}
.x33{left:191.609200pt;}
.x1d{left:196.694533pt;}
.x18{left:266.365600pt;}
.x17{left:285.309600pt;}
.x15{left:323.474933pt;}
.x2d{left:332.925600pt;}
.x1f{left:341.306800pt;}
.xa{left:404.481333pt;}
.xe{left:406.284800pt;}
.x12{left:425.195867pt;}
.x8{left:427.085333pt;}
.x36{left:428.980667pt;}
.xf{left:436.538133pt;}
.x35{left:447.889200pt;}
.x13{left:455.435867pt;}
.x2c{left:533.942533pt;}
.x20{left:544.809200pt;}
.x11{left:589.770933pt;}
.x1c{left:598.497200pt;}
.x2{left:616.324800pt;}
.x2f{left:641.526800pt;}
.x10{left:647.459200pt;}
.x30{left:661.216133pt;}
.x19{left:666.365600pt;}
}




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