
    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_6ebf5fa9ba422349ec74e317.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_faddefe1f7f09429d9b0fb3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_74e5f49a4a13ce6fe2930999.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_2e0e4fc124906592f04224ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003000;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_3af6658484f2cb561e9c4b46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_98432787fd02884cca73a483.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.711426;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_99509d7153dddfa27564fe98.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.392000;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_ea7ac2af58885a8003e0cfd3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006000;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_2d194986ff86a161ce4c34fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_509b2d31d642612620508e42.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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:ffd;src:url('chunks/assets/font_88fa82ee1ff5fba7fdeafb57.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767090;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:ffe;src:url('chunks/assets/font_1f52f48a6606d2a2b7274550.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.094000;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:fff;src:url('chunks/assets/font_0955a944b98ed414955a9e0d.woff2')format("woff");}.fff{font-family:fff;line-height:1.064000;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:ff10;src:url('chunks/assets/font_8968e3882176e7290ca6102a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.736816;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:ff11;src:url('chunks/assets/font_7b1247ebe712380c7682248d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_59c0098d1a953e14c3cef99a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;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:ff13;src:url('chunks/assets/font_d8da6ecc6555c434611e3c95.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.998000;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:ff14;src:url('chunks/assets/font_dbd87459ba1eb4f926e2f82e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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:ff15;src:url('chunks/assets/font_7c2329bc2b119e6b42a65f9d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.734000;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:ff16;src:url('chunks/assets/font_f7c39085425eb111a51780f7.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.168000;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:ff17;src:url('chunks/assets/font_537919f8f126a730ab57e5ca.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.700000;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:ff18;src:url('chunks/assets/font_92c2e10dead23863169cd766.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.869000;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:ff19;src:url('chunks/assets/font_2db87d7283f6fa45734331a3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.869000;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);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,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);}
.v5{vertical-align:-15.312000px;}
.v4{vertical-align:-10.204672px;}
.v3{vertical-align:-7.473600px;}
.v1{vertical-align:-5.778000px;}
.v6{vertical-align:-3.396000px;}
.v2{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.263600px;}
.lsf{letter-spacing:-1.200600px;}
.ls13{letter-spacing:-1.199985px;}
.ls12{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.239997px;}
.ls10{letter-spacing:-0.239400px;}
.lsd{letter-spacing:-0.238497px;}
.lsc{letter-spacing:-0.237600px;}
.ls11{letter-spacing:-0.237598px;}
.lse{letter-spacing:-0.212372px;}
.ls1d{letter-spacing:-0.211976px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.114000px;}
.ls2d{letter-spacing:0.450000px;}
.ls2e{letter-spacing:0.786000px;}
.ls2c{letter-spacing:0.792000px;}
.ls22{letter-spacing:1.191560px;}
.ls8{letter-spacing:1.703979px;}
.ls2f{letter-spacing:4.766340px;}
.ls30{letter-spacing:5.102336px;}
.ls31{letter-spacing:5.107136px;}
.ls1{letter-spacing:5.486400px;}
.ls2{letter-spacing:5.826600px;}
.ls5{letter-spacing:7.828702px;}
.ls9{letter-spacing:9.446282px;}
.ls7{letter-spacing:10.387070px;}
.ls18{letter-spacing:12.864000px;}
.ls16{letter-spacing:12.936000px;}
.ls2b{letter-spacing:12.942000px;}
.ls28{letter-spacing:12.990000px;}
.ls14{letter-spacing:13.002000px;}
.ls1c{letter-spacing:13.008000px;}
.ls29{letter-spacing:13.164000px;}
.ls1f{letter-spacing:13.200000px;}
.ls17{letter-spacing:13.272000px;}
.ls15{letter-spacing:13.278000px;}
.ls21{letter-spacing:13.326000px;}
.ls19{letter-spacing:13.338000px;}
.ls2a{letter-spacing:13.344000px;}
.ls1b{letter-spacing:13.350000px;}
.ls1a{letter-spacing:13.488000px;}
.ls20{letter-spacing:13.662000px;}
.ls6{letter-spacing:15.311809px;}
.ls32{letter-spacing:15.647804px;}
.ls33{letter-spacing:15.652604px;}
.ls24{letter-spacing:16.356320px;}
.ls1e{letter-spacing:16.728000px;}
.ls25{letter-spacing:16.746610px;}
.ls23{letter-spacing:18.892170px;}
.ls3{letter-spacing:20.783740px;}
.ls4{letter-spacing:20.788540px;}
.ls27{letter-spacing:462.722570px;}
.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;}
}
.ws33{word-spacing:-37.151856px;}
.wsae{word-spacing:-30.000000px;}
.ws37{word-spacing:-25.247684px;}
.wsda{word-spacing:-19.994233px;}
.wsa8{word-spacing:-16.842000px;}
.wscd{word-spacing:-16.752000px;}
.ws27{word-spacing:-16.638000px;}
.ws63{word-spacing:-16.590000px;}
.wsb5{word-spacing:-16.566000px;}
.ws9e{word-spacing:-16.560000px;}
.ws7d{word-spacing:-16.482000px;}
.wsd4{word-spacing:-16.446000px;}
.ws22{word-spacing:-16.440000px;}
.wsb2{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.936400px;}
.ws13{word-spacing:-13.247834px;}
.ws3e{word-spacing:-10.799865px;}
.ws99{word-spacing:-4.492763px;}
.ws75{word-spacing:-4.399163px;}
.ws1c{word-spacing:-4.319964px;}
.wsdc{word-spacing:-4.233565px;}
.wsd8{word-spacing:-4.082366px;}
.ws126{word-spacing:-3.796753px;}
.ws128{word-spacing:-3.628755px;}
.ws12a{word-spacing:-3.518356px;}
.ws10f{word-spacing:-3.503956px;}
.ws116{word-spacing:-3.479957px;}
.ws123{word-spacing:-3.470357px;}
.ws125{word-spacing:-3.431957px;}
.ws12d{word-spacing:-3.422357px;}
.ws12b{word-spacing:-3.407957px;}
.ws139{word-spacing:-3.393558px;}
.ws131{word-spacing:-3.388758px;}
.ws132{word-spacing:-3.374358px;}
.ws104{word-spacing:-3.369558px;}
.ws137{word-spacing:-3.355158px;}
.ws11b{word-spacing:-3.350358px;}
.ws13a{word-spacing:-3.345558px;}
.ws8{word-spacing:-3.342600px;}
.wsf6{word-spacing:-3.340758px;}
.wse9{word-spacing:-3.335958px;}
.ws110{word-spacing:-3.331158px;}
.ws1b{word-spacing:-3.323100px;}
.ws135{word-spacing:-3.311959px;}
.ws138{word-spacing:-3.307159px;}
.wsf4{word-spacing:-3.302359px;}
.ws4{word-spacing:-3.294000px;}
.ws102{word-spacing:-3.292759px;}
.ws1a{word-spacing:-3.283200px;}
.ws10c{word-spacing:-3.283159px;}
.wsee{word-spacing:-3.278359px;}
.wsef{word-spacing:-3.273559px;}
.wse8{word-spacing:-3.268759px;}
.ws10b{word-spacing:-3.259159px;}
.ws12{word-spacing:-3.254359px;}
.ws105{word-spacing:-3.249559px;}
.ws16{word-spacing:-3.249000px;}
.wse{word-spacing:-3.244759px;}
.wsf{word-spacing:-3.239960px;}
.ws10{word-spacing:-3.235160px;}
.wsf2{word-spacing:-3.230360px;}
.ws103{word-spacing:-3.225560px;}
.ws115{word-spacing:-3.215960px;}
.wsea{word-spacing:-3.211160px;}
.wsfa{word-spacing:-3.201560px;}
.wsfc{word-spacing:-3.196760px;}
.ws18{word-spacing:-3.192000px;}
.ws11{word-spacing:-3.191960px;}
.wsfd{word-spacing:-3.187160px;}
.ws15{word-spacing:-3.186300px;}
.ws11e{word-spacing:-3.182360px;}
.ws17{word-spacing:-3.180600px;}
.ws111{word-spacing:-3.177560px;}
.wsf7{word-spacing:-3.172760px;}
.ws9{word-spacing:-3.169800px;}
.wsc6{word-spacing:-3.167960px;}
.wsff{word-spacing:-3.163160px;}
.wsc{word-spacing:-3.153561px;}
.ws10a{word-spacing:-3.148761px;}
.ws19{word-spacing:-3.140700px;}
.ws119{word-spacing:-3.134361px;}
.ws107{word-spacing:-3.129561px;}
.ws34{word-spacing:-3.124761px;}
.ws108{word-spacing:-3.119961px;}
.ws133{word-spacing:-3.115161px;}
.ws3{word-spacing:-3.099600px;}
.wsed{word-spacing:-3.095961px;}
.ws10e{word-spacing:-3.091161px;}
.ws127{word-spacing:-3.086361px;}
.wsf8{word-spacing:-3.067162px;}
.ws117{word-spacing:-3.062362px;}
.ws100{word-spacing:-3.052762px;}
.ws14{word-spacing:-3.049500px;}
.ws12c{word-spacing:-3.047962px;}
.wsf1{word-spacing:-3.038362px;}
.ws11c{word-spacing:-3.028762px;}
.ws6{word-spacing:-3.024000px;}
.ws12e{word-spacing:-3.023962px;}
.ws109{word-spacing:-3.019162px;}
.ws11a{word-spacing:-3.004762px;}
.ws5{word-spacing:-3.002400px;}
.ws124{word-spacing:-2.999962px;}
.ws122{word-spacing:-2.980763px;}
.wsfb{word-spacing:-2.971163px;}
.wsfe{word-spacing:-2.966363px;}
.ws114{word-spacing:-2.956763px;}
.ws120{word-spacing:-2.951963px;}
.wsf0{word-spacing:-2.947163px;}
.ws121{word-spacing:-2.942363px;}
.wsec{word-spacing:-2.937563px;}
.wsd{word-spacing:-2.927963px;}
.ws136{word-spacing:-2.923163px;}
.ws101{word-spacing:-2.913564px;}
.ws11f{word-spacing:-2.908764px;}
.wsf9{word-spacing:-2.894364px;}
.ws118{word-spacing:-2.889564px;}
.ws7b{word-spacing:-2.846364px;}
.ws129{word-spacing:-2.827165px;}
.ws36{word-spacing:-2.822365px;}
.wsf3{word-spacing:-2.812765px;}
.ws12f{word-spacing:-2.807965px;}
.ws134{word-spacing:-2.793565px;}
.wseb{word-spacing:-2.779165px;}
.ws11d{word-spacing:-2.764765px;}
.ws112{word-spacing:-2.750366px;}
.wsa{word-spacing:-2.745566px;}
.ws2{word-spacing:-2.743200px;}
.ws106{word-spacing:-2.726366px;}
.ws130{word-spacing:-2.716766px;}
.wsb{word-spacing:-2.683166px;}
.ws1{word-spacing:-2.649567px;}
.ws113{word-spacing:-2.630367px;}
.ws4b{word-spacing:-1.055987px;}
.ws5a{word-spacing:-0.931188px;}
.ws4e{word-spacing:-0.916789px;}
.ws48{word-spacing:-0.892789px;}
.wsd2{word-spacing:-0.882000px;}
.ws44{word-spacing:-0.878389px;}
.ws95{word-spacing:-0.876000px;}
.ws40{word-spacing:-0.854389px;}
.wsbb{word-spacing:-0.820790px;}
.ws50{word-spacing:-0.815990px;}
.ws55{word-spacing:-0.796790px;}
.ws42{word-spacing:-0.791990px;}
.ws59{word-spacing:-0.782390px;}
.ws41{word-spacing:-0.777590px;}
.ws70{word-spacing:-0.774000px;}
.wsd1{word-spacing:-0.772790px;}
.ws3d{word-spacing:-0.763190px;}
.ws46{word-spacing:-0.743991px;}
.ws54{word-spacing:-0.739191px;}
.wsd5{word-spacing:-0.738000px;}
.ws4a{word-spacing:-0.724791px;}
.ws53{word-spacing:-0.710391px;}
.ws90{word-spacing:-0.708000px;}
.wsa4{word-spacing:-0.702000px;}
.ws3c{word-spacing:-0.695991px;}
.ws47{word-spacing:-0.686391px;}
.ws4c{word-spacing:-0.676792px;}
.ws4f{word-spacing:-0.671992px;}
.wsbd{word-spacing:-0.662392px;}
.ws39{word-spacing:-0.657592px;}
.wsc5{word-spacing:-0.652792px;}
.ws52{word-spacing:-0.647992px;}
.ws98{word-spacing:-0.642000px;}
.ws49{word-spacing:-0.633592px;}
.wsb3{word-spacing:-0.624000px;}
.ws38{word-spacing:-0.623992px;}
.ws8a{word-spacing:-0.618000px;}
.ws56{word-spacing:-0.609592px;}
.wsd0{word-spacing:-0.604792px;}
.ws7f{word-spacing:-0.588000px;}
.ws3f{word-spacing:-0.571193px;}
.ws3a{word-spacing:-0.551993px;}
.ws93{word-spacing:-0.546000px;}
.ws5b{word-spacing:-0.537593px;}
.ws80{word-spacing:-0.534000px;}
.wsc7{word-spacing:-0.528000px;}
.ws43{word-spacing:-0.527993px;}
.ws7c{word-spacing:-0.516000px;}
.ws77{word-spacing:-0.510000px;}
.ws45{word-spacing:-0.499194px;}
.wsb6{word-spacing:-0.498000px;}
.ws57{word-spacing:-0.494394px;}
.wsd3{word-spacing:-0.492000px;}
.wsd6{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.474000px;}
.ws4d{word-spacing:-0.470394px;}
.wsa1{word-spacing:-0.468000px;}
.ws73{word-spacing:-0.456000px;}
.ws3b{word-spacing:-0.446394px;}
.ws6a{word-spacing:-0.432000px;}
.wsba{word-spacing:-0.427195px;}
.ws79{word-spacing:-0.426000px;}
.ws8f{word-spacing:-0.420000px;}
.wsc4{word-spacing:-0.417595px;}
.wsb7{word-spacing:-0.408000px;}
.ws87{word-spacing:-0.402000px;}
.ws85{word-spacing:-0.396000px;}
.ws6d{word-spacing:-0.390000px;}
.ws9d{word-spacing:-0.384000px;}
.ws28{word-spacing:-0.378000px;}
.wsb4{word-spacing:-0.372000px;}
.ws6b{word-spacing:-0.366000px;}
.ws68{word-spacing:-0.360000px;}
.ws86{word-spacing:-0.354000px;}
.ws58{word-spacing:-0.350396px;}
.ws60{word-spacing:-0.348000px;}
.ws82{word-spacing:-0.342000px;}
.ws6e{word-spacing:-0.324000px;}
.ws25{word-spacing:-0.318000px;}
.ws21{word-spacing:-0.312000px;}
.ws5c{word-spacing:-0.307196px;}
.wsa5{word-spacing:-0.306000px;}
.ws31{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.294000px;}
.ws96{word-spacing:-0.288000px;}
.ws32{word-spacing:-0.282000px;}
.ws81{word-spacing:-0.276000px;}
.ws8e{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.264000px;}
.ws8b{word-spacing:-0.258000px;}
.ws1d{word-spacing:-0.252000px;}
.ws7a{word-spacing:-0.246000px;}
.wsc1{word-spacing:-0.240000px;}
.ws74{word-spacing:-0.234000px;}
.wsd7{word-spacing:-0.228000px;}
.ws65{word-spacing:-0.216000px;}
.ws5f{word-spacing:-0.210000px;}
.ws67{word-spacing:-0.204000px;}
.ws51{word-spacing:-0.201597px;}
.ws24{word-spacing:-0.198000px;}
.ws5e{word-spacing:-0.192000px;}
.ws84{word-spacing:-0.186000px;}
.wsa3{word-spacing:-0.180000px;}
.ws2e{word-spacing:-0.174000px;}
.ws30{word-spacing:-0.168000px;}
.wsa9{word-spacing:-0.162000px;}
.ws2a{word-spacing:-0.156000px;}
.ws78{word-spacing:-0.150000px;}
.ws20{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.138000px;}
.ws29{word-spacing:-0.132000px;}
.ws76{word-spacing:-0.126000px;}
.wsc2{word-spacing:-0.120000px;}
.wsbf{word-spacing:-0.114000px;}
.ws23{word-spacing:-0.108000px;}
.wsaa{word-spacing:-0.102000px;}
.ws6f{word-spacing:-0.096000px;}
.ws9a{word-spacing:-0.090000px;}
.ws5d{word-spacing:-0.084000px;}
.ws62{word-spacing:-0.078000px;}
.wsbc{word-spacing:-0.076799px;}
.ws89{word-spacing:-0.072000px;}
.ws64{word-spacing:-0.066000px;}
.ws66{word-spacing:-0.060000px;}
.ws2d{word-spacing:-0.054000px;}
.ws26{word-spacing:-0.048000px;}
.ws8c{word-spacing:-0.042000px;}
.ws6c{word-spacing:-0.036000px;}
.wsa7{word-spacing:-0.030000px;}
.wsac{word-spacing:-0.024000px;}
.ws2c{word-spacing:-0.018000px;}
.wsab{word-spacing:-0.012000px;}
.ws7e{word-spacing:-0.006000px;}
.ws0{word-spacing:0.000000px;}
.wsc3{word-spacing:0.012000px;}
.wsa6{word-spacing:0.018000px;}
.wsa2{word-spacing:0.024000px;}
.wsc8{word-spacing:0.030000px;}
.ws9c{word-spacing:0.054000px;}
.ws72{word-spacing:0.060000px;}
.ws88{word-spacing:0.084000px;}
.ws94{word-spacing:0.090000px;}
.ws83{word-spacing:0.096000px;}
.ws71{word-spacing:0.102000px;}
.wsdb{word-spacing:0.114000px;}
.wsad{word-spacing:0.120000px;}
.ws2b{word-spacing:0.126000px;}
.wsb8{word-spacing:0.138000px;}
.wsbe{word-spacing:0.162000px;}
.wsa0{word-spacing:0.180000px;}
.ws97{word-spacing:0.192000px;}
.ws8d{word-spacing:0.204000px;}
.ws92{word-spacing:0.222000px;}
.ws9f{word-spacing:0.237598px;}
.wscc{word-spacing:0.240000px;}
.wse2{word-spacing:0.246000px;}
.wsc0{word-spacing:0.251998px;}
.wsce{word-spacing:0.252000px;}
.wscb{word-spacing:0.270000px;}
.ws9b{word-spacing:0.273598px;}
.ws69{word-spacing:0.282000px;}
.wsca{word-spacing:0.306000px;}
.wsb9{word-spacing:0.335996px;}
.wse6{word-spacing:0.342000px;}
.wsc9{word-spacing:0.359997px;}
.ws91{word-spacing:0.372000px;}
.wscf{word-spacing:0.374395px;}
.wsd9{word-spacing:0.432000px;}
.wsde{word-spacing:0.480000px;}
.wsdf{word-spacing:0.666000px;}
.wse4{word-spacing:0.708000px;}
.wse0{word-spacing:0.762000px;}
.wse5{word-spacing:0.846000px;}
.wse3{word-spacing:0.900000px;}
.wse1{word-spacing:0.978000px;}
.wsdd{word-spacing:1.158000px;}
.wsb0{word-spacing:6.716792px;}
.wsb1{word-spacing:6.939726px;}
.wsaf{word-spacing:10.335726px;}
.ws35{word-spacing:34.588368px;}
.wsf5{word-spacing:46.842614px;}
.ws10d{word-spacing:46.847414px;}
.wse7{word-spacing:46.909814px;}
._9{margin-left:-8.421087px;}
._c{margin-left:-4.826414px;}
._8{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._e{width:1.674000px;}
._2{width:3.922800px;}
._3{width:9.484681px;}
._4{width:11.169460px;}
._7{width:12.276000px;}
._5{width:13.605900px;}
._6{width:14.660100px;}
._b{width:16.595862px;}
._10{width:20.164548px;}
._f{width:21.599730px;}
._1{width:24.732000px;}
._d{width:1518.120223px;}
._a{width:1543.281509px;}
.fc5{color:transparent;}
.fc4{color:rgb(188,27,149);}
.fc6{color:rgb(16,15,13);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.995200px;}
.fs10{font-size:35.998800px;}
.fsf{font-size:39.995400px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:44.999400px;}
.fs5{font-size:47.999400px;}
.fs7{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:66.000000px;}
.fsc{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:87.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fsd{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.ya1{bottom:4.537500px;}
.y4c{bottom:8.513967px;}
.y4d{bottom:54.000000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y9f{bottom:124.498500px;}
.y4a{bottom:124.500000px;}
.y70{bottom:124.500064px;}
.yf5{bottom:124.501500px;}
.y160{bottom:124.503000px;}
.y1ed{bottom:124.842328px;}
.yac{bottom:125.100000px;}
.y17a{bottom:131.983500px;}
.y131{bottom:136.831500px;}
.y108{bottom:137.682000px;}
.y1ec{bottom:139.044151px;}
.y21{bottom:139.264499px;}
.y6f{bottom:140.997458px;}
.y9e{bottom:143.973000px;}
.y49{bottom:143.974500px;}
.y15f{bottom:143.977500px;}
.yab{bottom:144.573000px;}
.y178{bottom:151.542000px;}
.y179{bottom:152.308500px;}
.y1eb{bottom:153.331172px;}
.y1b3{bottom:153.841763px;}
.y130{bottom:156.306000px;}
.y107{bottom:157.155000px;}
.y6e{bottom:157.494852px;}
.y9d{bottom:163.531500px;}
.y48{bottom:163.533000px;}
.y15e{bottom:163.536000px;}
.yaa{bottom:164.131500px;}
.y212{bottom:167.616993px;}
.y1b2{bottom:168.127584px;}
.y1ea{bottom:172.804529px;}
.y6d{bottom:173.993445px;}
.y12f{bottom:175.779000px;}
.y106{bottom:176.715000px;}
.y177{bottom:178.500000px;}
.y211{bottom:181.818816px;}
.y11f{bottom:183.004500px;}
.y9c{bottom:183.006000px;}
.y47{bottom:183.007500px;}
.y15d{bottom:183.009000px;}
.ya9{bottom:183.606000px;}
.y1e9{bottom:187.091550px;}
.y1b1{bottom:187.602141px;}
.y6c{bottom:190.490839px;}
.y12e{bottom:195.337500px;}
.y105{bottom:196.188000px;}
.y18{bottom:196.933500px;}
.y175{bottom:197.973000px;}
.y176{bottom:198.823500px;}
.y210{bottom:201.292172px;}
.y1b0{bottom:201.887962px;}
.y9b{bottom:202.479000px;}
.y46{bottom:202.480500px;}
.yf4{bottom:202.482000px;}
.y15c{bottom:202.483500px;}
.ya8{bottom:203.080500px;}
.y1e8{bottom:206.564907px;}
.y6b{bottom:206.988233px;}
.y11e{bottom:208.516500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y12d{bottom:214.812000px;}
.y20f{bottom:215.579194px;}
.y104{bottom:215.662500px;}
.y1af{bottom:216.089785px;}
.y1e7{bottom:220.851928px;}
.yca{bottom:222.039000px;}
.y45{bottom:222.040500px;}
.y15b{bottom:222.042000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya7{bottom:222.639000px;}
.y6a{bottom:223.485627px;}
.y174{bottom:225.016500px;}
.y9a{bottom:227.991000px;}
.y12c{bottom:234.286500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1e6{bottom:235.052550px;}
.y103{bottom:235.221000px;}
.y1ae{bottom:235.649540px;}
.y69{bottom:239.983020px;}
.y118{bottom:241.512000px;}
.y44{bottom:241.513500px;}
.y15a{bottom:241.516500px;}
.ya6{bottom:242.112000px;}
.y1ad{bottom:249.850163px;}
.y173{bottom:251.973000px;}
.y12b{bottom:253.845000px;}
.y1e5{bottom:254.612306px;}
.y102{bottom:254.695500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y117{bottom:260.986500px;}
.y43{bottom:260.988000px;}
.y159{bottom:260.991000px;}
.ya5{bottom:261.586500px;}
.y1ac{bottom:264.137184px;}
.y68{bottom:265.494701px;}
.y1e4{bottom:268.814128px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y12a{bottom:273.318000px;}
.y101{bottom:274.168500px;}
.y171{bottom:279.015000px;}
.y172{bottom:279.781500px;}
.y116{bottom:280.459500px;}
.yc9{bottom:280.461000px;}
.y42{bottom:280.462500px;}
.y158{bottom:280.464000px;}
.y99{bottom:281.145000px;}
.y67{bottom:281.992095px;}
.y1ab{bottom:283.610541px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1e3{bottom:288.372684px;}
.y129{bottom:292.792500px;}
.y100{bottom:293.727000px;}
.y1aa{bottom:297.897562px;}
.y66{bottom:298.489489px;}
.yc8{bottom:300.019500px;}
.y41{bottom:300.021000px;}
.y157{bottom:300.022500px;}
.y98{bottom:300.619500px;}
.y1e2{bottom:302.574506px;}
.y115{bottom:305.971500px;}
.y170{bottom:305.973000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1a9{bottom:312.099384px;}
.y128{bottom:312.351000px;}
.yff{bottom:313.201500px;}
.y65{bottom:314.988083px;}
.y1e1{bottom:316.860328px;}
.y40{bottom:319.494000px;}
.yf3{bottom:319.495500px;}
.y156{bottom:319.497000px;}
.y97{bottom:320.094000px;}
.y20e{bottom:322.047863px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1a8{bottom:331.657940px;}
.y127{bottom:331.825500px;}
.yfe{bottom:332.676000px;}
.y16f{bottom:333.015000px;}
.y1e0{bottom:336.334884px;}
.y3f{bottom:338.968500px;}
.y155{bottom:338.971500px;}
.y96{bottom:339.567000px;}
.y64{bottom:340.499764px;}
.y1a6{bottom:345.859762px;}
.y1a7{bottom:346.114159px;}
.yf{bottom:348.133500px;}
.y1df{bottom:350.620706px;}
.y126{bottom:351.300000px;}
.yfd{bottom:352.149000px;}
.y20c{bottom:355.808241px;}
.y20d{bottom:356.233036px;}
.y63{bottom:356.997158px;}
.y3e{bottom:358.527000px;}
.y154{bottom:358.530000px;}
.y95{bottom:359.125500px;}
.y16d{bottom:359.973000px;}
.y16e{bottom:360.823500px;}
.y1a5{bottom:365.333119px;}
.y114{bottom:369.157500px;}
.y1de{bottom:370.095262px;}
.y20b{bottom:370.434858px;}
.y125{bottom:370.858500px;}
.yfc{bottom:371.709000px;}
.y62{bottom:373.494551px;}
.y3d{bottom:378.001500px;}
.y153{bottom:378.003000px;}
.y94{bottom:378.600000px;}
.y1a4{bottom:379.620140px;}
.y1dd{bottom:384.297085px;}
.ye{bottom:386.785499px;}
.y16b{bottom:387.015000px;}
.y16c{bottom:387.780000px;}
.y113{bottom:388.630500px;}
.y20a{bottom:389.568619px;}
.y61{bottom:389.991945px;}
.y124{bottom:390.331500px;}
.yfb{bottom:391.182000px;}
.y1a3{bottom:393.905962px;}
.y3c{bottom:397.474500px;}
.yf2{bottom:397.476000px;}
.y152{bottom:397.477500px;}
.y93{bottom:398.074500px;}
.y1dc{bottom:398.582906px;}
.y209{bottom:403.855640px;}
.y60{bottom:406.489339px;}
.yd{bottom:408.044999px;}
.y112{bottom:408.189000px;}
.y123{bottom:409.806000px;}
.yfa{bottom:410.656500px;}
.y1a2{bottom:413.380518px;}
.y169{bottom:413.971500px;}
.y16a{bottom:414.820500px;}
.yc7{bottom:417.033000px;}
.yf1{bottom:417.034500px;}
.y151{bottom:417.036000px;}
.y92{bottom:417.633000px;}
.y1db{bottom:418.057463px;}
.y3b{bottom:422.985000px;}
.y5f{bottom:422.986733px;}
.y208{bottom:423.328997px;}
.y1a1{bottom:427.582341px;}
.y111{bottom:427.663500px;}
.y122{bottom:429.280500px;}
.yf9{bottom:430.215000px;}
.y1da{bottom:432.343284px;}
.yc6{bottom:436.507500px;}
.y150{bottom:436.510500px;}
.y91{bottom:437.107500px;}
.y206{bottom:437.616018px;}
.y207{bottom:437.955614px;}
.y168{bottom:439.483500px;}
.y1d9{bottom:446.545107px;}
.y110{bottom:447.138000px;}
.y1a0{bottom:447.140896px;}
.y5e{bottom:448.498414px;}
.y121{bottom:448.839000px;}
.yf8{bottom:449.689500px;}
.yc5{bottom:455.982000px;}
.y14f{bottom:455.985000px;}
.y90{bottom:456.580500px;}
.y205{bottom:457.089375px;}
.y19f{bottom:461.342719px;}
.yf0{bottom:462.018000px;}
.y1d8{bottom:466.103662px;}
.y10f{bottom:466.696500px;}
.y120{bottom:468.312000px;}
.yf7{bottom:469.162500px;}
.y204{bottom:471.291197px;}
.y5d{bottom:474.010095px;}
.yc4{bottom:475.540500px;}
.y14e{bottom:475.543500px;}
.y19e{bottom:475.628540px;}
.y8f{bottom:476.139000px;}
.y1d7{bottom:480.305485px;}
.y167{bottom:483.705000px;}
.y203{bottom:485.578219px;}
.y10e{bottom:486.169500px;}
.yf6{bottom:488.721000px;}
.yd2{bottom:492.463500px;}
.yc3{bottom:495.013500px;}
.yd1{bottom:495.015000px;}
.y14d{bottom:495.016500px;}
.y19d{bottom:495.103097px;}
.y8e{bottom:495.613500px;}
.y5c{bottom:499.521776px;}
.y1d6{bottom:499.864040px;}
.y137{bottom:500.373102px;}
.yc{bottom:502.864502px;}
.y166{bottom:503.178000px;}
.yef{bottom:503.436000px;}
.y202{bottom:505.051575px;}
.y19c{bottom:509.388918px;}
.y1d5{bottom:514.065863px;}
.yd0{bottom:514.488000px;}
.y14c{bottom:514.491000px;}
.y8d{bottom:515.088000px;}
.y11d{bottom:518.230425px;}
.y201{bottom:519.338597px;}
.yc2{bottom:520.526925px;}
.y10d{bottom:520.696425px;}
.yb{bottom:520.864502px;}
.y165{bottom:522.736500px;}
.yee{bottom:522.994500px;}
.y136{bottom:523.589212px;}
.y19b{bottom:523.590741px;}
.y5b{bottom:525.033457px;}
.y3a{bottom:525.628575px;}
.y1d4{bottom:533.624418px;}
.ycf{bottom:533.962500px;}
.y14b{bottom:533.965500px;}
.y8c{bottom:534.646500px;}
.y135{bottom:537.875034px;}
.y19a{bottom:537.877762px;}
.ya{bottom:538.864499px;}
.y11c{bottom:541.446535px;}
.y5a{bottom:541.530851px;}
.yed{bottom:542.469000px;}
.y10c{bottom:543.996534px;}
.y39{bottom:546.634500px;}
.yc1{bottom:547.483500px;}
.y1d3{bottom:547.826241px;}
.y164{bottom:548.163000px;}
.y134{bottom:552.076856px;}
.y200{bottom:553.098975px;}
.yce{bottom:553.521000px;}
.y14a{bottom:553.524000px;}
.y8b{bottom:554.119500px;}
.y11b{bottom:555.647157px;}
.y9{bottom:556.864499px;}
.y199{bottom:557.351119px;}
.y10b{bottom:558.198356px;}
.yec{bottom:561.942000px;}
.y133{bottom:566.363878px;}
.y59{bottom:567.042532px;}
.y1d2{bottom:567.300797px;}
.y38{bottom:567.639000px;}
.y11a{bottom:569.934179px;}
.y198{bottom:571.638140px;}
.y10a{bottom:572.485378px;}
.ycd{bottom:572.995500px;}
.y149{bottom:572.998500px;}
.y8a{bottom:573.594000px;}
.y132{bottom:580.564500px;}
.yeb{bottom:581.500500px;}
.y1d1{bottom:581.586619px;}
.y58{bottom:583.541126px;}
.y119{bottom:584.220000px;}
.y197{bottom:585.839963px;}
.y109{bottom:586.686000px;}
.yc0{bottom:586.774500px;}
.y37{bottom:588.643500px;}
.ycc{bottom:592.468500px;}
.y148{bottom:592.471500px;}
.y89{bottom:593.068500px;}
.y1d0{bottom:595.873640px;}
.y57{bottom:600.038520px;}
.yea{bottom:600.975000px;}
.y1ff{bottom:601.061175px;}
.y163{bottom:601.399500px;}
.y196{bottom:605.398518px;}
.ybf{bottom:606.333000px;}
.y36{bottom:609.648000px;}
.y147{bottom:612.030000px;}
.y88{bottom:612.627000px;}
.y1cf{bottom:615.346997px;}
.y56{bottom:616.535913px;}
.ycb{bottom:617.980500px;}
.y195{bottom:619.600341px;}
.ye9{bottom:620.449500px;}
.y162{bottom:620.872500px;}
.ybe{bottom:625.807500px;}
.y1ce{bottom:629.548819px;}
.y1fe{bottom:629.973614px;}
.y35{bottom:630.652500px;}
.y146{bottom:631.504500px;}
.y87{bottom:632.101500px;}
.y54{bottom:633.033307px;}
.y55{bottom:633.372903px;}
.y194{bottom:639.158896px;}
.ye8{bottom:639.922500px;}
.y1cd{bottom:643.835841px;}
.ybd{bottom:645.280500px;}
.y8{bottom:645.510000px;}
.y161{bottom:646.384500px;}
.y1fd{bottom:649.107375px;}
.y145{bottom:650.979000px;}
.y86{bottom:651.574500px;}
.y34{bottom:651.657000px;}
.y193{bottom:653.360719px;}
.ye7{bottom:656.929500px;}
.y53{bottom:657.609000px;}
.ye6{bottom:659.481000px;}
.y1cc{bottom:663.309197px;}
.y1fc{bottom:663.733992px;}
.ybc{bottom:664.839000px;}
.y7{bottom:666.771000px;}
.y144{bottom:670.537500px;}
.y85{bottom:671.133000px;}
.y33{bottom:672.661500px;}
.y192{bottom:672.834075px;}
.ye4{bottom:676.488000px;}
.y1cb{bottom:677.596219px;}
.ye5{bottom:678.954000px;}
.ye3{bottom:678.955500px;}
.y1fb{bottom:682.867753px;}
.ybb{bottom:684.313500px;}
.y191{bottom:687.121097px;}
.y143{bottom:690.010500px;}
.y84{bottom:690.607500px;}
.y1ca{bottom:691.796841px;}
.y32{bottom:693.666000px;}
.y1f9{bottom:697.069575px;}
.y1fa{bottom:697.495570px;}
.ye2{bottom:698.430000px;}
.yba{bottom:703.788000px;}
.y190{bottom:706.594453px;}
.y142{bottom:709.485000px;}
.y83{bottom:710.082000px;}
.y1c9{bottom:711.356597px;}
.y31{bottom:714.670500px;}
.y1f8{bottom:716.544132px;}
.ye1{bottom:717.988500px;}
.y18f{bottom:720.881475px;}
.yb9{bottom:723.261000px;}
.y1c8{bottom:725.558419px;}
.y6{bottom:726.298500px;}
.y141{bottom:728.959500px;}
.y82{bottom:729.640500px;}
.y1f6{bottom:730.829953px;}
.y1f7{bottom:731.170749px;}
.ye0{bottom:734.995500px;}
.y18e{bottom:735.083297px;}
.y30{bottom:735.675000px;}
.ydf{bottom:737.461500px;}
.yb8{bottom:742.819500px;}
.y52{bottom:744.520500px;}
.y1c7{bottom:745.116975px;}
.y140{bottom:748.518000px;}
.y81{bottom:749.115000px;}
.y1f5{bottom:750.304510px;}
.y3{bottom:752.599495px;}
.y18d{bottom:754.641853px;}
.yde{bottom:756.936000px;}
.y1c6{bottom:759.318797px;}
.y51{bottom:761.782500px;}
.yb7{bottom:762.294000px;}
.y1f3{bottom:764.590331px;}
.y1f4{bottom:764.931127px;}
.y13f{bottom:767.992500px;}
.y80{bottom:768.588000px;}
.y2f{bottom:768.670500px;}
.y18c{bottom:768.843675px;}
.ydd{bottom:776.494500px;}
.y1c5{bottom:778.792154px;}
.y50{bottom:778.960500px;}
.yb6{bottom:781.768500px;}
.y1f2{bottom:784.064888px;}
.y13e{bottom:787.465500px;}
.y7f{bottom:788.062500px;}
.y18b{bottom:788.402231px;}
.y1c4{bottom:793.079175px;}
.ydc{bottom:795.969000px;}
.y4f{bottom:796.224000px;}
.y1f1{bottom:798.350709px;}
.yb5{bottom:801.327000px;}
.y18a{bottom:802.604053px;}
.y13d{bottom:807.024000px;}
.y7e{bottom:807.621000px;}
.y1c3{bottom:812.552532px;}
.yda{bottom:812.976000px;}
.y4e{bottom:813.486000px;}
.ydb{bottom:815.442000px;}
.yd9{bottom:815.443500px;}
.y1f0{bottom:817.825266px;}
.yb4{bottom:820.801500px;}
.y189{bottom:822.162609px;}
.y13c{bottom:826.498500px;}
.y1c2{bottom:826.839553px;}
.y7d{bottom:827.095500px;}
.y2e{bottom:828.965138px;}
.y1ef{bottom:832.112287px;}
.yd8{bottom:832.450500px;}
.yd7{bottom:834.916500px;}
.y188{bottom:836.364431px;}
.yb3{bottom:840.274500px;}
.y13b{bottom:845.973000px;}
.y1c1{bottom:846.312910px;}
.y7c{bottom:846.568500px;}
.y187{bottom:855.837788px;}
.y21c{bottom:856.858378px;}
.y2d{bottom:858.983962px;}
.yb2{bottom:859.833000px;}
.y1c0{bottom:860.599931px;}
.y13a{bottom:865.531500px;}
.y1ee{bottom:865.872665px;}
.y7b{bottom:866.127000px;}
.yd6{bottom:868.933500px;}
.y186{bottom:870.124809px;}
.y21b{bottom:871.059000px;}
.y2b{bottom:873.951375px;}
.y2c{bottom:874.376170px;}
.yb1{bottom:879.307500px;}
.y2{bottom:879.369000px;}
.y1bf{bottom:880.073288px;}
.y139{bottom:885.004500px;}
.y21a{bottom:885.346022px;}
.y7a{bottom:885.601500px;}
.y29{bottom:889.002787px;}
.y185{bottom:889.598166px;}
.y2a{bottom:891.553955px;}
.y1be{bottom:894.360309px;}
.yd5{bottom:896.656500px;}
.yb0{bottom:898.782000px;}
.y184{bottom:903.885187px;}
.y28{bottom:903.969000px;}
.y219{bottom:904.820578px;}
.y79{bottom:905.076000px;}
.y138{bottom:910.516500px;}
.y1bd{bottom:913.833666px;}
.yd4{bottom:916.129500px;}
.yaf{bottom:918.340500px;}
.y218{bottom:919.106400px;}
.y183{bottom:923.359744px;}
.y78{bottom:924.634500px;}
.y1bc{bottom:928.120687px;}
.y25{bottom:930.925500px;}
.y27{bottom:931.349400px;}
.y217{bottom:933.308222px;}
.y26{bottom:936.964500px;}
.y182{bottom:937.645565px;}
.yae{bottom:937.813500px;}
.yd3{bottom:941.641500px;}
.y77{bottom:944.109000px;}
.y1bb{bottom:947.595244px;}
.y216{bottom:952.866778px;}
.y181{bottom:957.120122px;}
.y1ba{bottom:961.795866px;}
.yad{bottom:963.325500px;}
.y76{bottom:963.582000px;}
.y1{bottom:966.726000px;}
.y215{bottom:967.068600px;}
.y24{bottom:968.430900px;}
.y180{bottom:971.405943px;}
.y1b9{bottom:981.355622px;}
.y75{bottom:983.140500px;}
.y17f{bottom:990.880500px;}
.y1b8{bottom:995.556244px;}
.y214{bottom:1000.828978px;}
.y23{bottom:1002.189000px;}
.y74{bottom:1002.615000px;}
.y17e{bottom:1005.081122px;}
.y1b7{bottom:1015.116000px;}
.y73{bottom:1022.089500px;}
.y17d{bottom:1024.640878px;}
.y1b6{bottom:1029.316622px;}
.y213{bottom:1034.589356px;}
.y22{bottom:1035.949500px;}
.y17c{bottom:1038.841500px;}
.y72{bottom:1041.562500px;}
.ya4{bottom:1046.574793px;}
.y1b5{bottom:1048.791179px;}
.y17b{bottom:1059.079500px;}
.y71{bottom:1061.121000px;}
.ya3{bottom:1063.072186px;}
.y1b4{bottom:1063.077000px;}
.y4b{bottom:1107.042000px;}
.ya0{bottom:1114.101000px;}
.ya2{bottom:1118.692500px;}
.h1a{height:18.538650px;}
.he{height:27.932275px;}
.h20{height:28.476725px;}
.h1d{height:29.996550px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h15{height:34.781100px;}
.h17{height:34.968313px;}
.h21{height:35.999550px;}
.hb{height:37.199535px;}
.h10{height:37.247534px;}
.hf{height:38.416992px;}
.h19{height:39.119511px;}
.h18{height:40.559493px;}
.hd{height:41.904000px;}
.h1f{height:42.720000px;}
.h12{height:44.175000px;}
.h14{height:45.000000px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1e{height:49.974000px;}
.h1b{height:52.800000px;}
.h1c{height:53.999550px;}
.h2{height:55.152000px;}
.h13{height:55.871534px;}
.h11{height:70.905000px;}
.h5{height:78.132000px;}
.hc{height:88.020000px;}
.h16{height:99.071616px;}
.h4{height:119.055004px;}
.ha{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:84.784200px;}
.w4{width:160.980000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:52.044150px;}
.x14{left:54.000000px;}
.x15{left:71.433000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x27{left:108.000000px;}
.x16{left:155.705547px;}
.x4{left:203.484001px;}
.x5{left:300.018000px;}
.x31{left:307.332000px;}
.x12{left:317.961000px;}
.x1d{left:323.064000px;}
.x32{left:332.247289px;}
.x1b{left:344.749500px;}
.x1e{left:348.406500px;}
.x1c{left:378.169500px;}
.x6{left:398.154000px;}
.x11{left:401.128736px;}
.x7{left:412.015500px;}
.x1a{left:414.564000px;}
.x34{left:418.053034px;}
.x8{left:429.873300px;}
.x3c{left:434.294831px;}
.x3{left:454.959000px;}
.x2c{left:494.331000px;}
.x9{left:495.949050px;}
.x29{left:498.243000px;}
.x2b{left:509.722500px;}
.x21{left:519.079500px;}
.xa{left:526.393500px;}
.xb{left:532.006500px;}
.x33{left:535.405949px;}
.x22{left:544.336500px;}
.x18{left:548.419500px;}
.x2d{left:555.984000px;}
.x2a{left:559.896000px;}
.x19{left:570.444000px;}
.x2f{left:577.753500px;}
.x28{left:588.298500px;}
.x25{left:597.571500px;}
.x10{left:605.051787px;}
.x26{left:606.585000px;}
.x2e{left:621.124500px;}
.x17{left:632.182500px;}
.x30{left:639.406500px;}
.x36{left:656.161258px;}
.xc{left:697.237500px;}
.x35{left:706.589427px;}
.xd{left:711.099000px;}
.x37{left:722.237232px;}
.x1f{left:758.892000px;}
.x38{left:770.029034px;}
.x39{left:782.444079px;}
.x20{left:784.147500px;}
.x23{left:794.692500px;}
.x3b{left:799.623064px;}
.xe{left:807.108000px;}
.xf{left:821.055000px;}
.x24{left:828.114000px;}
.x3a{left:834.998622px;}
@media print{
.v5{vertical-align:-13.610667pt;}
.v4{vertical-align:-9.070820pt;}
.v3{vertical-align:-6.643200pt;}
.v1{vertical-align:-5.136000pt;}
.v6{vertical-align:-3.018667pt;}
.v2{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.123200pt;}
.lsf{letter-spacing:-1.067200pt;}
.ls13{letter-spacing:-1.066653pt;}
.ls12{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.213331pt;}
.ls10{letter-spacing:-0.212800pt;}
.lsd{letter-spacing:-0.211997pt;}
.lsc{letter-spacing:-0.211200pt;}
.ls11{letter-spacing:-0.211198pt;}
.lse{letter-spacing:-0.188775pt;}
.ls1d{letter-spacing:-0.188423pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.101333pt;}
.ls2d{letter-spacing:0.400000pt;}
.ls2e{letter-spacing:0.698667pt;}
.ls2c{letter-spacing:0.704000pt;}
.ls22{letter-spacing:1.059165pt;}
.ls8{letter-spacing:1.514648pt;}
.ls2f{letter-spacing:4.236747pt;}
.ls30{letter-spacing:4.535410pt;}
.ls31{letter-spacing:4.539677pt;}
.ls1{letter-spacing:4.876800pt;}
.ls2{letter-spacing:5.179200pt;}
.ls5{letter-spacing:6.958846pt;}
.ls9{letter-spacing:8.396695pt;}
.ls7{letter-spacing:9.232951pt;}
.ls18{letter-spacing:11.434667pt;}
.ls16{letter-spacing:11.498667pt;}
.ls2b{letter-spacing:11.504000pt;}
.ls28{letter-spacing:11.546667pt;}
.ls14{letter-spacing:11.557333pt;}
.ls1c{letter-spacing:11.562667pt;}
.ls29{letter-spacing:11.701333pt;}
.ls1f{letter-spacing:11.733333pt;}
.ls17{letter-spacing:11.797333pt;}
.ls15{letter-spacing:11.802667pt;}
.ls21{letter-spacing:11.845333pt;}
.ls19{letter-spacing:11.856000pt;}
.ls2a{letter-spacing:11.861333pt;}
.ls1b{letter-spacing:11.866667pt;}
.ls1a{letter-spacing:11.989333pt;}
.ls20{letter-spacing:12.144000pt;}
.ls6{letter-spacing:13.610497pt;}
.ls32{letter-spacing:13.909159pt;}
.ls33{letter-spacing:13.913426pt;}
.ls24{letter-spacing:14.538951pt;}
.ls1e{letter-spacing:14.869333pt;}
.ls25{letter-spacing:14.885875pt;}
.ls23{letter-spacing:16.793040pt;}
.ls3{letter-spacing:18.474436pt;}
.ls4{letter-spacing:18.478702pt;}
.ls27{letter-spacing:411.308951pt;}
.ws33{word-spacing:-33.023872pt;}
.wsae{word-spacing:-26.666667pt;}
.ws37{word-spacing:-22.442386pt;}
.wsda{word-spacing:-17.772652pt;}
.wsa8{word-spacing:-14.970667pt;}
.wscd{word-spacing:-14.890667pt;}
.ws27{word-spacing:-14.789333pt;}
.ws63{word-spacing:-14.746667pt;}
.wsb5{word-spacing:-14.725333pt;}
.ws9e{word-spacing:-14.720000pt;}
.ws7d{word-spacing:-14.650667pt;}
.wsd4{word-spacing:-14.618667pt;}
.ws22{word-spacing:-14.613333pt;}
.wsb2{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.276800pt;}
.ws13{word-spacing:-11.775853pt;}
.ws3e{word-spacing:-9.599880pt;}
.ws99{word-spacing:-3.993567pt;}
.ws75{word-spacing:-3.910367pt;}
.ws1c{word-spacing:-3.839968pt;}
.wsdc{word-spacing:-3.763169pt;}
.wsd8{word-spacing:-3.628770pt;}
.ws126{word-spacing:-3.374891pt;}
.ws128{word-spacing:-3.225560pt;}
.ws12a{word-spacing:-3.127428pt;}
.ws10f{word-spacing:-3.114628pt;}
.ws116{word-spacing:-3.093295pt;}
.ws123{word-spacing:-3.084761pt;}
.ws125{word-spacing:-3.050629pt;}
.ws12d{word-spacing:-3.042095pt;}
.ws12b{word-spacing:-3.029295pt;}
.ws139{word-spacing:-3.016496pt;}
.ws131{word-spacing:-3.012229pt;}
.ws132{word-spacing:-2.999429pt;}
.ws104{word-spacing:-2.995163pt;}
.ws137{word-spacing:-2.982363pt;}
.ws11b{word-spacing:-2.978096pt;}
.ws13a{word-spacing:-2.973829pt;}
.ws8{word-spacing:-2.971200pt;}
.wsf6{word-spacing:-2.969563pt;}
.wse9{word-spacing:-2.965296pt;}
.ws110{word-spacing:-2.961030pt;}
.ws1b{word-spacing:-2.953867pt;}
.ws135{word-spacing:-2.943963pt;}
.ws138{word-spacing:-2.939697pt;}
.wsf4{word-spacing:-2.935430pt;}
.ws4{word-spacing:-2.928000pt;}
.ws102{word-spacing:-2.926897pt;}
.ws1a{word-spacing:-2.918400pt;}
.ws10c{word-spacing:-2.918364pt;}
.wsee{word-spacing:-2.914097pt;}
.wsef{word-spacing:-2.909830pt;}
.wse8{word-spacing:-2.905564pt;}
.ws10b{word-spacing:-2.897030pt;}
.ws12{word-spacing:-2.892764pt;}
.ws105{word-spacing:-2.888497pt;}
.ws16{word-spacing:-2.888000pt;}
.wse{word-spacing:-2.884231pt;}
.wsf{word-spacing:-2.879964pt;}
.ws10{word-spacing:-2.875697pt;}
.wsf2{word-spacing:-2.871431pt;}
.ws103{word-spacing:-2.867164pt;}
.ws115{word-spacing:-2.858631pt;}
.wsea{word-spacing:-2.854364pt;}
.wsfa{word-spacing:-2.845831pt;}
.wsfc{word-spacing:-2.841564pt;}
.ws18{word-spacing:-2.837333pt;}
.ws11{word-spacing:-2.837298pt;}
.wsfd{word-spacing:-2.833031pt;}
.ws15{word-spacing:-2.832267pt;}
.ws11e{word-spacing:-2.828765pt;}
.ws17{word-spacing:-2.827200pt;}
.ws111{word-spacing:-2.824498pt;}
.wsf7{word-spacing:-2.820231pt;}
.ws9{word-spacing:-2.817600pt;}
.wsc6{word-spacing:-2.815965pt;}
.wsff{word-spacing:-2.811698pt;}
.wsc{word-spacing:-2.803165pt;}
.ws10a{word-spacing:-2.798898pt;}
.ws19{word-spacing:-2.791733pt;}
.ws119{word-spacing:-2.786099pt;}
.ws107{word-spacing:-2.781832pt;}
.ws34{word-spacing:-2.777565pt;}
.ws108{word-spacing:-2.773299pt;}
.ws133{word-spacing:-2.769032pt;}
.ws3{word-spacing:-2.755200pt;}
.wsed{word-spacing:-2.751966pt;}
.ws10e{word-spacing:-2.747699pt;}
.ws127{word-spacing:-2.743432pt;}
.wsf8{word-spacing:-2.726366pt;}
.ws117{word-spacing:-2.722099pt;}
.ws100{word-spacing:-2.713566pt;}
.ws14{word-spacing:-2.710667pt;}
.ws12c{word-spacing:-2.709299pt;}
.wsf1{word-spacing:-2.700766pt;}
.ws11c{word-spacing:-2.692233pt;}
.ws6{word-spacing:-2.688000pt;}
.ws12e{word-spacing:-2.687966pt;}
.ws109{word-spacing:-2.683700pt;}
.ws11a{word-spacing:-2.670900pt;}
.ws5{word-spacing:-2.668800pt;}
.ws124{word-spacing:-2.666633pt;}
.ws122{word-spacing:-2.649567pt;}
.wsfb{word-spacing:-2.641034pt;}
.wsfe{word-spacing:-2.636767pt;}
.ws114{word-spacing:-2.628234pt;}
.ws120{word-spacing:-2.623967pt;}
.wsf0{word-spacing:-2.619701pt;}
.ws121{word-spacing:-2.615434pt;}
.wsec{word-spacing:-2.611167pt;}
.wsd{word-spacing:-2.602634pt;}
.ws136{word-spacing:-2.598368pt;}
.ws101{word-spacing:-2.589834pt;}
.ws11f{word-spacing:-2.585568pt;}
.wsf9{word-spacing:-2.572768pt;}
.ws118{word-spacing:-2.568501pt;}
.ws7b{word-spacing:-2.530102pt;}
.ws129{word-spacing:-2.513035pt;}
.ws36{word-spacing:-2.508769pt;}
.wsf3{word-spacing:-2.500235pt;}
.ws12f{word-spacing:-2.495969pt;}
.ws134{word-spacing:-2.483169pt;}
.wseb{word-spacing:-2.470369pt;}
.ws11d{word-spacing:-2.457569pt;}
.ws112{word-spacing:-2.444769pt;}
.wsa{word-spacing:-2.440503pt;}
.ws2{word-spacing:-2.438400pt;}
.ws106{word-spacing:-2.423436pt;}
.ws130{word-spacing:-2.414903pt;}
.wsb{word-spacing:-2.385037pt;}
.ws1{word-spacing:-2.355171pt;}
.ws113{word-spacing:-2.338104pt;}
.ws4b{word-spacing:-0.938655pt;}
.ws5a{word-spacing:-0.827723pt;}
.ws4e{word-spacing:-0.814923pt;}
.ws48{word-spacing:-0.793590pt;}
.wsd2{word-spacing:-0.784000pt;}
.ws44{word-spacing:-0.780790pt;}
.ws95{word-spacing:-0.778667pt;}
.ws40{word-spacing:-0.759457pt;}
.wsbb{word-spacing:-0.729591pt;}
.ws50{word-spacing:-0.725324pt;}
.ws55{word-spacing:-0.708258pt;}
.ws42{word-spacing:-0.703991pt;}
.ws59{word-spacing:-0.695458pt;}
.ws41{word-spacing:-0.691191pt;}
.ws70{word-spacing:-0.688000pt;}
.wsd1{word-spacing:-0.686925pt;}
.ws3d{word-spacing:-0.678392pt;}
.ws46{word-spacing:-0.661325pt;}
.ws54{word-spacing:-0.657058pt;}
.wsd5{word-spacing:-0.656000pt;}
.ws4a{word-spacing:-0.644259pt;}
.ws53{word-spacing:-0.631459pt;}
.ws90{word-spacing:-0.629333pt;}
.wsa4{word-spacing:-0.624000pt;}
.ws3c{word-spacing:-0.618659pt;}
.ws47{word-spacing:-0.610126pt;}
.ws4c{word-spacing:-0.601592pt;}
.ws4f{word-spacing:-0.597326pt;}
.wsbd{word-spacing:-0.588793pt;}
.ws39{word-spacing:-0.584526pt;}
.wsc5{word-spacing:-0.580259pt;}
.ws52{word-spacing:-0.575993pt;}
.ws98{word-spacing:-0.570667pt;}
.ws49{word-spacing:-0.563193pt;}
.wsb3{word-spacing:-0.554667pt;}
.ws38{word-spacing:-0.554660pt;}
.ws8a{word-spacing:-0.549333pt;}
.ws56{word-spacing:-0.541860pt;}
.wsd0{word-spacing:-0.537593pt;}
.ws7f{word-spacing:-0.522667pt;}
.ws3f{word-spacing:-0.507727pt;}
.ws3a{word-spacing:-0.490661pt;}
.ws93{word-spacing:-0.485333pt;}
.ws5b{word-spacing:-0.477861pt;}
.ws80{word-spacing:-0.474667pt;}
.wsc7{word-spacing:-0.469333pt;}
.ws43{word-spacing:-0.469327pt;}
.ws7c{word-spacing:-0.458667pt;}
.ws77{word-spacing:-0.453333pt;}
.ws45{word-spacing:-0.443728pt;}
.wsb6{word-spacing:-0.442667pt;}
.ws57{word-spacing:-0.439461pt;}
.wsd3{word-spacing:-0.437333pt;}
.wsd6{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.421333pt;}
.ws4d{word-spacing:-0.418128pt;}
.wsa1{word-spacing:-0.416000pt;}
.ws73{word-spacing:-0.405333pt;}
.ws3b{word-spacing:-0.396795pt;}
.ws6a{word-spacing:-0.384000pt;}
.wsba{word-spacing:-0.379729pt;}
.ws79{word-spacing:-0.378667pt;}
.ws8f{word-spacing:-0.373333pt;}
.wsc4{word-spacing:-0.371195pt;}
.wsb7{word-spacing:-0.362667pt;}
.ws87{word-spacing:-0.357333pt;}
.ws85{word-spacing:-0.352000pt;}
.ws6d{word-spacing:-0.346667pt;}
.ws9d{word-spacing:-0.341333pt;}
.ws28{word-spacing:-0.336000pt;}
.wsb4{word-spacing:-0.330667pt;}
.ws6b{word-spacing:-0.325333pt;}
.ws68{word-spacing:-0.320000pt;}
.ws86{word-spacing:-0.314667pt;}
.ws58{word-spacing:-0.311463pt;}
.ws60{word-spacing:-0.309333pt;}
.ws82{word-spacing:-0.304000pt;}
.ws6e{word-spacing:-0.288000pt;}
.ws25{word-spacing:-0.282667pt;}
.ws21{word-spacing:-0.277333pt;}
.ws5c{word-spacing:-0.273063pt;}
.wsa5{word-spacing:-0.272000pt;}
.ws31{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.261333pt;}
.ws96{word-spacing:-0.256000pt;}
.ws32{word-spacing:-0.250667pt;}
.ws81{word-spacing:-0.245333pt;}
.ws8e{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.234667pt;}
.ws8b{word-spacing:-0.229333pt;}
.ws1d{word-spacing:-0.224000pt;}
.ws7a{word-spacing:-0.218667pt;}
.wsc1{word-spacing:-0.213333pt;}
.ws74{word-spacing:-0.208000pt;}
.wsd7{word-spacing:-0.202667pt;}
.ws65{word-spacing:-0.192000pt;}
.ws5f{word-spacing:-0.186667pt;}
.ws67{word-spacing:-0.181333pt;}
.ws51{word-spacing:-0.179198pt;}
.ws24{word-spacing:-0.176000pt;}
.ws5e{word-spacing:-0.170667pt;}
.ws84{word-spacing:-0.165333pt;}
.wsa3{word-spacing:-0.160000pt;}
.ws2e{word-spacing:-0.154667pt;}
.ws30{word-spacing:-0.149333pt;}
.wsa9{word-spacing:-0.144000pt;}
.ws2a{word-spacing:-0.138667pt;}
.ws78{word-spacing:-0.133333pt;}
.ws20{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.122667pt;}
.ws29{word-spacing:-0.117333pt;}
.ws76{word-spacing:-0.112000pt;}
.wsc2{word-spacing:-0.106667pt;}
.wsbf{word-spacing:-0.101333pt;}
.ws23{word-spacing:-0.096000pt;}
.wsaa{word-spacing:-0.090667pt;}
.ws6f{word-spacing:-0.085333pt;}
.ws9a{word-spacing:-0.080000pt;}
.ws5d{word-spacing:-0.074667pt;}
.ws62{word-spacing:-0.069333pt;}
.wsbc{word-spacing:-0.068266pt;}
.ws89{word-spacing:-0.064000pt;}
.ws64{word-spacing:-0.058667pt;}
.ws66{word-spacing:-0.053333pt;}
.ws2d{word-spacing:-0.048000pt;}
.ws26{word-spacing:-0.042667pt;}
.ws8c{word-spacing:-0.037333pt;}
.ws6c{word-spacing:-0.032000pt;}
.wsa7{word-spacing:-0.026667pt;}
.wsac{word-spacing:-0.021333pt;}
.ws2c{word-spacing:-0.016000pt;}
.wsab{word-spacing:-0.010667pt;}
.ws7e{word-spacing:-0.005333pt;}
.ws0{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.010667pt;}
.wsa6{word-spacing:0.016000pt;}
.wsa2{word-spacing:0.021333pt;}
.wsc8{word-spacing:0.026667pt;}
.ws9c{word-spacing:0.048000pt;}
.ws72{word-spacing:0.053333pt;}
.ws88{word-spacing:0.074667pt;}
.ws94{word-spacing:0.080000pt;}
.ws83{word-spacing:0.085333pt;}
.ws71{word-spacing:0.090667pt;}
.wsdb{word-spacing:0.101333pt;}
.wsad{word-spacing:0.106667pt;}
.ws2b{word-spacing:0.112000pt;}
.wsb8{word-spacing:0.122667pt;}
.wsbe{word-spacing:0.144000pt;}
.wsa0{word-spacing:0.160000pt;}
.ws97{word-spacing:0.170667pt;}
.ws8d{word-spacing:0.181333pt;}
.ws92{word-spacing:0.197333pt;}
.ws9f{word-spacing:0.211198pt;}
.wscc{word-spacing:0.213333pt;}
.wse2{word-spacing:0.218667pt;}
.wsc0{word-spacing:0.223998pt;}
.wsce{word-spacing:0.224000pt;}
.wscb{word-spacing:0.240000pt;}
.ws9b{word-spacing:0.243198pt;}
.ws69{word-spacing:0.250667pt;}
.wsca{word-spacing:0.272000pt;}
.wsb9{word-spacing:0.298663pt;}
.wse6{word-spacing:0.304000pt;}
.wsc9{word-spacing:0.319997pt;}
.ws91{word-spacing:0.330667pt;}
.wscf{word-spacing:0.332796pt;}
.wsd9{word-spacing:0.384000pt;}
.wsde{word-spacing:0.426667pt;}
.wsdf{word-spacing:0.592000pt;}
.wse4{word-spacing:0.629333pt;}
.wse0{word-spacing:0.677333pt;}
.wse5{word-spacing:0.752000pt;}
.wse3{word-spacing:0.800000pt;}
.wse1{word-spacing:0.869333pt;}
.wsdd{word-spacing:1.029333pt;}
.wsb0{word-spacing:5.970482pt;}
.wsb1{word-spacing:6.168645pt;}
.wsaf{word-spacing:9.187312pt;}
.ws35{word-spacing:30.745216pt;}
.wsf5{word-spacing:41.637880pt;}
.ws10d{word-spacing:41.642146pt;}
.wse7{word-spacing:41.697612pt;}
._9{margin-left:-7.485411pt;}
._c{margin-left:-4.290146pt;}
._8{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._e{width:1.488000pt;}
._2{width:3.486933pt;}
._3{width:8.430828pt;}
._4{width:9.928409pt;}
._7{width:10.912000pt;}
._5{width:12.094133pt;}
._6{width:13.031200pt;}
._b{width:14.751877pt;}
._10{width:17.924043pt;}
._f{width:19.199760pt;}
._1{width:21.984000pt;}
._d{width:1349.440198pt;}
._a{width:1371.805786pt;}
.fs9{font-size:31.995733pt;}
.fs10{font-size:31.998933pt;}
.fsf{font-size:35.551467pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.999467pt;}
.fs5{font-size:42.666133pt;}
.fs7{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.666667pt;}
.fsc{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:77.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fsd{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:4.033333pt;}
.y4c{bottom:7.567971pt;}
.y4d{bottom:48.000000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y9f{bottom:110.665333pt;}
.y4a{bottom:110.666667pt;}
.y70{bottom:110.666724pt;}
.yf5{bottom:110.668000pt;}
.y160{bottom:110.669333pt;}
.y1ed{bottom:110.970958pt;}
.yac{bottom:111.200000pt;}
.y17a{bottom:117.318667pt;}
.y131{bottom:121.628000pt;}
.y108{bottom:122.384000pt;}
.y1ec{bottom:123.594800pt;}
.y21{bottom:123.790666pt;}
.y6f{bottom:125.331074pt;}
.y9e{bottom:127.976000pt;}
.y49{bottom:127.977333pt;}
.y15f{bottom:127.980000pt;}
.yab{bottom:128.509333pt;}
.y178{bottom:134.704000pt;}
.y179{bottom:135.385333pt;}
.y1eb{bottom:136.294375pt;}
.y1b3{bottom:136.748233pt;}
.y130{bottom:138.938667pt;}
.y107{bottom:139.693333pt;}
.y6e{bottom:139.995424pt;}
.y9d{bottom:145.361333pt;}
.y48{bottom:145.362667pt;}
.y15e{bottom:145.365333pt;}
.yaa{bottom:145.894667pt;}
.y212{bottom:148.992883pt;}
.y1b2{bottom:149.446741pt;}
.y1ea{bottom:153.604025pt;}
.y6d{bottom:154.660840pt;}
.y12f{bottom:156.248000pt;}
.y106{bottom:157.080000pt;}
.y177{bottom:158.666667pt;}
.y211{bottom:161.616725pt;}
.y11f{bottom:162.670667pt;}
.y9c{bottom:162.672000pt;}
.y47{bottom:162.673333pt;}
.y15d{bottom:162.674667pt;}
.ya9{bottom:163.205333pt;}
.y1e9{bottom:166.303600pt;}
.y1b1{bottom:166.757458pt;}
.y6c{bottom:169.325190pt;}
.y12e{bottom:173.633333pt;}
.y105{bottom:174.389333pt;}
.y18{bottom:175.052000pt;}
.y175{bottom:175.976000pt;}
.y176{bottom:176.732000pt;}
.y210{bottom:178.926376pt;}
.y1b0{bottom:179.455966pt;}
.y9b{bottom:179.981333pt;}
.y46{bottom:179.982667pt;}
.yf4{bottom:179.984000pt;}
.y15c{bottom:179.985333pt;}
.ya8{bottom:180.516000pt;}
.y1e8{bottom:183.613250pt;}
.y6b{bottom:183.989540pt;}
.y11e{bottom:185.348000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y12d{bottom:190.944000pt;}
.y20f{bottom:191.625950pt;}
.y104{bottom:191.700000pt;}
.y1af{bottom:192.079808pt;}
.y1e7{bottom:196.312825pt;}
.yca{bottom:197.368000pt;}
.y45{bottom:197.369333pt;}
.y15b{bottom:197.370667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya7{bottom:197.901333pt;}
.y6a{bottom:198.653890pt;}
.y174{bottom:200.014667pt;}
.y9a{bottom:202.658667pt;}
.y12c{bottom:208.254667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1e6{bottom:208.935600pt;}
.y103{bottom:209.085333pt;}
.y1ae{bottom:209.466258pt;}
.y69{bottom:213.318240pt;}
.y118{bottom:214.677333pt;}
.y44{bottom:214.678667pt;}
.y15a{bottom:214.681333pt;}
.ya6{bottom:215.210667pt;}
.y1ad{bottom:222.089033pt;}
.y173{bottom:223.976000pt;}
.y12b{bottom:225.640000pt;}
.y1e5{bottom:226.322050pt;}
.y102{bottom:226.396000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y117{bottom:231.988000pt;}
.y43{bottom:231.989333pt;}
.y159{bottom:231.992000pt;}
.ya5{bottom:232.521333pt;}
.y1ac{bottom:234.788608pt;}
.y68{bottom:235.995290pt;}
.y1e4{bottom:238.945892pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y12a{bottom:242.949333pt;}
.y101{bottom:243.705333pt;}
.y171{bottom:248.013333pt;}
.y172{bottom:248.694667pt;}
.y116{bottom:249.297333pt;}
.yc9{bottom:249.298667pt;}
.y42{bottom:249.300000pt;}
.y158{bottom:249.301333pt;}
.y99{bottom:249.906667pt;}
.y67{bottom:250.659640pt;}
.y1ab{bottom:252.098258pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1e3{bottom:256.331275pt;}
.y129{bottom:260.260000pt;}
.y100{bottom:261.090667pt;}
.y1aa{bottom:264.797833pt;}
.y66{bottom:265.323990pt;}
.yc8{bottom:266.684000pt;}
.y41{bottom:266.685333pt;}
.y157{bottom:266.686667pt;}
.y98{bottom:267.217333pt;}
.y1e2{bottom:268.955117pt;}
.y115{bottom:271.974667pt;}
.y170{bottom:271.976000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1a9{bottom:277.421675pt;}
.y128{bottom:277.645333pt;}
.yff{bottom:278.401333pt;}
.y65{bottom:279.989407pt;}
.y1e1{bottom:281.653625pt;}
.y40{bottom:283.994667pt;}
.yf3{bottom:283.996000pt;}
.y156{bottom:283.997333pt;}
.y97{bottom:284.528000pt;}
.y20e{bottom:286.264767pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1a8{bottom:294.807058pt;}
.y127{bottom:294.956000pt;}
.yfe{bottom:295.712000pt;}
.y16f{bottom:296.013333pt;}
.y1e0{bottom:298.964342pt;}
.y3f{bottom:301.305333pt;}
.y155{bottom:301.308000pt;}
.y96{bottom:301.837333pt;}
.y64{bottom:302.666457pt;}
.y1a6{bottom:307.430900pt;}
.y1a7{bottom:307.657030pt;}
.yf{bottom:309.452000pt;}
.y1df{bottom:311.662850pt;}
.y126{bottom:312.266667pt;}
.yfd{bottom:313.021333pt;}
.y20c{bottom:316.273992pt;}
.y20d{bottom:316.651587pt;}
.y63{bottom:317.330807pt;}
.y3e{bottom:318.690667pt;}
.y154{bottom:318.693333pt;}
.y95{bottom:319.222667pt;}
.y16d{bottom:319.976000pt;}
.y16e{bottom:320.732000pt;}
.y1a5{bottom:324.740550pt;}
.y114{bottom:328.140000pt;}
.y1de{bottom:328.973567pt;}
.y20b{bottom:329.275429pt;}
.y125{bottom:329.652000pt;}
.yfc{bottom:330.408000pt;}
.y62{bottom:331.995157pt;}
.y3d{bottom:336.001333pt;}
.y153{bottom:336.002667pt;}
.y94{bottom:336.533333pt;}
.y1a4{bottom:337.440125pt;}
.y1dd{bottom:341.597409pt;}
.ye{bottom:343.809333pt;}
.y16b{bottom:344.013333pt;}
.y16c{bottom:344.693333pt;}
.y113{bottom:345.449333pt;}
.y20a{bottom:346.283217pt;}
.y61{bottom:346.659507pt;}
.y124{bottom:346.961333pt;}
.yfb{bottom:347.717333pt;}
.y1a3{bottom:350.138633pt;}
.y3c{bottom:353.310667pt;}
.yf2{bottom:353.312000pt;}
.y152{bottom:353.313333pt;}
.y93{bottom:353.844000pt;}
.y1dc{bottom:354.295917pt;}
.y209{bottom:358.982791pt;}
.y60{bottom:361.323857pt;}
.yd{bottom:362.706666pt;}
.y112{bottom:362.834667pt;}
.y123{bottom:364.272000pt;}
.yfa{bottom:365.028000pt;}
.y1a2{bottom:367.449350pt;}
.y169{bottom:367.974667pt;}
.y16a{bottom:368.729333pt;}
.yc7{bottom:370.696000pt;}
.yf1{bottom:370.697333pt;}
.y151{bottom:370.698667pt;}
.y92{bottom:371.229333pt;}
.y1db{bottom:371.606634pt;}
.y3b{bottom:375.986667pt;}
.y5f{bottom:375.988207pt;}
.y208{bottom:376.292442pt;}
.y1a1{bottom:380.073192pt;}
.y111{bottom:380.145333pt;}
.y122{bottom:381.582667pt;}
.yf9{bottom:382.413333pt;}
.y1da{bottom:384.305142pt;}
.yc6{bottom:388.006667pt;}
.y150{bottom:388.009333pt;}
.y91{bottom:388.540000pt;}
.y206{bottom:388.992016pt;}
.y207{bottom:389.293879pt;}
.y168{bottom:390.652000pt;}
.y1d9{bottom:396.928984pt;}
.y110{bottom:397.456000pt;}
.y1a0{bottom:397.458575pt;}
.y5e{bottom:398.665257pt;}
.y121{bottom:398.968000pt;}
.yf8{bottom:399.724000pt;}
.yc5{bottom:405.317333pt;}
.y14f{bottom:405.320000pt;}
.y90{bottom:405.849333pt;}
.y205{bottom:406.301667pt;}
.y19f{bottom:410.082417pt;}
.yf0{bottom:410.682667pt;}
.y1d8{bottom:414.314366pt;}
.y10f{bottom:414.841333pt;}
.y120{bottom:416.277333pt;}
.yf7{bottom:417.033333pt;}
.y204{bottom:418.925509pt;}
.y5d{bottom:421.342307pt;}
.yc4{bottom:422.702667pt;}
.y14e{bottom:422.705333pt;}
.y19e{bottom:422.780925pt;}
.y8f{bottom:423.234667pt;}
.y1d7{bottom:426.938209pt;}
.y167{bottom:429.960000pt;}
.y203{bottom:431.625083pt;}
.y10e{bottom:432.150667pt;}
.yf6{bottom:434.418667pt;}
.yd2{bottom:437.745333pt;}
.yc3{bottom:440.012000pt;}
.yd1{bottom:440.013333pt;}
.y14d{bottom:440.014667pt;}
.y19d{bottom:440.091642pt;}
.y8e{bottom:440.545333pt;}
.y5c{bottom:444.019357pt;}
.y1d6{bottom:444.323591pt;}
.y137{bottom:444.776091pt;}
.yc{bottom:446.990669pt;}
.y166{bottom:447.269333pt;}
.yef{bottom:447.498667pt;}
.y202{bottom:448.934734pt;}
.y19c{bottom:452.790150pt;}
.y1d5{bottom:456.947434pt;}
.yd0{bottom:457.322667pt;}
.y14c{bottom:457.325333pt;}
.y8d{bottom:457.856000pt;}
.y11d{bottom:460.649267pt;}
.y201{bottom:461.634308pt;}
.yc2{bottom:462.690600pt;}
.y10d{bottom:462.841267pt;}
.yb{bottom:462.990669pt;}
.y165{bottom:464.654667pt;}
.yee{bottom:464.884000pt;}
.y136{bottom:465.412633pt;}
.y19b{bottom:465.413992pt;}
.y5b{bottom:466.696406pt;}
.y3a{bottom:467.225400pt;}
.y1d4{bottom:474.332816pt;}
.ycf{bottom:474.633333pt;}
.y14b{bottom:474.636000pt;}
.y8c{bottom:475.241333pt;}
.y135{bottom:478.111141pt;}
.y19a{bottom:478.113566pt;}
.ya{bottom:478.990666pt;}
.y11c{bottom:481.285809pt;}
.y5a{bottom:481.360756pt;}
.yed{bottom:482.194667pt;}
.y10c{bottom:483.552474pt;}
.y39{bottom:485.897333pt;}
.yc1{bottom:486.652000pt;}
.y1d3{bottom:486.956658pt;}
.y164{bottom:487.256000pt;}
.y134{bottom:490.734983pt;}
.y200{bottom:491.643533pt;}
.yce{bottom:492.018667pt;}
.y14a{bottom:492.021333pt;}
.y8b{bottom:492.550667pt;}
.y11b{bottom:493.908584pt;}
.y9{bottom:494.990666pt;}
.y199{bottom:495.423217pt;}
.y10b{bottom:496.176317pt;}
.yec{bottom:499.504000pt;}
.y133{bottom:503.434558pt;}
.y59{bottom:504.037806pt;}
.y1d2{bottom:504.267375pt;}
.y38{bottom:504.568000pt;}
.y11a{bottom:506.608159pt;}
.y198{bottom:508.122791pt;}
.y10a{bottom:508.875891pt;}
.ycd{bottom:509.329333pt;}
.y149{bottom:509.332000pt;}
.y8a{bottom:509.861333pt;}
.y132{bottom:516.057333pt;}
.yeb{bottom:516.889333pt;}
.y1d1{bottom:516.965883pt;}
.y58{bottom:518.703223pt;}
.y119{bottom:519.306667pt;}
.y197{bottom:520.746633pt;}
.y109{bottom:521.498667pt;}
.yc0{bottom:521.577333pt;}
.y37{bottom:523.238667pt;}
.ycc{bottom:526.638667pt;}
.y148{bottom:526.641333pt;}
.y89{bottom:527.172000pt;}
.y1d0{bottom:529.665458pt;}
.y57{bottom:533.367573pt;}
.yea{bottom:534.200000pt;}
.y1ff{bottom:534.276600pt;}
.y163{bottom:534.577333pt;}
.y196{bottom:538.132016pt;}
.ybf{bottom:538.962667pt;}
.y36{bottom:541.909333pt;}
.y147{bottom:544.026667pt;}
.y88{bottom:544.557333pt;}
.y1cf{bottom:546.975108pt;}
.y56{bottom:548.031923pt;}
.ycb{bottom:549.316000pt;}
.y195{bottom:550.755858pt;}
.ye9{bottom:551.510667pt;}
.y162{bottom:551.886667pt;}
.ybe{bottom:556.273333pt;}
.y1ce{bottom:559.598950pt;}
.y1fe{bottom:559.976546pt;}
.y35{bottom:560.580000pt;}
.y146{bottom:561.337333pt;}
.y87{bottom:561.868000pt;}
.y54{bottom:562.696273pt;}
.y55{bottom:562.998136pt;}
.y194{bottom:568.141241pt;}
.ye8{bottom:568.820000pt;}
.y1cd{bottom:572.298525pt;}
.ybd{bottom:573.582667pt;}
.y8{bottom:573.786667pt;}
.y161{bottom:574.564000pt;}
.y1fd{bottom:576.984333pt;}
.y145{bottom:578.648000pt;}
.y86{bottom:579.177333pt;}
.y34{bottom:579.250667pt;}
.y193{bottom:580.765083pt;}
.ye7{bottom:583.937333pt;}
.y53{bottom:584.541333pt;}
.ye6{bottom:586.205333pt;}
.y1cc{bottom:589.608175pt;}
.y1fc{bottom:589.985771pt;}
.ybc{bottom:590.968000pt;}
.y7{bottom:592.685334pt;}
.y144{bottom:596.033333pt;}
.y85{bottom:596.562667pt;}
.y33{bottom:597.921333pt;}
.y192{bottom:598.074733pt;}
.ye4{bottom:601.322667pt;}
.y1cb{bottom:602.307750pt;}
.ye5{bottom:603.514667pt;}
.ye3{bottom:603.516000pt;}
.y1fb{bottom:606.993558pt;}
.ybb{bottom:608.278667pt;}
.y191{bottom:610.774308pt;}
.y143{bottom:613.342667pt;}
.y84{bottom:613.873333pt;}
.y1ca{bottom:614.930525pt;}
.y32{bottom:616.592000pt;}
.y1f9{bottom:619.617400pt;}
.y1fa{bottom:619.996062pt;}
.ye2{bottom:620.826667pt;}
.yba{bottom:625.589333pt;}
.y190{bottom:628.083958pt;}
.y142{bottom:630.653333pt;}
.y83{bottom:631.184000pt;}
.y1c9{bottom:632.316975pt;}
.y31{bottom:635.262667pt;}
.y1f8{bottom:636.928117pt;}
.ye1{bottom:638.212000pt;}
.y18f{bottom:640.783533pt;}
.yb9{bottom:642.898667pt;}
.y1c8{bottom:644.940817pt;}
.y6{bottom:645.598667pt;}
.y141{bottom:647.964000pt;}
.y82{bottom:648.569333pt;}
.y1f6{bottom:649.626625pt;}
.y1f7{bottom:649.929555pt;}
.ye0{bottom:653.329333pt;}
.y18e{bottom:653.407375pt;}
.y30{bottom:653.933333pt;}
.ydf{bottom:655.521333pt;}
.yb8{bottom:660.284000pt;}
.y52{bottom:661.796000pt;}
.y1c7{bottom:662.326200pt;}
.y140{bottom:665.349333pt;}
.y81{bottom:665.880000pt;}
.y1f5{bottom:666.937342pt;}
.y3{bottom:668.977329pt;}
.y18d{bottom:670.792758pt;}
.yde{bottom:672.832000pt;}
.y1c6{bottom:674.950042pt;}
.y51{bottom:677.140000pt;}
.yb7{bottom:677.594667pt;}
.y1f3{bottom:679.635850pt;}
.y1f4{bottom:679.938779pt;}
.y13f{bottom:682.660000pt;}
.y80{bottom:683.189333pt;}
.y2f{bottom:683.262667pt;}
.y18c{bottom:683.416600pt;}
.ydd{bottom:690.217333pt;}
.y1c5{bottom:692.259692pt;}
.y50{bottom:692.409333pt;}
.yb6{bottom:694.905333pt;}
.y1f2{bottom:696.946567pt;}
.y13e{bottom:699.969333pt;}
.y7f{bottom:700.500000pt;}
.y18b{bottom:700.801983pt;}
.y1c4{bottom:704.959267pt;}
.ydc{bottom:707.528000pt;}
.y4f{bottom:707.754667pt;}
.y1f1{bottom:709.645075pt;}
.yb5{bottom:712.290667pt;}
.y18a{bottom:713.425825pt;}
.y13d{bottom:717.354667pt;}
.y7e{bottom:717.885333pt;}
.y1c3{bottom:722.268917pt;}
.yda{bottom:722.645333pt;}
.y4e{bottom:723.098667pt;}
.ydb{bottom:724.837333pt;}
.yd9{bottom:724.838667pt;}
.y1f0{bottom:726.955792pt;}
.yb4{bottom:729.601333pt;}
.y189{bottom:730.811208pt;}
.y13c{bottom:734.665333pt;}
.y1c2{bottom:734.968492pt;}
.y7d{bottom:735.196000pt;}
.y2e{bottom:736.857900pt;}
.y1ef{bottom:739.655366pt;}
.yd8{bottom:739.956000pt;}
.yd7{bottom:742.148000pt;}
.y188{bottom:743.435050pt;}
.yb3{bottom:746.910667pt;}
.y13b{bottom:751.976000pt;}
.y1c1{bottom:752.278142pt;}
.y7c{bottom:752.505333pt;}
.y187{bottom:760.744700pt;}
.y21c{bottom:761.651891pt;}
.y2d{bottom:763.541300pt;}
.yb2{bottom:764.296000pt;}
.y1c0{bottom:764.977716pt;}
.y13a{bottom:769.361333pt;}
.y1ee{bottom:769.664591pt;}
.y7b{bottom:769.890667pt;}
.yd6{bottom:772.385333pt;}
.y186{bottom:773.444275pt;}
.y21b{bottom:774.274667pt;}
.y2b{bottom:776.845667pt;}
.y2c{bottom:777.223262pt;}
.yb1{bottom:781.606667pt;}
.y2{bottom:781.661334pt;}
.y1bf{bottom:782.287367pt;}
.y139{bottom:786.670667pt;}
.y21a{bottom:786.974241pt;}
.y7a{bottom:787.201333pt;}
.y29{bottom:790.224700pt;}
.y185{bottom:790.753925pt;}
.y2a{bottom:792.492405pt;}
.y1be{bottom:794.986941pt;}
.yd5{bottom:797.028000pt;}
.yb0{bottom:798.917333pt;}
.y184{bottom:803.453500pt;}
.y28{bottom:803.528000pt;}
.y219{bottom:804.284958pt;}
.y79{bottom:804.512000pt;}
.y138{bottom:809.348000pt;}
.y1bd{bottom:812.296592pt;}
.yd4{bottom:814.337333pt;}
.yaf{bottom:816.302667pt;}
.y218{bottom:816.983466pt;}
.y183{bottom:820.764216pt;}
.y78{bottom:821.897333pt;}
.y1bc{bottom:824.996166pt;}
.y25{bottom:827.489333pt;}
.y27{bottom:827.866133pt;}
.y217{bottom:829.607309pt;}
.y26{bottom:832.857333pt;}
.y182{bottom:833.462724pt;}
.yae{bottom:833.612000pt;}
.yd3{bottom:837.014667pt;}
.y77{bottom:839.208000pt;}
.y1bb{bottom:842.306883pt;}
.y216{bottom:846.992691pt;}
.y181{bottom:850.773441pt;}
.y1ba{bottom:854.929659pt;}
.yad{bottom:856.289333pt;}
.y76{bottom:856.517333pt;}
.y1{bottom:859.312000pt;}
.y215{bottom:859.616533pt;}
.y24{bottom:860.827467pt;}
.y180{bottom:863.471949pt;}
.y1b9{bottom:872.316108pt;}
.y75{bottom:873.902667pt;}
.y17f{bottom:880.782666pt;}
.y1b8{bottom:884.938884pt;}
.y214{bottom:889.625758pt;}
.y23{bottom:890.834667pt;}
.y74{bottom:891.213333pt;}
.y17e{bottom:893.405442pt;}
.y1b7{bottom:902.325333pt;}
.y73{bottom:908.524000pt;}
.y17d{bottom:910.791891pt;}
.y1b6{bottom:914.948108pt;}
.y213{bottom:919.634983pt;}
.y22{bottom:920.844000pt;}
.y17c{bottom:923.414667pt;}
.y72{bottom:925.833333pt;}
.ya4{bottom:930.288705pt;}
.y1b5{bottom:932.258825pt;}
.y17b{bottom:941.404000pt;}
.y71{bottom:943.218667pt;}
.ya3{bottom:944.953055pt;}
.y1b4{bottom:944.957333pt;}
.y4b{bottom:984.037333pt;}
.ya0{bottom:990.312000pt;}
.ya2{bottom:994.393333pt;}
.h1a{height:16.478800pt;}
.he{height:24.828689pt;}
.h20{height:25.312644pt;}
.h1d{height:26.663600pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h15{height:30.916533pt;}
.h17{height:31.082945pt;}
.h21{height:31.999600pt;}
.hb{height:33.066253pt;}
.h10{height:33.108919pt;}
.hf{height:34.148438pt;}
.h19{height:34.772899pt;}
.h18{height:36.052883pt;}
.hd{height:37.248000pt;}
.h1f{height:37.973333pt;}
.h12{height:39.266667pt;}
.h14{height:40.000000pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1e{height:44.421333pt;}
.h1b{height:46.933333pt;}
.h1c{height:47.999600pt;}
.h2{height:49.024000pt;}
.h13{height:49.663586pt;}
.h11{height:63.026667pt;}
.h5{height:69.450667pt;}
.hc{height:78.240000pt;}
.h16{height:88.063659pt;}
.h4{height:105.826671pt;}
.ha{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:75.363733pt;}
.w4{width:143.093333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:46.261467pt;}
.x14{left:48.000000pt;}
.x15{left:63.496000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x27{left:96.000000pt;}
.x16{left:138.404930pt;}
.x4{left:180.874667pt;}
.x5{left:266.682667pt;}
.x31{left:273.184000pt;}
.x12{left:282.632000pt;}
.x1d{left:287.168000pt;}
.x32{left:295.330923pt;}
.x1b{left:306.444000pt;}
.x1e{left:309.694667pt;}
.x1c{left:336.150667pt;}
.x6{left:353.914667pt;}
.x11{left:356.558877pt;}
.x7{left:366.236000pt;}
.x1a{left:368.501333pt;}
.x34{left:371.602697pt;}
.x8{left:382.109600pt;}
.x3c{left:386.039850pt;}
.x3{left:404.408000pt;}
.x2c{left:439.405333pt;}
.x9{left:440.843600pt;}
.x29{left:442.882667pt;}
.x2b{left:453.086667pt;}
.x21{left:461.404000pt;}
.xa{left:467.905333pt;}
.xb{left:472.894667pt;}
.x33{left:475.916399pt;}
.x22{left:483.854667pt;}
.x18{left:487.484000pt;}
.x2d{left:494.208000pt;}
.x2a{left:497.685333pt;}
.x19{left:507.061333pt;}
.x2f{left:513.558667pt;}
.x28{left:522.932000pt;}
.x25{left:531.174667pt;}
.x10{left:537.823811pt;}
.x26{left:539.186667pt;}
.x2e{left:552.110667pt;}
.x17{left:561.940000pt;}
.x30{left:568.361333pt;}
.x36{left:583.254451pt;}
.xc{left:619.766667pt;}
.x35{left:628.079491pt;}
.xd{left:632.088000pt;}
.x37{left:641.988650pt;}
.x1f{left:674.570667pt;}
.x38{left:684.470253pt;}
.x39{left:695.505848pt;}
.x20{left:697.020000pt;}
.x23{left:706.393333pt;}
.x3b{left:710.776057pt;}
.xe{left:717.429333pt;}
.xf{left:729.826667pt;}
.x24{left:736.101333pt;}
.x3a{left:742.220998pt;}
}




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