
    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_62e38e117e7ecd03e069e60f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6b65a25b3626b167a794dd85.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_41bb70f75e4479c9c73babe2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_53ede1b20315d0dc9e26944f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6e54a95cfe36d8facad4b71a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_36650ecbe049f88e400dafb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_a93c17296d6a773005117e38.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4de8424f703ceb771c04d0f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_fcf94e6f1bce52f8d5588df6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_654625f9f320eca00994c6f7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_95035a59588434c1d3240bd4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_516be20664d409baeb21c72b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f14731f5e9a2f8de9d663cac.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_46fda483b17b433d3b38b1ec.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_86473b9325feecbd3c16534b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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_f36396b5bacd50623c22b44b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_10d8c37ebdca13c6a2819796.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938000;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_5565aba70abb3999c89968d8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.944000;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(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);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-5.778000px;}
.v2{vertical-align:-1.355400px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.263600px;}
.lsd{letter-spacing:-1.200600px;}
.ls12{letter-spacing:-1.199985px;}
.ls11{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.239997px;}
.lse{letter-spacing:-0.239400px;}
.lsa{letter-spacing:-0.238497px;}
.ls9{letter-spacing:-0.237600px;}
.ls10{letter-spacing:-0.237598px;}
.ls21{letter-spacing:-0.214367px;}
.lsf{letter-spacing:-0.212772px;}
.lsb{letter-spacing:-0.212372px;}
.ls1b{letter-spacing:-0.211976px;}
.lsc{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.531939px;}
.ls15{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.792000px;}
.ls29{letter-spacing:1.128000px;}
.ls26{letter-spacing:1.134000px;}
.ls13{letter-spacing:1.363183px;}
.ls2a{letter-spacing:3.174000px;}
.ls2b{letter-spacing:5.107136px;}
.ls0{letter-spacing:5.486400px;}
.ls6{letter-spacing:9.446282px;}
.ls3{letter-spacing:10.387070px;}
.ls23{letter-spacing:10.401470px;}
.ls24{letter-spacing:10.444669px;}
.ls5{letter-spacing:11.908651px;}
.ls4{letter-spacing:12.072600px;}
.ls1f{letter-spacing:12.342000px;}
.ls20{letter-spacing:12.678000px;}
.ls19{letter-spacing:12.894000px;}
.ls1d{letter-spacing:13.020000px;}
.ls1c{letter-spacing:13.092000px;}
.ls22{letter-spacing:13.128000px;}
.ls16{letter-spacing:13.320000px;}
.ls17{letter-spacing:13.326000px;}
.ls1e{letter-spacing:13.398000px;}
.ls14{letter-spacing:13.612630px;}
.ls18{letter-spacing:13.650000px;}
.ls27{letter-spacing:14.058000px;}
.ls25{letter-spacing:15.414000px;}
.ls2c{letter-spacing:15.652604px;}
.ls1{letter-spacing:20.783740px;}
.ls2{letter-spacing:20.788540px;}
.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;}
}
.ws32{word-spacing:-25.247684px;}
.ws85{word-spacing:-22.854000px;}
.ws10c{word-spacing:-19.994233px;}
.ws9c{word-spacing:-16.878000px;}
.ws57{word-spacing:-16.542000px;}
.ws83{word-spacing:-16.536000px;}
.ws112{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.247834px;}
.wsce{word-spacing:-10.991863px;}
.ws39{word-spacing:-10.799865px;}
.wsb9{word-spacing:-10.463869px;}
.ws5f{word-spacing:-4.456763px;}
.ws119{word-spacing:-4.233565px;}
.ws107{word-spacing:-4.082366px;}
.ws15b{word-spacing:-3.844752px;}
.ws132{word-spacing:-3.623955px;}
.ws16d{word-spacing:-3.566355px;}
.ws156{word-spacing:-3.537556px;}
.ws22{word-spacing:-3.528300px;}
.ws12d{word-spacing:-3.527956px;}
.ws151{word-spacing:-3.475157px;}
.ws18{word-spacing:-3.459900px;}
.ws143{word-spacing:-3.431957px;}
.ws16e{word-spacing:-3.427157px;}
.ws158{word-spacing:-3.417557px;}
.ws149{word-spacing:-3.403157px;}
.ws1b{word-spacing:-3.397200px;}
.ws11{word-spacing:-3.393558px;}
.ws1f{word-spacing:-3.391500px;}
.ws155{word-spacing:-3.383958px;}
.ws152{word-spacing:-3.364758px;}
.wsd{word-spacing:-3.345558px;}
.ws6{word-spacing:-3.342600px;}
.ws12e{word-spacing:-3.340758px;}
.wse{word-spacing:-3.331158px;}
.ws15a{word-spacing:-3.326358px;}
.ws24{word-spacing:-3.323100px;}
.ws162{word-spacing:-3.316759px;}
.ws3{word-spacing:-3.315600px;}
.ws148{word-spacing:-3.311959px;}
.ws10{word-spacing:-3.302359px;}
.ws13d{word-spacing:-3.297559px;}
.ws21{word-spacing:-3.294600px;}
.ws14a{word-spacing:-3.287959px;}
.ws144{word-spacing:-3.278359px;}
.ws14c{word-spacing:-3.268759px;}
.wsa{word-spacing:-3.267000px;}
.ws163{word-spacing:-3.259159px;}
.wsb{word-spacing:-3.256200px;}
.ws16{word-spacing:-3.254700px;}
.ws137{word-spacing:-3.254359px;}
.ws4{word-spacing:-3.250800px;}
.ws153{word-spacing:-3.249559px;}
.ws12{word-spacing:-3.244759px;}
.ws161{word-spacing:-3.239960px;}
.ws135{word-spacing:-3.235160px;}
.ws126{word-spacing:-3.230360px;}
.ws15e{word-spacing:-3.225560px;}
.ws16c{word-spacing:-3.220760px;}
.ws13a{word-spacing:-3.211160px;}
.ws76{word-spacing:-3.187160px;}
.ws164{word-spacing:-3.182360px;}
.ws1a{word-spacing:-3.180600px;}
.wsc{word-spacing:-3.177560px;}
.ws10b{word-spacing:-3.167960px;}
.ws133{word-spacing:-3.158361px;}
.ws31{word-spacing:-3.153561px;}
.ws168{word-spacing:-3.148761px;}
.ws5{word-spacing:-3.132000px;}
.ws165{word-spacing:-3.129561px;}
.ws2f{word-spacing:-3.124761px;}
.ws23{word-spacing:-3.123600px;}
.ws13b{word-spacing:-3.119961px;}
.ws19{word-spacing:-3.117900px;}
.ws129{word-spacing:-3.115161px;}
.ws20{word-spacing:-3.112200px;}
.ws128{word-spacing:-3.110361px;}
.ws125{word-spacing:-3.105561px;}
.ws138{word-spacing:-3.100761px;}
.ws9{word-spacing:-3.099600px;}
.ws14b{word-spacing:-3.095961px;}
.ws159{word-spacing:-3.086361px;}
.ws77{word-spacing:-3.071962px;}
.ws147{word-spacing:-3.062362px;}
.ws167{word-spacing:-3.057562px;}
.ws12b{word-spacing:-3.052762px;}
.ws146{word-spacing:-3.023962px;}
.ws14d{word-spacing:-3.019162px;}
.ws15d{word-spacing:-3.009562px;}
.ws169{word-spacing:-3.004762px;}
.ws8{word-spacing:-3.002400px;}
.ws142{word-spacing:-2.985563px;}
.ws1c{word-spacing:-2.981100px;}
.wsf{word-spacing:-2.975963px;}
.ws15{word-spacing:-2.975400px;}
.ws14f{word-spacing:-2.971163px;}
.ws16a{word-spacing:-2.961563px;}
.ws13f{word-spacing:-2.956763px;}
.ws13c{word-spacing:-2.951963px;}
.ws7{word-spacing:-2.943000px;}
.ws12f{word-spacing:-2.937563px;}
.ws160{word-spacing:-2.923163px;}
.ws12a{word-spacing:-2.913564px;}
.ws1d{word-spacing:-2.912700px;}
.ws140{word-spacing:-2.908764px;}
.ws15f{word-spacing:-2.903964px;}
.ws136{word-spacing:-2.894364px;}
.ws134{word-spacing:-2.889564px;}
.ws13e{word-spacing:-2.855964px;}
.ws2{word-spacing:-2.851200px;}
.ws157{word-spacing:-2.831965px;}
.ws130{word-spacing:-2.827165px;}
.ws13{word-spacing:-2.812765px;}
.ws145{word-spacing:-2.807965px;}
.ws1e{word-spacing:-2.804400px;}
.ws127{word-spacing:-2.793565px;}
.ws16b{word-spacing:-2.788765px;}
.ws15c{word-spacing:-2.783965px;}
.ws131{word-spacing:-2.779165px;}
.ws154{word-spacing:-2.769565px;}
.ws139{word-spacing:-2.764765px;}
.ws150{word-spacing:-2.759965px;}
.ws12c{word-spacing:-2.683166px;}
.ws166{word-spacing:-2.663967px;}
.ws1{word-spacing:-2.656800px;}
.ws0{word-spacing:-2.649567px;}
.ws17{word-spacing:-2.633400px;}
.ws94{word-spacing:-1.302000px;}
.ws8b{word-spacing:-1.260000px;}
.ws92{word-spacing:-1.248000px;}
.ws96{word-spacing:-1.212000px;}
.ws8f{word-spacing:-1.086000px;}
.ws8d{word-spacing:-1.080000px;}
.ws8a{word-spacing:-1.074000px;}
.ws44{word-spacing:-1.055987px;}
.ws90{word-spacing:-1.044000px;}
.ws8e{word-spacing:-1.002000px;}
.ws91{word-spacing:-0.984000px;}
.wse7{word-spacing:-0.966000px;}
.ws8c{word-spacing:-0.942000px;}
.ws89{word-spacing:-0.930000px;}
.ws47{word-spacing:-0.916789px;}
.ws93{word-spacing:-0.906000px;}
.ws35{word-spacing:-0.897589px;}
.ws41{word-spacing:-0.892789px;}
.ws3f{word-spacing:-0.878389px;}
.ws81{word-spacing:-0.859189px;}
.ws49{word-spacing:-0.815990px;}
.ws7f{word-spacing:-0.806390px;}
.ws95{word-spacing:-0.792000px;}
.ws3d{word-spacing:-0.791990px;}
.ws7e{word-spacing:-0.782390px;}
.ws3c{word-spacing:-0.777590px;}
.ws37{word-spacing:-0.772790px;}
.wsad{word-spacing:-0.768000px;}
.ws4f{word-spacing:-0.767990px;}
.ws34{word-spacing:-0.748791px;}
.ws3b{word-spacing:-0.743991px;}
.ws78{word-spacing:-0.739191px;}
.ws25{word-spacing:-0.732000px;}
.ws52{word-spacing:-0.729591px;}
.ws43{word-spacing:-0.724791px;}
.ws53{word-spacing:-0.719991px;}
.wsa4{word-spacing:-0.708000px;}
.wsff{word-spacing:-0.695991px;}
.ws38{word-spacing:-0.691191px;}
.wse2{word-spacing:-0.684000px;}
.ws45{word-spacing:-0.676792px;}
.ws48{word-spacing:-0.671992px;}
.ws7a{word-spacing:-0.667192px;}
.wse9{word-spacing:-0.666000px;}
.ws50{word-spacing:-0.647992px;}
.ws4c{word-spacing:-0.643192px;}
.ws42{word-spacing:-0.633592px;}
.wse3{word-spacing:-0.630000px;}
.wse4{word-spacing:-0.624000px;}
.ws33{word-spacing:-0.623992px;}
.ws4e{word-spacing:-0.614392px;}
.ws4a{word-spacing:-0.609592px;}
.wsd8{word-spacing:-0.594000px;}
.wsfc{word-spacing:-0.590393px;}
.ws72{word-spacing:-0.576000px;}
.ws3a{word-spacing:-0.571193px;}
.wsfb{word-spacing:-0.566393px;}
.wsfd{word-spacing:-0.561593px;}
.ws4d{word-spacing:-0.551993px;}
.ws79{word-spacing:-0.537593px;}
.wsde{word-spacing:-0.532793px;}
.wsf5{word-spacing:-0.528000px;}
.ws3e{word-spacing:-0.527993px;}
.ws40{word-spacing:-0.523193px;}
.ws7c{word-spacing:-0.518394px;}
.ws5c{word-spacing:-0.516000px;}
.ws69{word-spacing:-0.510000px;}
.wsb0{word-spacing:-0.504000px;}
.ws4b{word-spacing:-0.499194px;}
.wsab{word-spacing:-0.498000px;}
.wse8{word-spacing:-0.480000px;}
.wscb{word-spacing:-0.475194px;}
.ws66{word-spacing:-0.474000px;}
.ws46{word-spacing:-0.470394px;}
.wsda{word-spacing:-0.468000px;}
.ws7b{word-spacing:-0.460794px;}
.ws5d{word-spacing:-0.456000px;}
.ws36{word-spacing:-0.436795px;}
.ws2c{word-spacing:-0.432000px;}
.wsd7{word-spacing:-0.426000px;}
.ws10f{word-spacing:-0.414000px;}
.ws2d{word-spacing:-0.396000px;}
.wsd1{word-spacing:-0.393595px;}
.ws9f{word-spacing:-0.390000px;}
.wse0{word-spacing:-0.384000px;}
.ws5b{word-spacing:-0.378000px;}
.wsac{word-spacing:-0.372000px;}
.wsb6{word-spacing:-0.369595px;}
.ws64{word-spacing:-0.366000px;}
.ws26{word-spacing:-0.360000px;}
.ws28{word-spacing:-0.354000px;}
.wsd2{word-spacing:-0.350396px;}
.ws75{word-spacing:-0.348000px;}
.ws80{word-spacing:-0.345596px;}
.ws9e{word-spacing:-0.342000px;}
.ws104{word-spacing:-0.340796px;}
.ws86{word-spacing:-0.336000px;}
.ws2b{word-spacing:-0.330000px;}
.ws7d{word-spacing:-0.326396px;}
.wsaa{word-spacing:-0.324000px;}
.ws5a{word-spacing:-0.312000px;}
.ws82{word-spacing:-0.306000px;}
.ws51{word-spacing:-0.302396px;}
.wsef{word-spacing:-0.300000px;}
.ws65{word-spacing:-0.294000px;}
.wse5{word-spacing:-0.288000px;}
.ws56{word-spacing:-0.282000px;}
.ws6f{word-spacing:-0.276000px;}
.ws74{word-spacing:-0.270000px;}
.wsa1{word-spacing:-0.264000px;}
.ws6a{word-spacing:-0.258000px;}
.ws9b{word-spacing:-0.252000px;}
.wsa0{word-spacing:-0.246000px;}
.ws6d{word-spacing:-0.240000px;}
.ws59{word-spacing:-0.234000px;}
.ws55{word-spacing:-0.228000px;}
.ws117{word-spacing:-0.222000px;}
.wsfe{word-spacing:-0.220797px;}
.ws98{word-spacing:-0.216000px;}
.ws5e{word-spacing:-0.210000px;}
.wsfa{word-spacing:-0.206397px;}
.ws70{word-spacing:-0.204000px;}
.ws84{word-spacing:-0.198000px;}
.ws2a{word-spacing:-0.192000px;}
.wsa7{word-spacing:-0.186000px;}
.wsf2{word-spacing:-0.180000px;}
.ws67{word-spacing:-0.174000px;}
.wsbd{word-spacing:-0.172798px;}
.wsdf{word-spacing:-0.168000px;}
.wsb4{word-spacing:-0.167998px;}
.wsec{word-spacing:-0.163198px;}
.ws87{word-spacing:-0.162000px;}
.ws109{word-spacing:-0.158398px;}
.wsf3{word-spacing:-0.156000px;}
.ws113{word-spacing:-0.150000px;}
.ws2e{word-spacing:-0.144000px;}
.ws62{word-spacing:-0.138000px;}
.wsb8{word-spacing:-0.134398px;}
.wsa6{word-spacing:-0.132000px;}
.ws110{word-spacing:-0.126000px;}
.wsf0{word-spacing:-0.120000px;}
.wse6{word-spacing:-0.114000px;}
.ws115{word-spacing:-0.108000px;}
.wsf8{word-spacing:-0.102000px;}
.wsdc{word-spacing:-0.096000px;}
.ws61{word-spacing:-0.090000px;}
.ws11f{word-spacing:-0.084000px;}
.ws88{word-spacing:-0.078000px;}
.wsa9{word-spacing:-0.072000px;}
.wsa5{word-spacing:-0.066000px;}
.ws100{word-spacing:-0.062399px;}
.wsd3{word-spacing:-0.060000px;}
.wsd9{word-spacing:-0.054000px;}
.wse1{word-spacing:-0.036000px;}
.wsd5{word-spacing:-0.030000px;}
.wsea{word-spacing:-0.012000px;}
.wsc9{word-spacing:-0.004800px;}
.ws54{word-spacing:0.000000px;}
.wsdd{word-spacing:0.004800px;}
.ws6b{word-spacing:0.006000px;}
.wsa3{word-spacing:0.012000px;}
.wscc{word-spacing:0.014400px;}
.ws63{word-spacing:0.030000px;}
.wsc8{word-spacing:0.033600px;}
.ws9d{word-spacing:0.036000px;}
.ws99{word-spacing:0.042000px;}
.wsc7{word-spacing:0.043199px;}
.wsd4{word-spacing:0.048000px;}
.ws10a{word-spacing:0.052799px;}
.wsf9{word-spacing:0.054000px;}
.wsb1{word-spacing:0.057599px;}
.wsaf{word-spacing:0.060000px;}
.ws111{word-spacing:0.066000px;}
.wsf4{word-spacing:0.078000px;}
.wseb{word-spacing:0.081599px;}
.ws27{word-spacing:0.084000px;}
.ws97{word-spacing:0.093599px;}
.ws6e{word-spacing:0.102000px;}
.wsc3{word-spacing:0.110399px;}
.wsed{word-spacing:0.114000px;}
.ws116{word-spacing:0.120000px;}
.ws118{word-spacing:0.126000px;}
.ws114{word-spacing:0.132000px;}
.wsf1{word-spacing:0.134398px;}
.ws73{word-spacing:0.144000px;}
.ws29{word-spacing:0.162000px;}
.ws10d{word-spacing:0.168000px;}
.ws58{word-spacing:0.174000px;}
.wsbf{word-spacing:0.177598px;}
.wsb5{word-spacing:0.187198px;}
.wsc0{word-spacing:0.191998px;}
.ws102{word-spacing:0.196798px;}
.wsdb{word-spacing:0.208798px;}
.wsf6{word-spacing:0.210000px;}
.wsa8{word-spacing:0.216000px;}
.ws6c{word-spacing:0.259198px;}
.wscf{word-spacing:0.263997px;}
.wsae{word-spacing:0.270000px;}
.wsb7{word-spacing:0.283196px;}
.ws60{word-spacing:0.295198px;}
.wsee{word-spacing:0.300000px;}
.wsba{word-spacing:0.316796px;}
.wsa2{word-spacing:0.316797px;}
.wsc2{word-spacing:0.335996px;}
.ws123{word-spacing:0.342000px;}
.ws101{word-spacing:0.359996px;}
.wsd6{word-spacing:0.359997px;}
.ws9a{word-spacing:0.431996px;}
.ws108{word-spacing:0.432000px;}
.ws71{word-spacing:0.446396px;}
.ws68{word-spacing:0.450000px;}
.wsf7{word-spacing:0.456000px;}
.ws11b{word-spacing:0.480000px;}
.wsb2{word-spacing:0.518394px;}
.wsb3{word-spacing:0.561593px;}
.ws11c{word-spacing:0.666000px;}
.ws11e{word-spacing:0.708000px;}
.ws10e{word-spacing:0.798000px;}
.ws11d{word-spacing:0.978000px;}
.ws121{word-spacing:1.014000px;}
.ws122{word-spacing:1.020000px;}
.ws120{word-spacing:1.026000px;}
.ws11a{word-spacing:1.158000px;}
.ws30{word-spacing:34.588368px;}
.ws141{word-spacing:46.842614px;}
.ws14e{word-spacing:46.847414px;}
.ws124{word-spacing:46.909814px;}
.wsd0{word-spacing:335.165410px;}
.wsc6{word-spacing:335.232610px;}
.wsbe{word-spacing:335.251809px;}
.wsbb{word-spacing:335.362208px;}
.wsc1{word-spacing:335.386208px;}
.wsca{word-spacing:335.458207px;}
.wsbc{word-spacing:335.573405px;}
.wsc5{word-spacing:335.611805px;}
.ws106{word-spacing:355.085161px;}
.ws105{word-spacing:377.548881px;}
.ws103{word-spacing:390.556718px;}
.wscd{word-spacing:451.016762px;}
.wsc4{word-spacing:655.259009px;}
._30{margin-left:-26.250000px;}
._2f{margin-left:-24.460500px;}
._9{margin-left:-19.310159px;}
._7{margin-left:-17.409382px;}
._0{margin-left:-1.113586px;}
._4{width:1.778400px;}
._1{width:3.986400px;}
._8{width:9.081486px;}
._2{width:11.303859px;}
._5{width:12.510000px;}
._3{width:14.164500px;}
._27{width:15.873402px;}
._a{width:20.942138px;}
._2d{width:38.889114px;}
._b{width:129.219185px;}
._d{width:144.353396px;}
._26{width:152.124498px;}
._c{width:158.014025px;}
._19{width:170.292271px;}
._12{width:188.940038px;}
._25{width:194.383170px;}
._11{width:230.776315px;}
._18{width:256.551993px;}
._10{width:272.281396px;}
._16{width:278.929313px;}
._2a{width:283.498856px;}
._2b{width:284.742041px;}
._1c{width:301.921026px;}
._15{width:320.434395px;}
._22{width:324.202347px;}
._1e{width:325.387933px;}
._21{width:340.104549px;}
._1b{width:343.224510px;}
._1a{width:345.523681px;}
._24{width:347.501256px;}
._f{width:358.257922px;}
._20{width:366.216222px;}
._23{width:388.622342px;}
._14{width:406.218922px;}
._1d{width:428.481044px;}
._1f{width:452.567143px;}
._2c{width:591.016612px;}
._29{width:901.635129px;}
._13{width:1088.083999px;}
._17{width:1116.451644px;}
._e{width:1225.083886px;}
._28{width:1286.931113px;}
._2e{width:1560.119698px;}
._6{width:1585.943375px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.995000px;}
.fs4{font-size:35.995200px;}
.fs7{font-size:37.995000px;}
.fsa{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs8{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:54.000000px;}
.y151{bottom:104.599305px;}
.y2b{bottom:124.498500px;}
.yd9{bottom:124.498627px;}
.y1c2{bottom:124.500656px;}
.y4e{bottom:124.500851px;}
.y118{bottom:127.558950px;}
.y117{bottom:130.110150px;}
.y115{bottom:130.113000px;}
.y150{bottom:131.642167px;}
.y18f{bottom:131.982000px;}
.y161{bottom:133.513500px;}
.y12f{bottom:135.810000px;}
.y116{bottom:136.743300px;}
.y1c1{bottom:138.787678px;}
.y4d{bottom:140.998245px;}
.ye7{bottom:143.971500px;}
.y2a{bottom:143.973000px;}
.y114{bottom:149.587500px;}
.yd8{bottom:151.540289px;}
.y160{bottom:152.988000px;}
.y1c0{bottom:152.989500px;}
.y12e{bottom:155.284500px;}
.y4c{bottom:157.495639px;}
.y18e{bottom:159.024000px;}
.y14f{bottom:159.705016px;}
.ye6{bottom:163.530000px;}
.y29{bottom:163.531500px;}
.y113{bottom:169.060500px;}
.yd7{bottom:169.483664px;}
.y1bf{bottom:172.462857px;}
.y4b{bottom:173.993033px;}
.y12d{bottom:174.759000px;}
.y14e{bottom:178.499181px;}
.y15f{bottom:181.476000px;}
.y28{bottom:183.004500px;}
.y75{bottom:183.006000px;}
.y18d{bottom:184.536000px;}
.y1be{bottom:186.749878px;}
.y112{bottom:188.619000px;}
.ye5{bottom:188.958000px;}
.y4a{bottom:190.491626px;}
.y12c{bottom:194.317500px;}
.y14d{bottom:197.206947px;}
.yd6{bottom:197.631712px;}
.y15e{bottom:201.034500px;}
.y1bd{bottom:201.035700px;}
.y27{bottom:202.479000px;}
.yfa{bottom:202.480500px;}
.y49{bottom:206.989020px;}
.y111{bottom:208.093500px;}
.ya5{bottom:209.196000px;}
.y12b{bottom:213.790500px;}
.y14c{bottom:216.001112px;}
.yd5{bottom:216.340679px;}
.y1bc{bottom:220.510256px;}
.y26{bottom:222.037500px;}
.ya4{bottom:222.039000px;}
.y48{bottom:223.486414px;}
.y18c{bottom:226.039500px;}
.y110{bottom:227.568000px;}
.y74{bottom:227.991000px;}
.y15d{bottom:229.522500px;}
.yd4{bottom:230.626500px;}
.yd2{bottom:230.627035px;}
.ye4{bottom:232.498500px;}
.y12a{bottom:233.265000px;}
.y14b{bottom:234.708879px;}
.y1bb{bottom:234.712079px;}
.yd3{bottom:235.984500px;}
.y47{bottom:239.983808px;}
.y25{bottom:241.512000px;}
.y18b{bottom:245.514000px;}
.y10f{bottom:247.126500px;}
.y15c{bottom:248.995500px;}
.y1ba{bottom:248.997900px;}
.yd1{bottom:249.420000px;}
.ycf{bottom:249.423530px;}
.ye3{bottom:251.973000px;}
.y129{bottom:252.823500px;}
.yd0{bottom:254.692500px;}
.y46{bottom:256.481201px;}
.y14a{bottom:256.989000px;}
.y24{bottom:260.985000px;}
.ya3{bottom:260.986500px;}
.y18a{bottom:265.072500px;}
.y10e{bottom:266.601000px;}
.yce{bottom:268.131296px;}
.y1b9{bottom:268.472457px;}
.y73{bottom:269.065500px;}
.ye2{bottom:271.446000px;}
.y128{bottom:272.298000px;}
.y45{bottom:272.978595px;}
.y15b{bottom:274.507500px;}
.ya2{bottom:280.459500px;}
.yf9{bottom:280.461000px;}
.y1f4{bottom:280.804379px;}
.y1b8{bottom:282.758278px;}
.y189{bottom:284.545500px;}
.y10d{bottom:286.074000px;}
.y23{bottom:286.497000px;}
.ycd{bottom:286.840263px;}
.y72{bottom:288.540000px;}
.y44{bottom:289.475989px;}
.ye1{bottom:291.004500px;}
.y127{bottom:291.771000px;}
.y1f3{bottom:295.090200px;}
.y1b7{bottom:296.960101px;}
.yf8{bottom:300.019500px;}
.y188{bottom:304.020000px;}
.y10c{bottom:305.632500px;}
.ycc{bottom:305.634428px;}
.ya1{bottom:305.971500px;}
.y43{bottom:305.974583px;}
.y71{bottom:308.014500px;}
.y144{bottom:308.185500px;}
.y1f2{bottom:309.292022px;}
.ye0{bottom:310.479000px;}
.y126{bottom:311.331000px;}
.y1b6{bottom:316.518656px;}
.yf7{bottom:319.492500px;}
.y187{bottom:323.578500px;}
.ycb{bottom:324.342194px;}
.y10b{bottom:325.107000px;}
.y70{bottom:327.487500px;}
.y143{bottom:327.660000px;}
.y1f1{bottom:328.850578px;}
.ydf{bottom:329.953500px;}
.y1b5{bottom:330.720479px;}
.y125{bottom:330.804000px;}
.y42{bottom:331.486264px;}
.y1f0{bottom:343.052400px;}
.y186{bottom:343.053000px;}
.yca{bottom:343.136359px;}
.y10a{bottom:344.581500px;}
.yf6{bottom:345.004500px;}
.y1b4{bottom:345.007500px;}
.y15a{bottom:346.623000px;}
.y6f{bottom:347.046000px;}
.y142{bottom:347.218500px;}
.y41{bottom:347.983658px;}
.yde{bottom:349.426500px;}
.y124{bottom:350.278500px;}
.y1ef{bottom:357.339422px;}
.yc9{bottom:361.844125px;}
.y185{bottom:362.526000px;}
.y109{bottom:364.054500px;}
.y1b3{bottom:364.480857px;}
.y40{bottom:364.481051px;}
.ya0{bottom:365.160000px;}
.y159{bottom:366.096000px;}
.y141{bottom:366.693000px;}
.ydd{bottom:368.985000px;}
.y123{bottom:369.837000px;}
.y6e{bottom:372.558000px;}
.y1ee{bottom:376.812778px;}
.y1b2{bottom:378.767878px;}
.yc8{bottom:380.638290px;}
.y3f{bottom:380.978445px;}
.y184{bottom:382.086000px;}
.y108{bottom:383.613000px;}
.y9f{bottom:384.720000px;}
.y158{bottom:385.656000px;}
.y140{bottom:386.166000px;}
.y122{bottom:389.311500px;}
.y1ed{bottom:391.099800px;}
.y1b1{bottom:392.968501px;}
.ydc{bottom:394.497000px;}
.y22{bottom:395.179500px;}
.y3e{bottom:397.475839px;}
.yc7{bottom:399.347256px;}
.y183{bottom:401.559000px;}
.y107{bottom:403.087500px;}
.yf5{bottom:403.258500px;}
.y9e{bottom:404.193000px;}
.y157{bottom:405.129000px;}
.y13f{bottom:405.640500px;}
.y121{bottom:408.784500px;}
.y1ec{bottom:410.573156px;}
.y1b0{bottom:412.528256px;}
.y6d{bottom:413.547000px;}
.y3d{bottom:413.973233px;}
.y21{bottom:416.184000px;}
.yc6{bottom:418.140221px;}
.y182{bottom:421.033500px;}
.y106{bottom:422.562000px;}
.yf4{bottom:422.731500px;}
.y9d{bottom:423.667500px;}
.y156{bottom:424.603500px;}
.y1eb{bottom:424.860178px;}
.y13e{bottom:425.199000px;}
.y1af{bottom:426.730078px;}
.y120{bottom:428.259000px;}
.y6c{bottom:433.021500px;}
.yc5{bottom:436.849187px;}
.y20{bottom:437.188500px;}
.ydb{bottom:437.953500px;}
.y3c{bottom:439.484914px;}
.y181{bottom:440.592000px;}
.y105{bottom:442.120500px;}
.yf3{bottom:442.206000px;}
.y9c{bottom:443.226000px;}
.y155{bottom:444.162000px;}
.y1ea{bottom:444.333534px;}
.y13d{bottom:444.673500px;}
.y1ae{bottom:446.288634px;}
.y11f{bottom:447.817500px;}
.y6b{bottom:452.580000px;}
.yc4{bottom:455.642153px;}
.yda{bottom:457.426500px;}
.y1f{bottom:458.193000px;}
.y1e9{bottom:458.620556px;}
.yf2{bottom:459.213000px;}
.y180{bottom:460.066500px;}
.y1ad{bottom:460.490456px;}
.y104{bottom:461.595000px;}
.yf1{bottom:461.679000px;}
.y9b{bottom:462.700500px;}
.y154{bottom:463.636500px;}
.y13c{bottom:464.146500px;}
.y3b{bottom:464.996595px;}
.y11e{bottom:467.292000px;}
.y6a{bottom:472.054500px;}
.yc3{bottom:474.351119px;}
.y1ac{bottom:474.776278px;}
.y1e8{bottom:478.093912px;}
.yef{bottom:478.686000px;}
.y1e{bottom:479.197500px;}
.y17f{bottom:479.539500px;}
.y103{bottom:481.068000px;}
.yf0{bottom:481.237500px;}
.yee{bottom:481.239000px;}
.y9a{bottom:482.173500px;}
.y153{bottom:483.109500px;}
.y13b{bottom:483.706500px;}
.y11d{bottom:484.299000px;}
.y11b{bottom:486.765000px;}
.yea{bottom:489.487069px;}
.y3a{bottom:490.508276px;}
.y69{bottom:491.527500px;}
.y1e7{bottom:492.295735px;}
.yc2{bottom:493.145284px;}
.y11c{bottom:493.483500px;}
.y1ab{bottom:494.250834px;}
.y17e{bottom:499.014000px;}
.y1d{bottom:500.116500px;}
.y102{bottom:500.626500px;}
.yed{bottom:500.713500px;}
.y99{bottom:501.732000px;}
.y152{bottom:502.668000px;}
.y13a{bottom:503.179500px;}
.y1e6{bottom:506.582756px;}
.y1aa{bottom:508.536656px;}
.yc1{bottom:511.853050px;}
.ye9{bottom:512.703179px;}
.y39{bottom:516.019957px;}
.y68{bottom:517.039500px;}
.y17d{bottom:518.572500px;}
.y1b{bottom:518.824500px;}
.y131{bottom:518.826590px;}
.y101{bottom:520.101000px;}
.yec{bottom:520.186500px;}
.y1e5{bottom:520.868578px;}
.y1c{bottom:521.121000px;}
.y1a{bottom:521.122500px;}
.y139{bottom:522.654000px;}
.y1a9{bottom:522.738478px;}
.ye8{bottom:526.989000px;}
.y98{bottom:527.158500px;}
.yc0{bottom:530.647215px;}
.y38{bottom:532.517351px;}
.y164{bottom:534.642891px;}
.y17c{bottom:538.047000px;}
.y100{bottom:539.575500px;}
.yeb{bottom:539.745000px;}
.y1e4{bottom:540.343134px;}
.y130{bottom:542.041500px;}
.y19{bottom:542.127000px;}
.y138{bottom:542.212500px;}
.y1a8{bottom:542.213035px;}
.ybf{bottom:549.356181px;}
.y1e3{bottom:554.544957px;}
.y163{bottom:555.901500px;}
.y1a7{bottom:556.498856px;}
.y17b{bottom:557.521500px;}
.y162{bottom:557.943000px;}
.y37{bottom:558.029032px;}
.y67{bottom:558.115500px;}
.yff{bottom:559.134000px;}
.y137{bottom:561.687000px;}
.y18{bottom:563.131500px;}
.ybe{bottom:568.149146px;}
.y1e2{bottom:568.830778px;}
.yfd{bottom:571.719891px;}
.y36{bottom:574.527626px;}
.y1a6{bottom:575.973413px;}
.y17a{bottom:577.080000px;}
.y66{bottom:577.590000px;}
.yfe{bottom:578.607000px;}
.y136{bottom:581.160000px;}
.y17{bottom:584.136000px;}
.y97{bottom:586.432500px;}
.ybd{bottom:586.858112px;}
.y1e1{bottom:588.305335px;}
.y1a5{bottom:590.259234px;}
.y35{bottom:591.025020px;}
.yfc{bottom:592.980000px;}
.yfb{bottom:595.020000px;}
.y179{bottom:596.553000px;}
.y65{bottom:597.063000px;}
.y135{bottom:600.634500px;}
.y1e0{bottom:602.591156px;}
.y1a4{bottom:604.461057px;}
.y16{bottom:605.140500px;}
.ybc{bottom:605.651077px;}
.y96{bottom:605.907000px;}
.y34{bottom:607.522413px;}
.y11a{bottom:610.583391px;}
.y178{bottom:616.027500px;}
.y64{bottom:616.537500px;}
.y1de{bottom:616.792979px;}
.y1df{bottom:617.048575px;}
.y134{bottom:620.193000px;}
.y1a3{bottom:624.019612px;}
.y33{bottom:624.019807px;}
.y95{bottom:625.380000px;}
.y15{bottom:626.145000px;}
.ybb{bottom:627.846000px;}
.y119{bottom:633.883500px;}
.y177{bottom:635.586000px;}
.y63{bottom:636.096000px;}
.y1dd{bottom:636.351534px;}
.y1a2{bottom:638.221435px;}
.y133{bottom:639.667500px;}
.y94{bottom:644.938500px;}
.y14{bottom:647.149500px;}
.y32{bottom:648.595500px;}
.y1dc{bottom:650.553357px;}
.y1a1{bottom:652.508456px;}
.y176{bottom:655.060500px;}
.y62{bottom:655.570500px;}
.y132{bottom:659.140500px;}
.yba{bottom:662.797500px;}
.y1a0{bottom:666.709079px;}
.y13{bottom:668.154000px;}
.y1db{bottom:670.111912px;}
.y93{bottom:670.365000px;}
.y175{bottom:674.533500px;}
.y61{bottom:675.045000px;}
.yb9{bottom:682.272000px;}
.y1da{bottom:684.313735px;}
.y19f{bottom:686.268834px;}
.y12{bottom:689.158500px;}
.y149{bottom:691.201247px;}
.y174{bottom:694.093500px;}
.y60{bottom:694.603500px;}
.y1d9{bottom:698.600756px;}
.y19e{bottom:700.469457px;}
.yb8{bottom:701.830500px;}
.y1d8{bottom:712.802578px;}
.y173{bottom:713.566500px;}
.y5f{bottom:714.076500px;}
.y148{bottom:714.416157px;}
.y19d{bottom:714.756478px;}
.yb6{bottom:718.752000px;}
.yb7{bottom:721.303500px;}
.yb5{bottom:721.305000px;}
.y11{bottom:722.154000px;}
.y92{bottom:727.086000px;}
.y147{bottom:728.703179px;}
.y91{bottom:729.637500px;}
.y1d7{bottom:732.361134px;}
.y172{bottom:733.041000px;}
.y5e{bottom:733.551000px;}
.y19c{bottom:734.231035px;}
.y31{bottom:735.507000px;}
.yb4{bottom:740.779500px;}
.y146{bottom:740.947500px;}
.y145{bottom:742.989000px;}
.y8f{bottom:746.560500px;}
.y1d6{bottom:746.562956px;}
.y19b{bottom:748.516856px;}
.y90{bottom:749.112000px;}
.y8e{bottom:749.115000px;}
.y171{bottom:752.515500px;}
.y30{bottom:752.769000px;}
.y5d{bottom:753.109500px;}
.yb3{bottom:760.252500px;}
.y1d5{bottom:760.848778px;}
.y19a{bottom:762.718679px;}
.y8d{bottom:768.588000px;}
.y2f{bottom:770.032500px;}
.y170{bottom:772.074000px;}
.y5c{bottom:772.584000px;}
.y199{bottom:777.004500px;}
.yb2{bottom:779.811000px;}
.y1d4{bottom:780.323334px;}
.y87{bottom:781.088925px;}
.y10{bottom:782.447813px;}
.y2e{bottom:787.210500px;}
.y8c{bottom:788.062500px;}
.y16f{bottom:791.547000px;}
.y5b{bottom:792.057000px;}
.y1d3{bottom:794.609156px;}
.y198{bottom:797.244000px;}
.yf{bottom:797.500425px;}
.y86{bottom:797.586319px;}
.yb1{bottom:799.285500px;}
.y2d{bottom:804.472500px;}
.y8b{bottom:807.621000px;}
.y1d2{bottom:808.810978px;}
.y16d{bottom:811.021500px;}
.y16e{bottom:811.531500px;}
.y5a{bottom:817.569825px;}
.yb0{bottom:818.760000px;}
.y85{bottom:823.098000px;}
.y8a{bottom:827.095500px;}
.ye{bottom:827.434050px;}
.y1d1{bottom:828.369534px;}
.y16c{bottom:830.580000px;}
.yaf{bottom:838.318500px;}
.y84{bottom:839.595394px;}
.yd{bottom:842.485462px;}
.y1d0{bottom:842.571356px;}
.y59{bottom:844.611000px;}
.y89{bottom:846.568500px;}
.y16b{bottom:850.054500px;}
.y197{bottom:852.606000px;}
.y83{bottom:856.092787px;}
.y1cf{bottom:856.858378px;}
.yc{bottom:857.452875px;}
.yae{bottom:857.791500px;}
.y88{bottom:866.127000px;}
.y16a{bottom:869.527500px;}
.y1ce{bottom:871.059000px;}
.y196{bottom:872.080500px;}
.yb{bottom:872.419088px;}
.y82{bottom:872.590181px;}
.yad{bottom:883.303500px;}
.y58{bottom:885.601500px;}
.ya{bottom:887.470500px;}
.y81{bottom:889.087575px;}
.y1cd{bottom:890.618756px;}
.y169{bottom:895.039500px;}
.y195{bottom:899.122500px;}
.y1cc{bottom:904.820578px;}
.y57{bottom:905.076000px;}
.y80{bottom:905.584969px;}
.y7{bottom:914.428500px;}
.y9{bottom:914.767350px;}
.y8{bottom:920.466000px;}
.y7f{bottom:922.083562px;}
.y1cb{bottom:924.293935px;}
.y56{bottom:924.634500px;}
.y194{bottom:926.080500px;}
.y4{bottom:930.925500px;}
.y6{bottom:931.264350px;}
.yac{bottom:936.114000px;}
.y5{bottom:936.964500px;}
.y7e{bottom:938.580956px;}
.y55{bottom:944.109000px;}
.y168{bottom:945.639000px;}
.y1ca{bottom:952.866778px;}
.y193{bottom:953.122500px;}
.y7d{bottom:955.078350px;}
.yab{bottom:955.588500px;}
.y54{bottom:963.582000px;}
.y167{bottom:965.113500px;}
.y1c9{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y7c{bottom:971.575744px;}
.yaa{bottom:975.147000px;}
.y192{bottom:980.079000px;}
.y53{bottom:983.140500px;}
.y1c8{bottom:986.541957px;}
.y7b{bottom:988.073138px;}
.y166{bottom:993.601500px;}
.ya9{bottom:994.621500px;}
.y1c7{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y52{bottom:1002.615000px;}
.y7a{bottom:1004.570531px;}
.y191{bottom:1007.122500px;}
.y165{bottom:1013.074500px;}
.ya8{bottom:1014.094500px;}
.y1c6{bottom:1015.116000px;}
.y79{bottom:1021.067925px;}
.y51{bottom:1022.089500px;}
.ya7{bottom:1033.653000px;}
.y190{bottom:1034.079000px;}
.y1c5{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y50{bottom:1041.562500px;}
.y78{bottom:1046.579606px;}
.y1c4{bottom:1048.791179px;}
.ya6{bottom:1059.079500px;}
.y4f{bottom:1061.121000px;}
.y77{bottom:1063.077000px;}
.y1c3{bottom:1063.331397px;}
.y76{bottom:1118.692500px;}
.h12{height:23.996250px;}
.h4{height:27.932275px;}
.h8{height:29.446125px;}
.h10{height:29.996550px;}
.hb{height:34.968313px;}
.h11{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hd{height:39.119511px;}
.hc{height:40.559493px;}
.h3{height:41.904000px;}
.h7{height:44.175000px;}
.ha{height:45.000000px;}
.hf{height:46.500000px;}
.he{height:53.999550px;}
.h9{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:54.000000px;}
.x15{left:71.433000px;}
.x2d{left:76.619717px;}
.x4c{left:108.000000px;}
.x3e{left:110.125950px;}
.x4d{left:115.568400px;}
.x43{left:119.480250px;}
.x38{left:126.454882px;}
.x2e{left:133.001012px;}
.x31{left:178.329034px;}
.x23{left:203.668129px;}
.x27{left:207.919676px;}
.x28{left:208.940863px;}
.x29{left:214.892789px;}
.x2a{left:219.655529px;}
.x25{left:233.091761px;}
.x39{left:242.277000px;}
.x2b{left:256.817865px;}
.x2c{left:262.515394px;}
.x24{left:268.722916px;}
.x26{left:278.842389px;}
.x2f{left:296.532000px;}
.x1{left:300.018000px;}
.x30{left:301.039500px;}
.x53{left:307.332000px;}
.x3f{left:309.373500px;}
.x13{left:317.961000px;}
.x44{left:323.490000px;}
.x54{left:332.247289px;}
.x45{left:333.354000px;}
.x1c{left:334.885500px;}
.x1d{left:340.413000px;}
.x11{left:344.749500px;}
.x22{left:346.277946px;}
.x1e{left:348.661500px;}
.x12{left:353.679000px;}
.x20{left:379.956000px;}
.xb{left:385.653000px;}
.x21{left:388.630500px;}
.xc{left:391.180500px;}
.x2{left:422.050500px;}
.x3{left:427.578000px;}
.x17{left:436.591500px;}
.x46{left:440.503500px;}
.x18{left:442.119000px;}
.x47{left:455.641500px;}
.xd{left:462.528000px;}
.xe{left:468.396000px;}
.xf{left:473.925000px;}
.x50{left:475.624500px;}
.x51{left:480.046500px;}
.x32{left:491.611518px;}
.x4{left:525.118500px;}
.x5{left:530.646000px;}
.x55{left:540.253507px;}
.x48{left:544.846500px;}
.x49{left:554.626500px;}
.x4a{left:578.182500px;}
.x4b{left:583.455000px;}
.x3a{left:589.833000px;}
.x3b{left:595.191000px;}
.x34{left:611.431220px;}
.x6{left:630.226500px;}
.x7{left:635.839500px;}
.x10{left:641.367000px;}
.x33{left:651.484319px;}
.x8{left:652.931850px;}
.x16{left:678.784500px;}
.x3c{left:680.059500px;}
.x3d{left:688.734000px;}
.x36{left:720.791853px;}
.x40{left:728.787000px;}
.x9{left:730.828500px;}
.xa{left:744.690000px;}
.x52{left:754.720500px;}
.x35{left:760.844952px;}
.x41{left:767.140500px;}
.x42{left:775.729500px;}
.x4e{left:798.180000px;}
.x4f{left:805.068000px;}
.x19{left:806.853000px;}
.x1a{left:812.380500px;}
.x1f{left:815.527500px;}
.x37{left:833.807640px;}
.x1b{left:841.209000px;}
@media print{
.v1{vertical-align:-5.136000pt;}
.v2{vertical-align:-1.204800pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.123200pt;}
.lsd{letter-spacing:-1.067200pt;}
.ls12{letter-spacing:-1.066653pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.213331pt;}
.lse{letter-spacing:-0.212800pt;}
.lsa{letter-spacing:-0.211997pt;}
.ls9{letter-spacing:-0.211200pt;}
.ls10{letter-spacing:-0.211198pt;}
.ls21{letter-spacing:-0.190548pt;}
.lsf{letter-spacing:-0.189131pt;}
.lsb{letter-spacing:-0.188775pt;}
.ls1b{letter-spacing:-0.188423pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.472835pt;}
.ls15{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.704000pt;}
.ls29{letter-spacing:1.002667pt;}
.ls26{letter-spacing:1.008000pt;}
.ls13{letter-spacing:1.211718pt;}
.ls2a{letter-spacing:2.821333pt;}
.ls2b{letter-spacing:4.539677pt;}
.ls0{letter-spacing:4.876800pt;}
.ls6{letter-spacing:8.396695pt;}
.ls3{letter-spacing:9.232951pt;}
.ls23{letter-spacing:9.245751pt;}
.ls24{letter-spacing:9.284151pt;}
.ls5{letter-spacing:10.585468pt;}
.ls4{letter-spacing:10.731200pt;}
.ls1f{letter-spacing:10.970667pt;}
.ls20{letter-spacing:11.269333pt;}
.ls19{letter-spacing:11.461333pt;}
.ls1d{letter-spacing:11.573333pt;}
.ls1c{letter-spacing:11.637333pt;}
.ls22{letter-spacing:11.669333pt;}
.ls16{letter-spacing:11.840000pt;}
.ls17{letter-spacing:11.845333pt;}
.ls1e{letter-spacing:11.909333pt;}
.ls14{letter-spacing:12.100115pt;}
.ls18{letter-spacing:12.133333pt;}
.ls27{letter-spacing:12.496000pt;}
.ls25{letter-spacing:13.701333pt;}
.ls2c{letter-spacing:13.913426pt;}
.ls1{letter-spacing:18.474436pt;}
.ls2{letter-spacing:18.478702pt;}
.ws32{word-spacing:-22.442386pt;}
.ws85{word-spacing:-20.314667pt;}
.ws10c{word-spacing:-17.772652pt;}
.ws9c{word-spacing:-15.002667pt;}
.ws57{word-spacing:-14.704000pt;}
.ws83{word-spacing:-14.698667pt;}
.ws112{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.775853pt;}
.wsce{word-spacing:-9.770545pt;}
.ws39{word-spacing:-9.599880pt;}
.wsb9{word-spacing:-9.301217pt;}
.ws5f{word-spacing:-3.961567pt;}
.ws119{word-spacing:-3.763169pt;}
.ws107{word-spacing:-3.628770pt;}
.ws15b{word-spacing:-3.417557pt;}
.ws132{word-spacing:-3.221293pt;}
.ws16d{word-spacing:-3.170094pt;}
.ws156{word-spacing:-3.144494pt;}
.ws22{word-spacing:-3.136267pt;}
.ws12d{word-spacing:-3.135961pt;}
.ws151{word-spacing:-3.089028pt;}
.ws18{word-spacing:-3.075467pt;}
.ws143{word-spacing:-3.050629pt;}
.ws16e{word-spacing:-3.046362pt;}
.ws158{word-spacing:-3.037829pt;}
.ws149{word-spacing:-3.025029pt;}
.ws1b{word-spacing:-3.019733pt;}
.ws11{word-spacing:-3.016496pt;}
.ws1f{word-spacing:-3.014667pt;}
.ws155{word-spacing:-3.007962pt;}
.ws152{word-spacing:-2.990896pt;}
.wsd{word-spacing:-2.973829pt;}
.ws6{word-spacing:-2.971200pt;}
.ws12e{word-spacing:-2.969563pt;}
.wse{word-spacing:-2.961030pt;}
.ws15a{word-spacing:-2.956763pt;}
.ws24{word-spacing:-2.953867pt;}
.ws162{word-spacing:-2.948230pt;}
.ws3{word-spacing:-2.947200pt;}
.ws148{word-spacing:-2.943963pt;}
.ws10{word-spacing:-2.935430pt;}
.ws13d{word-spacing:-2.931163pt;}
.ws21{word-spacing:-2.928533pt;}
.ws14a{word-spacing:-2.922630pt;}
.ws144{word-spacing:-2.914097pt;}
.ws14c{word-spacing:-2.905564pt;}
.wsa{word-spacing:-2.904000pt;}
.ws163{word-spacing:-2.897030pt;}
.wsb{word-spacing:-2.894400pt;}
.ws16{word-spacing:-2.893067pt;}
.ws137{word-spacing:-2.892764pt;}
.ws4{word-spacing:-2.889600pt;}
.ws153{word-spacing:-2.888497pt;}
.ws12{word-spacing:-2.884231pt;}
.ws161{word-spacing:-2.879964pt;}
.ws135{word-spacing:-2.875697pt;}
.ws126{word-spacing:-2.871431pt;}
.ws15e{word-spacing:-2.867164pt;}
.ws16c{word-spacing:-2.862898pt;}
.ws13a{word-spacing:-2.854364pt;}
.ws76{word-spacing:-2.833031pt;}
.ws164{word-spacing:-2.828765pt;}
.ws1a{word-spacing:-2.827200pt;}
.wsc{word-spacing:-2.824498pt;}
.ws10b{word-spacing:-2.815965pt;}
.ws133{word-spacing:-2.807432pt;}
.ws31{word-spacing:-2.803165pt;}
.ws168{word-spacing:-2.798898pt;}
.ws5{word-spacing:-2.784000pt;}
.ws165{word-spacing:-2.781832pt;}
.ws2f{word-spacing:-2.777565pt;}
.ws23{word-spacing:-2.776533pt;}
.ws13b{word-spacing:-2.773299pt;}
.ws19{word-spacing:-2.771467pt;}
.ws129{word-spacing:-2.769032pt;}
.ws20{word-spacing:-2.766400pt;}
.ws128{word-spacing:-2.764765pt;}
.ws125{word-spacing:-2.760499pt;}
.ws138{word-spacing:-2.756232pt;}
.ws9{word-spacing:-2.755200pt;}
.ws14b{word-spacing:-2.751966pt;}
.ws159{word-spacing:-2.743432pt;}
.ws77{word-spacing:-2.730633pt;}
.ws147{word-spacing:-2.722099pt;}
.ws167{word-spacing:-2.717833pt;}
.ws12b{word-spacing:-2.713566pt;}
.ws146{word-spacing:-2.687966pt;}
.ws14d{word-spacing:-2.683700pt;}
.ws15d{word-spacing:-2.675167pt;}
.ws169{word-spacing:-2.670900pt;}
.ws8{word-spacing:-2.668800pt;}
.ws142{word-spacing:-2.653833pt;}
.ws1c{word-spacing:-2.649867pt;}
.wsf{word-spacing:-2.645300pt;}
.ws15{word-spacing:-2.644800pt;}
.ws14f{word-spacing:-2.641034pt;}
.ws16a{word-spacing:-2.632500pt;}
.ws13f{word-spacing:-2.628234pt;}
.ws13c{word-spacing:-2.623967pt;}
.ws7{word-spacing:-2.616000pt;}
.ws12f{word-spacing:-2.611167pt;}
.ws160{word-spacing:-2.598368pt;}
.ws12a{word-spacing:-2.589834pt;}
.ws1d{word-spacing:-2.589067pt;}
.ws140{word-spacing:-2.585568pt;}
.ws15f{word-spacing:-2.581301pt;}
.ws136{word-spacing:-2.572768pt;}
.ws134{word-spacing:-2.568501pt;}
.ws13e{word-spacing:-2.538635pt;}
.ws2{word-spacing:-2.534400pt;}
.ws157{word-spacing:-2.517302pt;}
.ws130{word-spacing:-2.513035pt;}
.ws13{word-spacing:-2.500235pt;}
.ws145{word-spacing:-2.495969pt;}
.ws1e{word-spacing:-2.492800pt;}
.ws127{word-spacing:-2.483169pt;}
.ws16b{word-spacing:-2.478902pt;}
.ws15c{word-spacing:-2.474636pt;}
.ws131{word-spacing:-2.470369pt;}
.ws154{word-spacing:-2.461836pt;}
.ws139{word-spacing:-2.457569pt;}
.ws150{word-spacing:-2.453303pt;}
.ws12c{word-spacing:-2.385037pt;}
.ws166{word-spacing:-2.367970pt;}
.ws1{word-spacing:-2.361600pt;}
.ws0{word-spacing:-2.355171pt;}
.ws17{word-spacing:-2.340800pt;}
.ws94{word-spacing:-1.157333pt;}
.ws8b{word-spacing:-1.120000pt;}
.ws92{word-spacing:-1.109333pt;}
.ws96{word-spacing:-1.077333pt;}
.ws8f{word-spacing:-0.965333pt;}
.ws8d{word-spacing:-0.960000pt;}
.ws8a{word-spacing:-0.954667pt;}
.ws44{word-spacing:-0.938655pt;}
.ws90{word-spacing:-0.928000pt;}
.ws8e{word-spacing:-0.890667pt;}
.ws91{word-spacing:-0.874667pt;}
.wse7{word-spacing:-0.858667pt;}
.ws8c{word-spacing:-0.837333pt;}
.ws89{word-spacing:-0.826667pt;}
.ws47{word-spacing:-0.814923pt;}
.ws93{word-spacing:-0.805333pt;}
.ws35{word-spacing:-0.797857pt;}
.ws41{word-spacing:-0.793590pt;}
.ws3f{word-spacing:-0.780790pt;}
.ws81{word-spacing:-0.763724pt;}
.ws49{word-spacing:-0.725324pt;}
.ws7f{word-spacing:-0.716791pt;}
.ws95{word-spacing:-0.704000pt;}
.ws3d{word-spacing:-0.703991pt;}
.ws7e{word-spacing:-0.695458pt;}
.ws3c{word-spacing:-0.691191pt;}
.ws37{word-spacing:-0.686925pt;}
.wsad{word-spacing:-0.682667pt;}
.ws4f{word-spacing:-0.682658pt;}
.ws34{word-spacing:-0.665592pt;}
.ws3b{word-spacing:-0.661325pt;}
.ws78{word-spacing:-0.657058pt;}
.ws25{word-spacing:-0.650667pt;}
.ws52{word-spacing:-0.648525pt;}
.ws43{word-spacing:-0.644259pt;}
.ws53{word-spacing:-0.639992pt;}
.wsa4{word-spacing:-0.629333pt;}
.wsff{word-spacing:-0.618659pt;}
.ws38{word-spacing:-0.614392pt;}
.wse2{word-spacing:-0.608000pt;}
.ws45{word-spacing:-0.601592pt;}
.ws48{word-spacing:-0.597326pt;}
.ws7a{word-spacing:-0.593059pt;}
.wse9{word-spacing:-0.592000pt;}
.ws50{word-spacing:-0.575993pt;}
.ws4c{word-spacing:-0.571726pt;}
.ws42{word-spacing:-0.563193pt;}
.wse3{word-spacing:-0.560000pt;}
.wse4{word-spacing:-0.554667pt;}
.ws33{word-spacing:-0.554660pt;}
.ws4e{word-spacing:-0.546127pt;}
.ws4a{word-spacing:-0.541860pt;}
.wsd8{word-spacing:-0.528000pt;}
.wsfc{word-spacing:-0.524793pt;}
.ws72{word-spacing:-0.512000pt;}
.ws3a{word-spacing:-0.507727pt;}
.wsfb{word-spacing:-0.503460pt;}
.wsfd{word-spacing:-0.499194pt;}
.ws4d{word-spacing:-0.490661pt;}
.ws79{word-spacing:-0.477861pt;}
.wsde{word-spacing:-0.473594pt;}
.wsf5{word-spacing:-0.469333pt;}
.ws3e{word-spacing:-0.469327pt;}
.ws40{word-spacing:-0.465061pt;}
.ws7c{word-spacing:-0.460794pt;}
.ws5c{word-spacing:-0.458667pt;}
.ws69{word-spacing:-0.453333pt;}
.wsb0{word-spacing:-0.448000pt;}
.ws4b{word-spacing:-0.443728pt;}
.wsab{word-spacing:-0.442667pt;}
.wse8{word-spacing:-0.426667pt;}
.wscb{word-spacing:-0.422395pt;}
.ws66{word-spacing:-0.421333pt;}
.ws46{word-spacing:-0.418128pt;}
.wsda{word-spacing:-0.416000pt;}
.ws7b{word-spacing:-0.409595pt;}
.ws5d{word-spacing:-0.405333pt;}
.ws36{word-spacing:-0.388262pt;}
.ws2c{word-spacing:-0.384000pt;}
.wsd7{word-spacing:-0.378667pt;}
.ws10f{word-spacing:-0.368000pt;}
.ws2d{word-spacing:-0.352000pt;}
.wsd1{word-spacing:-0.349862pt;}
.ws9f{word-spacing:-0.346667pt;}
.wse0{word-spacing:-0.341333pt;}
.ws5b{word-spacing:-0.336000pt;}
.wsac{word-spacing:-0.330667pt;}
.wsb6{word-spacing:-0.328529pt;}
.ws64{word-spacing:-0.325333pt;}
.ws26{word-spacing:-0.320000pt;}
.ws28{word-spacing:-0.314667pt;}
.wsd2{word-spacing:-0.311463pt;}
.ws75{word-spacing:-0.309333pt;}
.ws80{word-spacing:-0.307196pt;}
.ws9e{word-spacing:-0.304000pt;}
.ws104{word-spacing:-0.302930pt;}
.ws86{word-spacing:-0.298667pt;}
.ws2b{word-spacing:-0.293333pt;}
.ws7d{word-spacing:-0.290130pt;}
.wsaa{word-spacing:-0.288000pt;}
.ws5a{word-spacing:-0.277333pt;}
.ws82{word-spacing:-0.272000pt;}
.ws51{word-spacing:-0.268797pt;}
.wsef{word-spacing:-0.266667pt;}
.ws65{word-spacing:-0.261333pt;}
.wse5{word-spacing:-0.256000pt;}
.ws56{word-spacing:-0.250667pt;}
.ws6f{word-spacing:-0.245333pt;}
.ws74{word-spacing:-0.240000pt;}
.wsa1{word-spacing:-0.234667pt;}
.ws6a{word-spacing:-0.229333pt;}
.ws9b{word-spacing:-0.224000pt;}
.wsa0{word-spacing:-0.218667pt;}
.ws6d{word-spacing:-0.213333pt;}
.ws59{word-spacing:-0.208000pt;}
.ws55{word-spacing:-0.202667pt;}
.ws117{word-spacing:-0.197333pt;}
.wsfe{word-spacing:-0.196264pt;}
.ws98{word-spacing:-0.192000pt;}
.ws5e{word-spacing:-0.186667pt;}
.wsfa{word-spacing:-0.183464pt;}
.ws70{word-spacing:-0.181333pt;}
.ws84{word-spacing:-0.176000pt;}
.ws2a{word-spacing:-0.170667pt;}
.wsa7{word-spacing:-0.165333pt;}
.wsf2{word-spacing:-0.160000pt;}
.ws67{word-spacing:-0.154667pt;}
.wsbd{word-spacing:-0.153598pt;}
.wsdf{word-spacing:-0.149333pt;}
.wsb4{word-spacing:-0.149331pt;}
.wsec{word-spacing:-0.145065pt;}
.ws87{word-spacing:-0.144000pt;}
.ws109{word-spacing:-0.140798pt;}
.wsf3{word-spacing:-0.138667pt;}
.ws113{word-spacing:-0.133333pt;}
.ws2e{word-spacing:-0.128000pt;}
.ws62{word-spacing:-0.122667pt;}
.wsb8{word-spacing:-0.119465pt;}
.wsa6{word-spacing:-0.117333pt;}
.ws110{word-spacing:-0.112000pt;}
.wsf0{word-spacing:-0.106667pt;}
.wse6{word-spacing:-0.101333pt;}
.ws115{word-spacing:-0.096000pt;}
.wsf8{word-spacing:-0.090667pt;}
.wsdc{word-spacing:-0.085333pt;}
.ws61{word-spacing:-0.080000pt;}
.ws11f{word-spacing:-0.074667pt;}
.ws88{word-spacing:-0.069333pt;}
.wsa9{word-spacing:-0.064000pt;}
.wsa5{word-spacing:-0.058667pt;}
.ws100{word-spacing:-0.055466pt;}
.wsd3{word-spacing:-0.053333pt;}
.wsd9{word-spacing:-0.048000pt;}
.wse1{word-spacing:-0.032000pt;}
.wsd5{word-spacing:-0.026667pt;}
.wsea{word-spacing:-0.010667pt;}
.wsc9{word-spacing:-0.004267pt;}
.ws54{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.004267pt;}
.ws6b{word-spacing:0.005333pt;}
.wsa3{word-spacing:0.010667pt;}
.wscc{word-spacing:0.012800pt;}
.ws63{word-spacing:0.026667pt;}
.wsc8{word-spacing:0.029866pt;}
.ws9d{word-spacing:0.032000pt;}
.ws99{word-spacing:0.037333pt;}
.wsc7{word-spacing:0.038400pt;}
.wsd4{word-spacing:0.042667pt;}
.ws10a{word-spacing:0.046933pt;}
.wsf9{word-spacing:0.048000pt;}
.wsb1{word-spacing:0.051199pt;}
.wsaf{word-spacing:0.053333pt;}
.ws111{word-spacing:0.058667pt;}
.wsf4{word-spacing:0.069333pt;}
.wseb{word-spacing:0.072532pt;}
.ws27{word-spacing:0.074667pt;}
.ws97{word-spacing:0.083199pt;}
.ws6e{word-spacing:0.090667pt;}
.wsc3{word-spacing:0.098132pt;}
.wsed{word-spacing:0.101333pt;}
.ws116{word-spacing:0.106667pt;}
.ws118{word-spacing:0.112000pt;}
.ws114{word-spacing:0.117333pt;}
.wsf1{word-spacing:0.119465pt;}
.ws73{word-spacing:0.128000pt;}
.ws29{word-spacing:0.144000pt;}
.ws10d{word-spacing:0.149333pt;}
.ws58{word-spacing:0.154667pt;}
.wsbf{word-spacing:0.157865pt;}
.wsb5{word-spacing:0.166398pt;}
.wsc0{word-spacing:0.170665pt;}
.ws102{word-spacing:0.174931pt;}
.wsdb{word-spacing:0.185598pt;}
.wsf6{word-spacing:0.186667pt;}
.wsa8{word-spacing:0.192000pt;}
.ws6c{word-spacing:0.230398pt;}
.wscf{word-spacing:0.234664pt;}
.wsae{word-spacing:0.240000pt;}
.wsb7{word-spacing:0.251730pt;}
.ws60{word-spacing:0.262398pt;}
.wsee{word-spacing:0.266667pt;}
.wsba{word-spacing:0.281596pt;}
.wsa2{word-spacing:0.281598pt;}
.wsc2{word-spacing:0.298663pt;}
.ws123{word-spacing:0.304000pt;}
.ws101{word-spacing:0.319996pt;}
.wsd6{word-spacing:0.319997pt;}
.ws9a{word-spacing:0.383997pt;}
.ws108{word-spacing:0.384000pt;}
.ws71{word-spacing:0.396797pt;}
.ws68{word-spacing:0.400000pt;}
.wsf7{word-spacing:0.405333pt;}
.ws11b{word-spacing:0.426667pt;}
.wsb2{word-spacing:0.460794pt;}
.wsb3{word-spacing:0.499194pt;}
.ws11c{word-spacing:0.592000pt;}
.ws11e{word-spacing:0.629333pt;}
.ws10e{word-spacing:0.709333pt;}
.ws11d{word-spacing:0.869333pt;}
.ws121{word-spacing:0.901333pt;}
.ws122{word-spacing:0.906667pt;}
.ws120{word-spacing:0.912000pt;}
.ws11a{word-spacing:1.029333pt;}
.ws30{word-spacing:30.745216pt;}
.ws141{word-spacing:41.637880pt;}
.ws14e{word-spacing:41.642146pt;}
.ws124{word-spacing:41.697612pt;}
.wsd0{word-spacing:297.924809pt;}
.wsc6{word-spacing:297.984542pt;}
.wsbe{word-spacing:298.001608pt;}
.wsbb{word-spacing:298.099740pt;}
.wsc1{word-spacing:298.121073pt;}
.wsca{word-spacing:298.185073pt;}
.wsbc{word-spacing:298.287471pt;}
.wsc5{word-spacing:298.321604pt;}
.ws106{word-spacing:315.631255pt;}
.ws105{word-spacing:335.599005pt;}
.ws103{word-spacing:347.161527pt;}
.wscd{word-spacing:400.903789pt;}
.wsc4{word-spacing:582.452453pt;}
._30{margin-left:-23.333333pt;}
._2f{margin-left:-21.742667pt;}
._9{margin-left:-17.164585pt;}
._7{margin-left:-15.475007pt;}
._0{margin-left:-0.989854pt;}
._4{width:1.580800pt;}
._1{width:3.543467pt;}
._8{width:8.072432pt;}
._2{width:10.047874pt;}
._5{width:11.120000pt;}
._3{width:12.590667pt;}
._27{width:14.109690pt;}
._a{width:18.615234pt;}
._2d{width:34.568101pt;}
._b{width:114.861498pt;}
._d{width:128.314129pt;}
._26{width:135.221776pt;}
._c{width:140.456911pt;}
._19{width:151.370908pt;}
._12{width:167.946701pt;}
._25{width:172.785040pt;}
._11{width:205.134502pt;}
._18{width:228.046216pt;}
._10{width:242.027908pt;}
._16{width:247.937167pt;}
._2a{width:251.998983pt;}
._2b{width:253.104036pt;}
._1c{width:268.374245pt;}
._15{width:284.830573pt;}
._22{width:288.179864pt;}
._1e{width:289.233718pt;}
._21{width:302.315154pt;}
._1b{width:305.088453pt;}
._1a{width:307.132161pt;}
._24{width:308.890005pt;}
._f{width:318.451486pt;}
._20{width:325.525531pt;}
._23{width:345.442082pt;}
._14{width:361.083486pt;}
._1d{width:380.872039pt;}
._1f{width:402.281905pt;}
._2c{width:525.348100pt;}
._29{width:801.453448pt;}
._13{width:967.185777pt;}
._17{width:992.401461pt;}
._e{width:1088.963454pt;}
._28{width:1143.938767pt;}
._2e{width:1386.773065pt;}
._6{width:1409.727445pt;}
.fsb{font-size:28.440000pt;}
.fs4{font-size:31.995733pt;}
.fs7{font-size:33.773333pt;}
.fsa{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs8{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:48.000000pt;}
.y151{bottom:92.977160pt;}
.y2b{bottom:110.665333pt;}
.yd9{bottom:110.665446pt;}
.y1c2{bottom:110.667250pt;}
.y4e{bottom:110.667423pt;}
.y118{bottom:113.385733pt;}
.y117{bottom:115.653467pt;}
.y115{bottom:115.656000pt;}
.y150{bottom:117.015259pt;}
.y18f{bottom:117.317333pt;}
.y161{bottom:118.678667pt;}
.y12f{bottom:120.720000pt;}
.y116{bottom:121.549600pt;}
.y1c1{bottom:123.366825pt;}
.y4d{bottom:125.331773pt;}
.ye7{bottom:127.974667pt;}
.y2a{bottom:127.976000pt;}
.y114{bottom:132.966667pt;}
.yd8{bottom:134.702479pt;}
.y160{bottom:135.989333pt;}
.y1c0{bottom:135.990667pt;}
.y12e{bottom:138.030667pt;}
.y4c{bottom:139.996123pt;}
.y18e{bottom:141.354667pt;}
.y14f{bottom:141.960014pt;}
.ye6{bottom:145.360000pt;}
.y29{bottom:145.361333pt;}
.y113{bottom:150.276000pt;}
.yd7{bottom:150.652146pt;}
.y1bf{bottom:153.300317pt;}
.y4b{bottom:154.660473pt;}
.y12d{bottom:155.341333pt;}
.y14e{bottom:158.665939pt;}
.y15f{bottom:161.312000pt;}
.y28{bottom:162.670667pt;}
.y75{bottom:162.672000pt;}
.y18d{bottom:164.032000pt;}
.y1be{bottom:165.999892pt;}
.y112{bottom:167.661333pt;}
.ye5{bottom:167.962667pt;}
.y4a{bottom:169.325890pt;}
.y12c{bottom:172.726667pt;}
.y14d{bottom:175.295064pt;}
.yd6{bottom:175.672633pt;}
.y15e{bottom:178.697333pt;}
.y1bd{bottom:178.698400pt;}
.y27{bottom:179.981333pt;}
.yfa{bottom:179.982667pt;}
.y49{bottom:183.990240pt;}
.y111{bottom:184.972000pt;}
.ya5{bottom:185.952000pt;}
.y12b{bottom:190.036000pt;}
.y14c{bottom:192.000989pt;}
.yd5{bottom:192.302825pt;}
.y1bc{bottom:196.009117pt;}
.y26{bottom:197.366667pt;}
.ya4{bottom:197.368000pt;}
.y48{bottom:198.654590pt;}
.y18c{bottom:200.924000pt;}
.y110{bottom:202.282667pt;}
.y74{bottom:202.658667pt;}
.y15d{bottom:204.020000pt;}
.yd4{bottom:205.001333pt;}
.yd2{bottom:205.001809pt;}
.ye4{bottom:206.665333pt;}
.y12a{bottom:207.346667pt;}
.y14b{bottom:208.630114pt;}
.y1bb{bottom:208.632959pt;}
.yd3{bottom:209.764000pt;}
.y47{bottom:213.318940pt;}
.y25{bottom:214.677333pt;}
.y18b{bottom:218.234667pt;}
.y10f{bottom:219.668000pt;}
.y15c{bottom:221.329333pt;}
.y1ba{bottom:221.331467pt;}
.yd1{bottom:221.706667pt;}
.ycf{bottom:221.709805pt;}
.ye3{bottom:223.976000pt;}
.y129{bottom:224.732000pt;}
.yd0{bottom:226.393333pt;}
.y46{bottom:227.983290pt;}
.y14a{bottom:228.434667pt;}
.y24{bottom:231.986667pt;}
.ya3{bottom:231.988000pt;}
.y18a{bottom:235.620000pt;}
.y10e{bottom:236.978667pt;}
.yce{bottom:238.338930pt;}
.y1b9{bottom:238.642184pt;}
.y73{bottom:239.169333pt;}
.ye2{bottom:241.285333pt;}
.y128{bottom:242.042667pt;}
.y45{bottom:242.647640pt;}
.y15b{bottom:244.006667pt;}
.ya2{bottom:249.297333pt;}
.yf9{bottom:249.298667pt;}
.y1f4{bottom:249.603892pt;}
.y1b8{bottom:251.340692pt;}
.y189{bottom:252.929333pt;}
.y10d{bottom:254.288000pt;}
.y23{bottom:254.664000pt;}
.ycd{bottom:254.969122pt;}
.y72{bottom:256.480000pt;}
.y44{bottom:257.311990pt;}
.ye1{bottom:258.670667pt;}
.y127{bottom:259.352000pt;}
.y1f3{bottom:262.302400pt;}
.y1b7{bottom:263.964534pt;}
.yf8{bottom:266.684000pt;}
.y188{bottom:270.240000pt;}
.y10c{bottom:271.673333pt;}
.ycc{bottom:271.675047pt;}
.ya1{bottom:271.974667pt;}
.y43{bottom:271.977407pt;}
.y71{bottom:273.790667pt;}
.y144{bottom:273.942667pt;}
.y1f2{bottom:274.926242pt;}
.ye0{bottom:275.981333pt;}
.y126{bottom:276.738667pt;}
.y1b6{bottom:281.349917pt;}
.yf7{bottom:283.993333pt;}
.y187{bottom:287.625333pt;}
.ycb{bottom:288.304172pt;}
.y10b{bottom:288.984000pt;}
.y70{bottom:291.100000pt;}
.y143{bottom:291.253333pt;}
.y1f1{bottom:292.311625pt;}
.ydf{bottom:293.292000pt;}
.y1b5{bottom:293.973759pt;}
.y125{bottom:294.048000pt;}
.y42{bottom:294.654457pt;}
.y1f0{bottom:304.935467pt;}
.y186{bottom:304.936000pt;}
.yca{bottom:305.010097pt;}
.y10a{bottom:306.294667pt;}
.yf6{bottom:306.670667pt;}
.y1b4{bottom:306.673333pt;}
.y15a{bottom:308.109333pt;}
.y6f{bottom:308.485333pt;}
.y142{bottom:308.638667pt;}
.y41{bottom:309.318807pt;}
.yde{bottom:310.601333pt;}
.y124{bottom:311.358667pt;}
.y1ef{bottom:317.635042pt;}
.yc9{bottom:321.639222pt;}
.y185{bottom:322.245333pt;}
.y109{bottom:323.604000pt;}
.y1b3{bottom:323.982984pt;}
.y40{bottom:323.983157pt;}
.ya0{bottom:324.586667pt;}
.y159{bottom:325.418667pt;}
.y141{bottom:325.949333pt;}
.ydd{bottom:327.986667pt;}
.y123{bottom:328.744000pt;}
.y6e{bottom:331.162667pt;}
.y1ee{bottom:334.944692pt;}
.y1b2{bottom:336.682558pt;}
.yc8{bottom:338.345147pt;}
.y3f{bottom:338.647507pt;}
.y184{bottom:339.632000pt;}
.y108{bottom:340.989333pt;}
.y9f{bottom:341.973333pt;}
.y158{bottom:342.805333pt;}
.y140{bottom:343.258667pt;}
.y122{bottom:346.054667pt;}
.y1ed{bottom:347.644267pt;}
.y1b1{bottom:349.305334pt;}
.ydc{bottom:350.664000pt;}
.y22{bottom:351.270667pt;}
.y3e{bottom:353.311857pt;}
.yc7{bottom:354.975339pt;}
.y183{bottom:356.941333pt;}
.y107{bottom:358.300000pt;}
.yf5{bottom:358.452000pt;}
.y9e{bottom:359.282667pt;}
.y157{bottom:360.114667pt;}
.y13f{bottom:360.569333pt;}
.y121{bottom:363.364000pt;}
.y1ec{bottom:364.953917pt;}
.y1b0{bottom:366.691783pt;}
.y6d{bottom:367.597333pt;}
.y3d{bottom:367.976207pt;}
.y21{bottom:369.941333pt;}
.yc6{bottom:371.680197pt;}
.y182{bottom:374.252000pt;}
.y106{bottom:375.610667pt;}
.yf4{bottom:375.761333pt;}
.y9d{bottom:376.593333pt;}
.y156{bottom:377.425333pt;}
.y1eb{bottom:377.653491pt;}
.y13e{bottom:377.954667pt;}
.y1af{bottom:379.315625pt;}
.y120{bottom:380.674667pt;}
.y6c{bottom:384.908000pt;}
.yc5{bottom:388.310389pt;}
.y20{bottom:388.612000pt;}
.ydb{bottom:389.292000pt;}
.y3c{bottom:390.653257pt;}
.y181{bottom:391.637333pt;}
.y105{bottom:392.996000pt;}
.yf3{bottom:393.072000pt;}
.y9c{bottom:393.978667pt;}
.y155{bottom:394.810667pt;}
.y1ea{bottom:394.963142pt;}
.y13d{bottom:395.265333pt;}
.y1ae{bottom:396.701008pt;}
.y11f{bottom:398.060000pt;}
.y6b{bottom:402.293333pt;}
.yc4{bottom:405.015247pt;}
.yda{bottom:406.601333pt;}
.y1f{bottom:407.282667pt;}
.y1e9{bottom:407.662716pt;}
.yf2{bottom:408.189333pt;}
.y180{bottom:408.948000pt;}
.y1ad{bottom:409.324850pt;}
.y104{bottom:410.306667pt;}
.yf1{bottom:410.381333pt;}
.y9b{bottom:411.289333pt;}
.y154{bottom:412.121333pt;}
.y13c{bottom:412.574667pt;}
.y3b{bottom:413.330307pt;}
.y11e{bottom:415.370667pt;}
.y6a{bottom:419.604000pt;}
.yc3{bottom:421.645439pt;}
.y1ac{bottom:422.023358pt;}
.y1e8{bottom:424.972367pt;}
.yef{bottom:425.498667pt;}
.y1e{bottom:425.953333pt;}
.y17f{bottom:426.257333pt;}
.y103{bottom:427.616000pt;}
.yf0{bottom:427.766667pt;}
.yee{bottom:427.768000pt;}
.y9a{bottom:428.598667pt;}
.y153{bottom:429.430667pt;}
.y13b{bottom:429.961333pt;}
.y11d{bottom:430.488000pt;}
.y11b{bottom:432.680000pt;}
.yea{bottom:435.099617pt;}
.y3a{bottom:436.007357pt;}
.y69{bottom:436.913333pt;}
.y1e7{bottom:437.596209pt;}
.yc2{bottom:438.351363pt;}
.y11c{bottom:438.652000pt;}
.y1ab{bottom:439.334075pt;}
.y17e{bottom:443.568000pt;}
.y1d{bottom:444.548000pt;}
.y102{bottom:445.001333pt;}
.yed{bottom:445.078667pt;}
.y99{bottom:445.984000pt;}
.y152{bottom:446.816000pt;}
.y13a{bottom:447.270667pt;}
.y1e6{bottom:450.295783pt;}
.y1aa{bottom:452.032583pt;}
.yc1{bottom:454.980489pt;}
.ye9{bottom:455.736159pt;}
.y39{bottom:458.684406pt;}
.y68{bottom:459.590667pt;}
.y17d{bottom:460.953333pt;}
.y1b{bottom:461.177333pt;}
.y131{bottom:461.179191pt;}
.y101{bottom:462.312000pt;}
.yec{bottom:462.388000pt;}
.y1e5{bottom:462.994291pt;}
.y1c{bottom:463.218667pt;}
.y1a{bottom:463.220000pt;}
.y139{bottom:464.581333pt;}
.y1a9{bottom:464.656425pt;}
.ye8{bottom:468.434667pt;}
.y98{bottom:468.585333pt;}
.yc0{bottom:471.686413pt;}
.y38{bottom:473.348756pt;}
.y164{bottom:475.238126pt;}
.y17c{bottom:478.264000pt;}
.y100{bottom:479.622667pt;}
.yeb{bottom:479.773333pt;}
.y1e4{bottom:480.305008pt;}
.y130{bottom:481.814667pt;}
.y19{bottom:481.890667pt;}
.y138{bottom:481.966667pt;}
.y1a8{bottom:481.967142pt;}
.ybf{bottom:488.316605pt;}
.y1e3{bottom:492.928850pt;}
.y163{bottom:494.134667pt;}
.y1a7{bottom:494.665650pt;}
.y17b{bottom:495.574667pt;}
.y162{bottom:495.949333pt;}
.y37{bottom:496.025806pt;}
.y67{bottom:496.102667pt;}
.yff{bottom:497.008000pt;}
.y137{bottom:499.277333pt;}
.y18{bottom:500.561333pt;}
.ybe{bottom:505.021463pt;}
.y1e2{bottom:505.627358pt;}
.yfd{bottom:508.195459pt;}
.y36{bottom:510.691223pt;}
.y1a6{bottom:511.976367pt;}
.y17a{bottom:512.960000pt;}
.y66{bottom:513.413333pt;}
.yfe{bottom:514.317333pt;}
.y136{bottom:516.586667pt;}
.y17{bottom:519.232000pt;}
.y97{bottom:521.273333pt;}
.ybd{bottom:521.651655pt;}
.y1e1{bottom:522.938075pt;}
.y1a5{bottom:524.674875pt;}
.y35{bottom:525.355573pt;}
.yfc{bottom:527.093333pt;}
.yfb{bottom:528.906667pt;}
.y179{bottom:530.269333pt;}
.y65{bottom:530.722667pt;}
.y135{bottom:533.897333pt;}
.y1e0{bottom:535.636583pt;}
.y1a4{bottom:537.298717pt;}
.y16{bottom:537.902667pt;}
.ybc{bottom:538.356513pt;}
.y96{bottom:538.584000pt;}
.y34{bottom:540.019923pt;}
.y11a{bottom:542.740792pt;}
.y178{bottom:547.580000pt;}
.y64{bottom:548.033333pt;}
.y1de{bottom:548.260425pt;}
.y1df{bottom:548.487623pt;}
.y134{bottom:551.282667pt;}
.y1a3{bottom:554.684100pt;}
.y33{bottom:554.684273pt;}
.y95{bottom:555.893333pt;}
.y15{bottom:556.573333pt;}
.ybb{bottom:558.085333pt;}
.y119{bottom:563.452000pt;}
.y177{bottom:564.965333pt;}
.y63{bottom:565.418667pt;}
.y1dd{bottom:565.645808pt;}
.y1a2{bottom:567.307942pt;}
.y133{bottom:568.593333pt;}
.y94{bottom:573.278667pt;}
.y14{bottom:575.244000pt;}
.y32{bottom:576.529333pt;}
.y1dc{bottom:578.269650pt;}
.y1a1{bottom:580.007517pt;}
.y176{bottom:582.276000pt;}
.y62{bottom:582.729333pt;}
.y132{bottom:585.902667pt;}
.yba{bottom:589.153333pt;}
.y1a0{bottom:592.630292pt;}
.y13{bottom:593.914667pt;}
.y1db{bottom:595.655033pt;}
.y93{bottom:595.880000pt;}
.y175{bottom:599.585333pt;}
.y61{bottom:600.040000pt;}
.yb9{bottom:606.464000pt;}
.y1da{bottom:608.278875pt;}
.y19f{bottom:610.016742pt;}
.y12{bottom:612.585333pt;}
.y149{bottom:614.401109pt;}
.y174{bottom:616.972000pt;}
.y60{bottom:617.425333pt;}
.y1d9{bottom:620.978450pt;}
.y19e{bottom:622.639517pt;}
.yb8{bottom:623.849333pt;}
.y1d8{bottom:633.602292pt;}
.y173{bottom:634.281333pt;}
.y5f{bottom:634.734667pt;}
.y148{bottom:635.036584pt;}
.y19d{bottom:635.339092pt;}
.yb6{bottom:638.890667pt;}
.yb7{bottom:641.158667pt;}
.yb5{bottom:641.160000pt;}
.y11{bottom:641.914667pt;}
.y92{bottom:646.298667pt;}
.y147{bottom:647.736159pt;}
.y91{bottom:648.566667pt;}
.y1d7{bottom:650.987675pt;}
.y172{bottom:651.592000pt;}
.y5e{bottom:652.045333pt;}
.y19c{bottom:652.649809pt;}
.y31{bottom:653.784000pt;}
.yb4{bottom:658.470667pt;}
.y146{bottom:658.620000pt;}
.y145{bottom:660.434667pt;}
.y8f{bottom:663.609333pt;}
.y1d6{bottom:663.611517pt;}
.y19b{bottom:665.348317pt;}
.y90{bottom:665.877333pt;}
.y8e{bottom:665.880000pt;}
.y171{bottom:668.902667pt;}
.y30{bottom:669.128000pt;}
.y5d{bottom:669.430667pt;}
.yb3{bottom:675.780000pt;}
.y1d5{bottom:676.310025pt;}
.y19a{bottom:677.972159pt;}
.y8d{bottom:683.189333pt;}
.y2f{bottom:684.473333pt;}
.y170{bottom:686.288000pt;}
.y5c{bottom:686.741333pt;}
.y199{bottom:690.670667pt;}
.yb2{bottom:693.165333pt;}
.y1d4{bottom:693.620742pt;}
.y87{bottom:694.301267pt;}
.y10{bottom:695.509167pt;}
.y2e{bottom:699.742667pt;}
.y8c{bottom:700.500000pt;}
.y16f{bottom:703.597333pt;}
.y5b{bottom:704.050667pt;}
.y1d3{bottom:706.319250pt;}
.y198{bottom:708.661333pt;}
.yf{bottom:708.889266pt;}
.y86{bottom:708.965617pt;}
.yb1{bottom:710.476000pt;}
.y2d{bottom:715.086667pt;}
.y8b{bottom:717.885333pt;}
.y1d2{bottom:718.943092pt;}
.y16d{bottom:720.908000pt;}
.y16e{bottom:721.361333pt;}
.y5a{bottom:726.728734pt;}
.yb0{bottom:727.786667pt;}
.y85{bottom:731.642666pt;}
.y8a{bottom:735.196000pt;}
.ye{bottom:735.496934pt;}
.y1d1{bottom:736.328475pt;}
.y16c{bottom:738.293333pt;}
.yaf{bottom:745.172000pt;}
.y84{bottom:746.307016pt;}
.yd{bottom:748.875967pt;}
.y1d0{bottom:748.952317pt;}
.y59{bottom:750.765333pt;}
.y89{bottom:752.505333pt;}
.y16b{bottom:755.604000pt;}
.y197{bottom:757.872000pt;}
.y83{bottom:760.971367pt;}
.y1cf{bottom:761.651891pt;}
.yc{bottom:762.180334pt;}
.yae{bottom:762.481333pt;}
.y88{bottom:769.890667pt;}
.y16a{bottom:772.913333pt;}
.y1ce{bottom:774.274667pt;}
.y196{bottom:775.182667pt;}
.yb{bottom:775.483634pt;}
.y82{bottom:775.635717pt;}
.yad{bottom:785.158667pt;}
.y58{bottom:787.201333pt;}
.ya{bottom:788.862667pt;}
.y81{bottom:790.300067pt;}
.y1cd{bottom:791.661116pt;}
.y169{bottom:795.590667pt;}
.y195{bottom:799.220000pt;}
.y1cc{bottom:804.284958pt;}
.y57{bottom:804.512000pt;}
.y80{bottom:804.964417pt;}
.y7{bottom:812.825333pt;}
.y9{bottom:813.126533pt;}
.y8{bottom:818.192000pt;}
.y7f{bottom:819.629833pt;}
.y1cb{bottom:821.594609pt;}
.y56{bottom:821.897333pt;}
.y194{bottom:823.182667pt;}
.y4{bottom:827.489333pt;}
.y6{bottom:827.790533pt;}
.yac{bottom:832.101333pt;}
.y5{bottom:832.857333pt;}
.y7e{bottom:834.294183pt;}
.y55{bottom:839.208000pt;}
.y168{bottom:840.568000pt;}
.y1ca{bottom:846.992691pt;}
.y193{bottom:847.220000pt;}
.y7d{bottom:848.958533pt;}
.yab{bottom:849.412000pt;}
.y54{bottom:856.517333pt;}
.y167{bottom:857.878667pt;}
.y1c9{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y7c{bottom:863.622883pt;}
.yaa{bottom:866.797333pt;}
.y192{bottom:871.181333pt;}
.y53{bottom:873.902667pt;}
.y1c8{bottom:876.926184pt;}
.y7b{bottom:878.287233pt;}
.y166{bottom:883.201333pt;}
.ya9{bottom:884.108000pt;}
.y1c7{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y52{bottom:891.213333pt;}
.y7a{bottom:892.951583pt;}
.y191{bottom:895.220000pt;}
.y165{bottom:900.510667pt;}
.ya8{bottom:901.417333pt;}
.y1c6{bottom:902.325333pt;}
.y79{bottom:907.615933pt;}
.y51{bottom:908.524000pt;}
.ya7{bottom:918.802667pt;}
.y190{bottom:919.181333pt;}
.y1c5{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y50{bottom:925.833333pt;}
.y78{bottom:930.292983pt;}
.y1c4{bottom:932.258825pt;}
.ya6{bottom:941.404000pt;}
.y4f{bottom:943.218667pt;}
.y77{bottom:944.957333pt;}
.y1c3{bottom:945.183464pt;}
.y76{bottom:994.393333pt;}
.h12{height:21.330000pt;}
.h4{height:24.828689pt;}
.h8{height:26.174333pt;}
.h10{height:26.663600pt;}
.hb{height:31.082945pt;}
.h11{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hd{height:34.772899pt;}
.hc{height:36.052883pt;}
.h3{height:37.248000pt;}
.h7{height:39.266667pt;}
.ha{height:40.000000pt;}
.hf{height:41.333333pt;}
.he{height:47.999600pt;}
.h9{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:48.000000pt;}
.x15{left:63.496000pt;}
.x2d{left:68.106415pt;}
.x4c{left:96.000000pt;}
.x3e{left:97.889733pt;}
.x4d{left:102.727467pt;}
.x43{left:106.204667pt;}
.x38{left:112.404340pt;}
.x2e{left:118.223122pt;}
.x31{left:158.514697pt;}
.x23{left:181.038337pt;}
.x27{left:184.817490pt;}
.x28{left:185.725212pt;}
.x29{left:191.015812pt;}
.x2a{left:195.249359pt;}
.x25{left:207.192677pt;}
.x39{left:215.357333pt;}
.x2b{left:228.282546pt;}
.x2c{left:233.347016pt;}
.x24{left:238.864814pt;}
.x26{left:247.859902pt;}
.x2f{left:263.584000pt;}
.x1{left:266.682667pt;}
.x30{left:267.590667pt;}
.x53{left:273.184000pt;}
.x3f{left:274.998667pt;}
.x13{left:282.632000pt;}
.x44{left:287.546667pt;}
.x54{left:295.330923pt;}
.x45{left:296.314667pt;}
.x1c{left:297.676000pt;}
.x1d{left:302.589333pt;}
.x11{left:306.444000pt;}
.x22{left:307.802619pt;}
.x1e{left:309.921333pt;}
.x12{left:314.381333pt;}
.x20{left:337.738667pt;}
.xb{left:342.802667pt;}
.x21{left:345.449333pt;}
.xc{left:347.716000pt;}
.x2{left:375.156000pt;}
.x3{left:380.069333pt;}
.x17{left:388.081333pt;}
.x46{left:391.558667pt;}
.x18{left:392.994667pt;}
.x47{left:405.014667pt;}
.xd{left:411.136000pt;}
.xe{left:416.352000pt;}
.xf{left:421.266667pt;}
.x50{left:422.777333pt;}
.x51{left:426.708000pt;}
.x32{left:436.988016pt;}
.x4{left:466.772000pt;}
.x5{left:471.685333pt;}
.x55{left:480.225339pt;}
.x48{left:484.308000pt;}
.x49{left:493.001333pt;}
.x4a{left:513.940000pt;}
.x4b{left:518.626667pt;}
.x3a{left:524.296000pt;}
.x3b{left:529.058667pt;}
.x34{left:543.494418pt;}
.x6{left:560.201333pt;}
.x7{left:565.190667pt;}
.x10{left:570.104000pt;}
.x33{left:579.097173pt;}
.x8{left:580.383867pt;}
.x16{left:603.364000pt;}
.x3c{left:604.497333pt;}
.x3d{left:612.208000pt;}
.x36{left:640.703869pt;}
.x40{left:647.810667pt;}
.x9{left:649.625333pt;}
.xa{left:661.946667pt;}
.x52{left:670.862667pt;}
.x35{left:676.306624pt;}
.x41{left:681.902667pt;}
.x42{left:689.537333pt;}
.x4e{left:709.493333pt;}
.x4f{left:715.616000pt;}
.x19{left:717.202667pt;}
.x1a{left:722.116000pt;}
.x1f{left:724.913333pt;}
.x37{left:741.162347pt;}
.x1b{left:747.741333pt;}
}




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