
    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_783dafa5e34153769755e123.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_3c6e1f417917292b1486cf56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.724000;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_104a4220f7168c4376aa8d03.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e5fd9550477e3c28227642f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_67dffdc6402449c5fd73eed4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_a03a704f4d3d26e59a4b52f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966000;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_aa70e47cfc4a2d3607f94b9d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_df460a9f047a1c7e04ee3809.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_84dd9d78378e03278dc1b12b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.265000;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_5929da607def246d78613fb0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_c3fa6c5bcc689a0a6973ff0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.536000;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_e14b4d0b7d150ca5a7b98cf4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.601000;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_2fdb5e19add466a9fac903a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.590000;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_5065325f57acd7cb2bf2dcc7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.605000;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_ed52196b9be91015501dd2c6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bf6ba48852e4427bbcb1ecb0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.929000;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_0d80fc3d0d44c8df74be248f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.517000;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_476fdef110da15f81f77ab70.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.756000;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.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.274043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274043,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.275509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275509,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-6.575190px;}
.ls7{letter-spacing:-6.562040px;}
.ls2d{letter-spacing:-4.190792px;}
.ls2a{letter-spacing:-3.588863px;}
.ls2c{letter-spacing:-3.293576px;}
.ls3d{letter-spacing:-0.602524px;}
.ls11{letter-spacing:-0.601929px;}
.lsb{letter-spacing:-0.005679px;}
.ls9{letter-spacing:-0.005380px;}
.ls6{letter-spacing:-0.004782px;}
.lsc{letter-spacing:-0.004184px;}
.lsa{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.003108px;}
.ls3c{letter-spacing:0.051107px;}
.ls18{letter-spacing:0.102214px;}
.ls14{letter-spacing:0.107893px;}
.ls16{letter-spacing:0.113572px;}
.ls30{letter-spacing:0.221465px;}
.ls39{letter-spacing:0.596251px;}
.ls15{letter-spacing:7.098225px;}
.ls3b{letter-spacing:7.172047px;}
.ls1f{letter-spacing:7.177725px;}
.ls34{letter-spacing:9.261764px;}
.ls32{letter-spacing:9.267443px;}
.ls13{letter-spacing:9.784193px;}
.ls12{letter-spacing:9.801229px;}
.ls23{letter-spacing:9.863693px;}
.lse{letter-spacing:11.953411px;}
.ls36{letter-spacing:12.265676px;}
.ls28{letter-spacing:12.424745px;}
.ls1d{letter-spacing:12.453126px;}
.ls21{letter-spacing:12.458805px;}
.ls1c{letter-spacing:12.464483px;}
.ls1b{letter-spacing:12.492876px;}
.ls3{letter-spacing:12.498555px;}
.ls26{letter-spacing:12.526947px;}
.ls29{letter-spacing:12.528960px;}
.ls25{letter-spacing:12.538305px;}
.ls31{letter-spacing:12.543983px;}
.ls37{letter-spacing:12.552593px;}
.ls4{letter-spacing:12.555340px;}
.ls27{letter-spacing:12.561019px;}
.lsf{letter-spacing:13.458235px;}
.ls5{letter-spacing:14.460664px;}
.ls2{letter-spacing:16.734469px;}
.ls3e{letter-spacing:16.736790px;}
.ls33{letter-spacing:17.030061px;}
.ls22{letter-spacing:17.336705px;}
.ls38{letter-spacing:18.829020px;}
.ls2e{letter-spacing:18.834400px;}
.ls1a{letter-spacing:18.943743px;}
.ls20{letter-spacing:21.220853px;}
.ls3a{letter-spacing:21.510461px;}
.ls10{letter-spacing:22.231641px;}
.ls17{letter-spacing:22.708641px;}
.ls1e{letter-spacing:23.304892px;}
.ls0{letter-spacing:23.761460px;}
.lsd{letter-spacing:23.766242px;}
.ls1{letter-spacing:24.062722px;}
.ls24{letter-spacing:24.508751px;}
.ls2b{letter-spacing:165.032003px;}
.ls2f{letter-spacing:250.396985px;}
.ls19{letter-spacing:519.379963px;}
.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;}
}
.ws69{word-spacing:-35.769375px;}
.wsdd{word-spacing:-27.735252px;}
.ws6e{word-spacing:-18.903993px;}
.ws83{word-spacing:-13.060734px;}
.ws44{word-spacing:-13.055055px;}
.wsb2{word-spacing:-9.559098px;}
.wsaf{word-spacing:-8.961356px;}
.ws74{word-spacing:-8.869942px;}
.ws2{word-spacing:-8.155633px;}
.wsac{word-spacing:-4.383864px;}
.wsb3{word-spacing:-3.815988px;}
.wscc{word-spacing:-3.519508px;}
.ws49{word-spacing:-3.492327px;}
.ws80{word-spacing:-3.486648px;}
.ws86{word-spacing:-3.469612px;}
.ws73{word-spacing:-3.356041px;}
.ws76{word-spacing:-3.350362px;}
.wsc7{word-spacing:-3.218246px;}
.ws81{word-spacing:-2.890397px;}
.wsb8{word-spacing:-2.324023px;}
.ws55{word-spacing:-2.294146px;}
.ws4e{word-spacing:-1.998860px;}
.ws46{word-spacing:-1.993182px;}
.ws52{word-spacing:-1.925039px;}
.wsdc{word-spacing:-1.726280px;}
.ws45{word-spacing:-1.697895px;}
.wsa7{word-spacing:-1.692217px;}
.ws10{word-spacing:-1.396931px;}
.wsc5{word-spacing:-1.128538px;}
.ws1e{word-spacing:-1.095966px;}
.wsd8{word-spacing:-0.832058px;}
.ws7f{word-spacing:-0.800680px;}
.wsad{word-spacing:-0.795001px;}
.wsba{word-spacing:-0.530795px;}
.ws54{word-spacing:-0.528108px;}
.ws18{word-spacing:-0.499715px;}
.wsd7{word-spacing:-0.234315px;}
.ws48{word-spacing:-0.232822px;}
.ws5e{word-spacing:-0.198750px;}
.ws47{word-spacing:-0.073822px;}
.ws4a{word-spacing:-0.056786px;}
.ws5f{word-spacing:-0.050808px;}
.ws39{word-spacing:0.000000px;}
.wse1{word-spacing:0.066947px;}
.ws3c{word-spacing:0.090857px;}
.ws66{word-spacing:0.096536px;}
.ws6d{word-spacing:0.397501px;}
.ws62{word-spacing:0.664394px;}
.wsb6{word-spacing:0.664690px;}
.ws5b{word-spacing:0.692787px;}
.ws6a{word-spacing:0.698465px;}
.wsa1{word-spacing:0.914552px;}
.ws3b{word-spacing:0.961170px;}
.ws51{word-spacing:0.988073px;}
.ws3e{word-spacing:0.993752px;}
.wsa0{word-spacing:1.231956px;}
.wsc1{word-spacing:1.262432px;}
.wsa8{word-spacing:1.289038px;}
.ws57{word-spacing:1.294716px;}
.ws2f{word-spacing:1.590002px;}
.ws91{word-spacing:1.654551px;}
.ws8c{word-spacing:1.812966px;}
.wsb7{word-spacing:1.860175px;}
.ws43{word-spacing:1.890967px;}
.wse5{word-spacing:2.161437px;}
.ws9e{word-spacing:2.176217px;}
.wsaa{word-spacing:2.186253px;}
.ws36{word-spacing:2.191932px;}
.ws24{word-spacing:2.372453px;}
.wsa3{word-spacing:2.410115px;}
.wscf{word-spacing:2.457917px;}
.ws14{word-spacing:2.487218px;}
.ws8e{word-spacing:2.553556px;}
.ws29{word-spacing:2.673717px;}
.ws8d{word-spacing:2.705999px;}
.wse0{word-spacing:2.754397px;}
.wse{word-spacing:2.788183px;}
.wsb9{word-spacing:3.055660px;}
.ws15{word-spacing:3.083469px;}
.ws8f{word-spacing:3.146517px;}
.wscd{word-spacing:3.352140px;}
.wsd4{word-spacing:3.356922px;}
.ws1f{word-spacing:3.384434px;}
.ws28{word-spacing:3.569140px;}
.wsca{word-spacing:3.653402px;}
.ws23{word-spacing:3.685398px;}
.ws67{word-spacing:3.804649px;}
.ws85{word-spacing:3.810327px;}
.ws88{word-spacing:3.816006px;}
.wscb{word-spacing:3.949882px;}
.wsc6{word-spacing:3.954664px;}
.ws1c{word-spacing:3.980685px;}
.wsd5{word-spacing:4.112468px;}
.ws7e{word-spacing:4.201561px;}
.wsbe{word-spacing:4.251145px;}
.wsd{word-spacing:4.281649px;}
.wsda{word-spacing:4.346783px;}
.ws2b{word-spacing:4.464563px;}
.wsb1{word-spacing:4.485460px;}
.ws98{word-spacing:4.502826px;}
.ws95{word-spacing:4.510589px;}
.ws94{word-spacing:4.514773px;}
.wsc3{word-spacing:4.542843px;}
.wsbf{word-spacing:4.552407px;}
.ws59{word-spacing:4.576935px;}
.ws16{word-spacing:4.582614px;}
.wsc2{word-spacing:4.714993px;}
.ws2a{word-spacing:4.761642px;}
.ws25{word-spacing:4.765827px;}
.ws63{word-spacing:4.798400px;}
.wsbc{word-spacing:4.848887px;}
.ws35{word-spacing:4.877900px;}
.wsa{word-spacing:4.930180px;}
.ws27{word-spacing:5.062906px;}
.wsce{word-spacing:5.092766px;}
.wsc9{word-spacing:5.145367px;}
.wsb5{word-spacing:5.150149px;}
.wse4{word-spacing:5.159713px;}
.ws4d{word-spacing:5.173186px;}
.ws1a{word-spacing:5.178865px;}
.ws9{word-spacing:5.231442px;}
.wsa5{word-spacing:5.401239px;}
.ws0{word-spacing:5.446630px;}
.ws3d{word-spacing:5.474151px;}
.ws60{word-spacing:5.479830px;}
.wsde{word-spacing:5.743110px;}
.ws21{word-spacing:5.775116px;}
.wsb{word-spacing:5.829185px;}
.ws6c{word-spacing:5.939795px;}
.wsa4{word-spacing:5.998388px;}
.wsb4{word-spacing:6.044372px;}
.ws8b{word-spacing:6.070402px;}
.ws11{word-spacing:6.076081px;}
.ws26{word-spacing:6.259593px;}
.wsc4{word-spacing:6.340852px;}
.ws30{word-spacing:6.371367px;}
.ws58{word-spacing:6.377045px;}
.ws78{word-spacing:6.595537px;}
.wsdf{word-spacing:6.642115px;}
.ws1b{word-spacing:6.672331px;}
.ws8{word-spacing:6.891421px;}
.wsd1{word-spacing:6.938595px;}
.ws53{word-spacing:6.967618px;}
.ws32{word-spacing:6.973296px;}
.ws9d{word-spacing:7.192686px;}
.wsbb{word-spacing:7.239857px;}
.ws34{word-spacing:7.268582px;}
.wsd0{word-spacing:7.536337px;}
.wsd3{word-spacing:7.541119px;}
.ws6b{word-spacing:7.541154px;}
.ws2d{word-spacing:7.569547px;}
.ws7d{word-spacing:7.789835px;}
.wsbd{word-spacing:7.837600px;}
.ws71{word-spacing:7.864833px;}
.ws41{word-spacing:7.870512px;}
.wsd2{word-spacing:8.134080px;}
.ws19{word-spacing:8.165798px;}
.wse3{word-spacing:8.435342px;}
.ws13{word-spacing:8.466763px;}
.ws6{word-spacing:8.731286px;}
.wsae{word-spacing:8.731822px;}
.ws5c{word-spacing:8.762049px;}
.ws89{word-spacing:8.767728px;}
.ws7{word-spacing:8.978753px;}
.ws97{word-spacing:8.984132px;}
.ws61{word-spacing:9.023264px;}
.wsd6{word-spacing:9.033085px;}
.ws1d{word-spacing:9.063014px;}
.ws99{word-spacing:9.285397px;}
.wsd9{word-spacing:9.329565px;}
.ws3f{word-spacing:9.363978px;}
.ws8a{word-spacing:9.375336px;}
.ws7c{word-spacing:9.457548px;}
.ws96{word-spacing:9.581281px;}
.wsc0{word-spacing:9.630827px;}
.ws56{word-spacing:9.659265px;}
.ws9f{word-spacing:9.882546px;}
.wsb0{word-spacing:9.932089px;}
.ws2e{word-spacing:9.960229px;}
.ws50{word-spacing:10.255515px;}
.ws20{word-spacing:10.261194px;}
.ws7a{word-spacing:10.350581px;}
.ws7b{word-spacing:10.425897px;}
.ws37{word-spacing:10.556480px;}
.ws79{word-spacing:10.780959px;}
.wsdb{word-spacing:10.826312px;}
.wsa6{word-spacing:10.846088px;}
.ws84{word-spacing:10.851766px;}
.ws22{word-spacing:10.857445px;}
.wsc8{word-spacing:11.122792px;}
.ws75{word-spacing:11.152731px;}
.ws65{word-spacing:11.158410px;}
.ws70{word-spacing:11.306053px;}
.ws9c{word-spacing:11.378108px;}
.wse2{word-spacing:11.424055px;}
.ws4c{word-spacing:11.453696px;}
.ws40{word-spacing:11.754661px;}
.ws4b{word-spacing:12.049947px;}
.wsa2{word-spacing:12.271141px;}
.ws68{word-spacing:12.322519px;}
.ws38{word-spacing:12.350912px;}
.ws9b{word-spacing:12.572406px;}
.wsa9{word-spacing:12.651876px;}
.ws3a{word-spacing:12.877764px;}
.ws5a{word-spacing:12.947162px;}
.ws9a{word-spacing:13.169555px;}
.ws33{word-spacing:13.248127px;}
.ws64{word-spacing:13.515020px;}
.wsab{word-spacing:13.543413px;}
.ws31{word-spacing:13.844378px;}
.ws1{word-spacing:14.350602px;}
.ws5d{word-spacing:14.440629px;}
.ws77{word-spacing:14.961001px;}
.ws42{word-spacing:15.042558px;}
.ws2c{word-spacing:15.337845px;}
.ws72{word-spacing:15.638809px;}
.ws82{word-spacing:16.836990px;}
.ws3{word-spacing:21.132661px;}
.ws5{word-spacing:21.461420px;}
.ws4{word-spacing:21.737578px;}
.ws93{word-spacing:48.516031px;}
.wsf{word-spacing:56.308799px;}
.ws90{word-spacing:57.411972px;}
.ws17{word-spacing:58.682446px;}
.wsc{word-spacing:62.015772px;}
.ws12{word-spacing:66.706279px;}
.ws4f{word-spacing:68.046424px;}
.ws6f{word-spacing:104.661908px;}
.ws92{word-spacing:123.775735px;}
.ws87{word-spacing:203.474879px;}
._1b{margin-left:-1435.466268px;}
._27{margin-left:-1413.765651px;}
._3c{margin-left:-1339.171595px;}
._26{margin-left:-1315.178555px;}
._33{margin-left:-1255.068394px;}
._34{margin-left:-1243.526901px;}
._29{margin-left:-1139.762952px;}
._3a{margin-left:-894.489922px;}
._35{margin-left:-762.064236px;}
._39{margin-left:-749.441953px;}
._30{margin-left:-586.114635px;}
._2c{margin-left:-521.615076px;}
._40{margin-left:-417.623103px;}
._2e{margin-left:-395.598276px;}
._3e{margin-left:-328.330725px;}
._3f{margin-left:-299.302980px;}
._c{margin-left:-200.493624px;}
._43{margin-left:-165.115606px;}
._22{margin-left:-22.642042px;}
._4a{margin-left:-17.937057px;}
._4b{margin-left:-16.736790px;}
._5{margin-left:-5.901553px;}
._1c{margin-left:-4.770007px;}
._f{margin-left:-3.307181px;}
._3{margin-left:-2.143512px;}
._18{margin-left:-1.107627px;}
._37{width:1.000887px;}
._4{width:2.077760px;}
._2{width:3.274445px;}
._14{width:4.786748px;}
._19{width:7.659730px;}
._12{width:9.376010px;}
._a{width:10.451207px;}
._17{width:11.938995px;}
._9{width:13.461294px;}
._8{width:15.252666px;}
._16{width:16.391813px;}
._7{width:17.393119px;}
._38{width:18.439257px;}
._e{width:19.461094px;}
._6{width:20.927111px;}
._49{width:22.008719px;}
._d{width:23.009606px;}
._10{width:24.809716px;}
._11{width:26.002218px;}
._32{width:27.206077px;}
._15{width:28.398579px;}
._2a{width:30.482617px;}
._1{width:46.013180px;}
._0{width:48.378887px;}
._13{width:55.290283px;}
._1a{width:68.069138px;}
._41{width:69.320435px;}
._36{width:72.733814px;}
._48{width:75.122410px;}
._24{width:76.802795px;}
._1d{width:78.989048px;}
._21{width:80.148078px;}
._1f{width:82.748868px;}
._3d{width:115.680449px;}
._23{width:138.614138px;}
._42{width:151.506205px;}
._2b{width:153.503375px;}
._25{width:163.142544px;}
._b{width:165.604429px;}
._1e{width:179.687307px;}
._20{width:183.332355px;}
._31{width:197.205726px;}
._45{width:210.137571px;}
._28{width:224.721066px;}
._3b{width:239.846183px;}
._2f{width:261.833645px;}
._2d{width:278.706954px;}
._46{width:682.440221px;}
._44{width:708.750455px;}
._47{width:735.051125px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.301000px;}
.fs4{font-size:29.289600px;}
.fs8{font-size:31.082400px;}
.fsa{font-size:32.875800px;}
.fs7{font-size:41.842200px;}
.fs0{font-size:47.819400px;}
.fs9{font-size:50.808000px;}
.fs3{font-size:53.797200px;}
.fs6{font-size:56.785800px;}
.fs1{font-size:71.729400px;}
.fs2{font-size:131.503800px;}
.y0{bottom:0.000000px;}
.y1{bottom:62.763150px;}
.y219{bottom:107.580456px;}
.ye4{bottom:107.584629px;}
.yac{bottom:107.584643px;}
.y1e6{bottom:107.591814px;}
.y115{bottom:107.594633px;}
.y2f{bottom:107.594696px;}
.y18e{bottom:107.594762px;}
.y23d{bottom:107.595075px;}
.y13e{bottom:107.596300px;}
.y19e{bottom:107.597817px;}
.y47{bottom:107.603325px;}
.y159{bottom:107.603399px;}
.y78{bottom:107.606424px;}
.y2e{bottom:121.043825px;}
.y23c{bottom:122.538637px;}
.y27b{bottom:123.136380px;}
.y18d{bottom:124.032497px;}
.ye3{bottom:127.011051px;}
.y114{bottom:127.021056px;}
.y13d{bottom:127.022723px;}
.y19d{bottom:127.024239px;}
.y158{bottom:127.029821px;}
.y77{bottom:127.032846px;}
.y46{bottom:127.178810px;}
.y218{bottom:127.306424px;}
.y1e5{bottom:127.317781px;}
.yab{bottom:127.759218px;}
.y2d{bottom:134.492954px;}
.y23b{bottom:137.482200px;}
.y27a{bottom:138.677685px;}
.y18c{bottom:140.470231px;}
.ye2{bottom:146.437473px;}
.y113{bottom:146.447478px;}
.y13c{bottom:146.449145px;}
.y19c{bottom:146.450662px;}
.y157{bottom:146.456243px;}
.y76{bottom:146.459269px;}
.y45{bottom:146.754295px;}
.y217{bottom:147.032391px;}
.y1e4{bottom:147.043748px;}
.yaa{bottom:147.933793px;}
.y2c{bottom:152.425475px;}
.y23a{bottom:152.425762px;}
.y279{bottom:154.218990px;}
.y18b{bottom:156.907966px;}
.ye1{bottom:165.863895px;}
.y2b{bottom:165.874604px;}
.y13b{bottom:165.875567px;}
.y19b{bottom:165.877084px;}
.y112{bottom:165.878091px;}
.y156{bottom:165.882665px;}
.y75{bottom:165.885691px;}
.y44{bottom:166.329780px;}
.y216{bottom:166.758358px;}
.y1e3{bottom:166.769715px;}
.y239{bottom:167.369325px;}
.ya9{bottom:168.108369px;}
.y278{bottom:170.358037px;}
.y18a{bottom:173.345700px;}
.y2a{bottom:179.323733px;}
.y238{bottom:182.312887px;}
.y13a{bottom:185.301989px;}
.y19a{bottom:185.303506px;}
.y111{bottom:185.304514px;}
.y155{bottom:185.309087px;}
.y74{bottom:185.312113px;}
.ye0{bottom:185.589862px;}
.y277{bottom:185.899342px;}
.y43{bottom:185.905264px;}
.y215{bottom:186.484326px;}
.y1e2{bottom:186.495683px;}
.y189{bottom:187.093800px;}
.ya8{bottom:188.282944px;}
.y188{bottom:189.783916px;}
.y29{bottom:192.772863px;}
.y237{bottom:197.256450px;}
.y276{bottom:201.440647px;}
.y1e1{bottom:203.382450px;}
.y186{bottom:203.531850px;}
.y139{bottom:204.728411px;}
.y199{bottom:204.729928px;}
.y110{bottom:204.730936px;}
.y154{bottom:204.735510px;}
.ydf{bottom:205.314410px;}
.y42{bottom:205.480749px;}
.y214{bottom:206.210293px;}
.y1e0{bottom:206.221283px;}
.y187{bottom:206.221650px;}
.y28{bottom:206.221992px;}
.y185{bottom:206.222778px;}
.ya7{bottom:208.457519px;}
.y236{bottom:212.200012px;}
.y275{bottom:216.981952px;}
.y27{bottom:219.671121px;}
.y73{bottom:220.578934px;}
.y184{bottom:222.660512px;}
.y1de{bottom:223.108050px;}
.y138{bottom:224.154833px;}
.y198{bottom:224.156350px;}
.y10f{bottom:224.157358px;}
.y153{bottom:224.161932px;}
.yde{bottom:225.041797px;}
.y41{bottom:225.056234px;}
.y213{bottom:225.936260px;}
.y1dd{bottom:225.936674px;}
.y1df{bottom:225.947250px;}
.y235{bottom:227.143575px;}
.ya6{bottom:228.632094px;}
.y26{bottom:233.120250px;}
.y274{bottom:233.121000px;}
.y183{bottom:239.098247px;}
.y234{bottom:242.087137px;}
.y137{bottom:243.581256px;}
.y197{bottom:243.582773px;}
.y10e{bottom:243.583780px;}
.y152{bottom:243.588354px;}
.y40{bottom:244.631719px;}
.ydd{bottom:244.767764px;}
.y212{bottom:245.660808px;}
.y1dc{bottom:245.661222px;}
.y273{bottom:248.661110px;}
.ya5{bottom:248.806669px;}
.y182{bottom:255.535981px;}
.y233{bottom:257.030700px;}
.y136{bottom:263.007678px;}
.y196{bottom:263.009195px;}
.y10d{bottom:263.010202px;}
.y151{bottom:263.014776px;}
.y272{bottom:264.203610px;}
.y3f{bottom:264.207204px;}
.ydc{bottom:264.493731px;}
.y211{bottom:265.388195px;}
.y1db{bottom:265.388609px;}
.ya4{bottom:268.981244px;}
.y181{bottom:271.973716px;}
.y232{bottom:271.974263px;}
.y72{bottom:276.467518px;}
.y135{bottom:279.594750px;}
.y271{bottom:279.744915px;}
.y134{bottom:282.434100px;}
.y195{bottom:282.435617px;}
.y10c{bottom:282.436625px;}
.y150{bottom:282.441198px;}
.y3e{bottom:283.781269px;}
.ydb{bottom:284.219699px;}
.y210{bottom:285.114162px;}
.y1da{bottom:285.114576px;}
.y231{bottom:286.917825px;}
.y180{bottom:288.411450px;}
.ya3{bottom:289.155819px;}
.y25{bottom:293.781249px;}
.y270{bottom:295.883962px;}
.y71{bottom:295.893941px;}
.y133{bottom:299.021400px;}
.y132{bottom:301.860978px;}
.y230{bottom:301.861387px;}
.y194{bottom:301.862039px;}
.y10b{bottom:301.863047px;}
.y14f{bottom:301.867620px;}
.y3d{bottom:303.359593px;}
.yda{bottom:303.944246px;}
.y20f{bottom:304.840129px;}
.y1d9{bottom:304.840543px;}
.ya2{bottom:309.330394px;}
.y26f{bottom:311.424072px;}
.y24{bottom:313.955824px;}
.y70{bottom:315.320363px;}
.y22f{bottom:316.804950px;}
.y130{bottom:318.448200px;}
.y131{bottom:321.287400px;}
.y12f{bottom:321.287628px;}
.y193{bottom:321.288461px;}
.y10a{bottom:321.289469px;}
.y14e{bottom:321.294043px;}
.y3c{bottom:322.935078px;}
.yd9{bottom:323.671633px;}
.y20e{bottom:324.566096px;}
.y1d8{bottom:324.566511px;}
.y26e{bottom:326.966572px;}
.ya1{bottom:329.504969px;}
.y22e{bottom:331.748513px;}
.y23{bottom:334.130399px;}
.y6f{bottom:334.746785px;}
.y12d{bottom:337.874850px;}
.y12e{bottom:340.714050px;}
.y192{bottom:340.714883px;}
.y12c{bottom:340.715339px;}
.y109{bottom:340.715891px;}
.y14d{bottom:340.720465px;}
.y26d{bottom:342.507877px;}
.y3b{bottom:342.510563px;}
.yd8{bottom:343.397601px;}
.y20d{bottom:344.290644px;}
.y1d7{bottom:344.291058px;}
.y22d{bottom:346.692075px;}
.ya0{bottom:349.679544px;}
.y6e{bottom:354.173207px;}
.y22{bottom:354.304974px;}
.y26c{bottom:358.646925px;}
.y191{bottom:360.141306px;}
.y12b{bottom:360.141761px;}
.y108{bottom:360.142313px;}
.y14c{bottom:360.146887px;}
.y22c{bottom:361.635637px;}
.y3a{bottom:362.086048px;}
.yd7{bottom:363.123568px;}
.y20c{bottom:364.018031px;}
.y1d6{bottom:364.018445px;}
.y9f{bottom:369.854119px;}
.y6d{bottom:373.599629px;}
.y26b{bottom:374.187035px;}
.y21{bottom:374.479549px;}
.y22b{bottom:376.579200px;}
.y190{bottom:379.567728px;}
.y12a{bottom:379.568183px;}
.y107{bottom:379.568735px;}
.y14b{bottom:379.573309px;}
.y39{bottom:381.660113px;}
.yd6{bottom:382.849535px;}
.yd5{bottom:383.146241px;}
.y20b{bottom:383.742579px;}
.y1d5{bottom:383.742993px;}
.y26a{bottom:389.728340px;}
.y9e{bottom:390.028695px;}
.y22a{bottom:391.522762px;}
.y6c{bottom:393.026052px;}
.y20{bottom:394.654124px;}
.y18f{bottom:398.994150px;}
.y129{bottom:398.994606px;}
.y106{bottom:398.995158px;}
.y14a{bottom:398.999731px;}
.y38{bottom:401.238438px;}
.yd4{bottom:402.873628px;}
.y20a{bottom:403.469966px;}
.y1d4{bottom:403.470380px;}
.y269{bottom:405.868582px;}
.y229{bottom:406.466325px;}
.y9d{bottom:410.197649px;}
.y6b{bottom:412.452474px;}
.y1f{bottom:414.828699px;}
.y128{bottom:418.421028px;}
.y105{bottom:418.421580px;}
.y149{bottom:418.426153px;}
.y37{bottom:420.813923px;}
.y228{bottom:421.409887px;}
.yd3{bottom:422.598175px;}
.y209{bottom:423.195933px;}
.y1d3{bottom:423.196347px;}
.y9c{bottom:430.372225px;}
.y6a{bottom:431.878896px;}
.y1e{bottom:435.003274px;}
.y126{bottom:435.008250px;}
.y227{bottom:436.353450px;}
.y268{bottom:437.547740px;}
.y127{bottom:437.847450px;}
.y104{bottom:437.848002px;}
.y125{bottom:437.850406px;}
.y148{bottom:437.852576px;}
.y36{bottom:440.240345px;}
.yd2{bottom:442.325562px;}
.y208{bottom:442.920480px;}
.y1d2{bottom:442.920895px;}
.y17f{bottom:446.066571px;}
.y9b{bottom:450.546800px;}
.y226{bottom:451.297012px;}
.y69{bottom:451.305318px;}
.y267{bottom:453.090240px;}
.y1d{bottom:455.177849px;}
.y103{bottom:457.274424px;}
.y124{bottom:457.276828px;}
.y147{bottom:457.278998px;}
.y17e{bottom:459.515700px;}
.y35{bottom:459.666767px;}
.yd1{bottom:462.051530px;}
.y207{bottom:462.647867px;}
.y1d1{bottom:462.648282px;}
.y17d{bottom:464.895450px;}
.y225{bottom:466.240575px;}
.y266{bottom:468.631545px;}
.y9a{bottom:470.721375px;}
.y68{bottom:470.731740px;}
.y1c{bottom:475.352425px;}
.y17c{bottom:475.653471px;}
.y102{bottom:476.700846px;}
.y123{bottom:476.703250px;}
.y146{bottom:476.705420px;}
.y34{bottom:479.093189px;}
.y224{bottom:481.184138px;}
.yd0{bottom:481.776077px;}
.y206{bottom:482.372415px;}
.y1d0{bottom:482.372829px;}
.y265{bottom:484.172850px;}
.y17b{bottom:489.102600px;}
.y67{bottom:490.158162px;}
.y99{bottom:490.895950px;}
.y1b{bottom:495.527000px;}
.y101{bottom:496.127269px;}
.y223{bottom:496.127700px;}
.y122{bottom:496.129673px;}
.y145{bottom:496.131842px;}
.y33{bottom:498.519611px;}
.y264{bottom:500.310702px;}
.ycf{bottom:501.503464px;}
.y205{bottom:502.098382px;}
.y1cf{bottom:502.098797px;}
.y66{bottom:509.584585px;}
.y98{bottom:511.070525px;}
.y222{bottom:511.071262px;}
.y17a{bottom:514.061081px;}
.y100{bottom:515.553691px;}
.y121{bottom:515.556095px;}
.y144{bottom:515.558264px;}
.y1a{bottom:515.701575px;}
.y263{bottom:515.853202px;}
.y32{bottom:517.946033px;}
.yce{bottom:521.228012px;}
.y204{bottom:521.824350px;}
.y1ce{bottom:521.824764px;}
.y221{bottom:526.014825px;}
.y96{bottom:528.405750px;}
.y65{bottom:529.011007px;}
.y97{bottom:531.245100px;}
.y95{bottom:531.265403px;}
.y262{bottom:531.394507px;}
.y179{bottom:533.487713px;}
.yff{bottom:534.980113px;}
.y120{bottom:534.982517px;}
.y143{bottom:534.984687px;}
.y19{bottom:535.876150px;}
.y31{bottom:537.372456px;}
.ycd{bottom:540.955399px;}
.y220{bottom:540.958387px;}
.y203{bottom:541.548897px;}
.y1cd{bottom:541.549311px;}
.y261{bottom:547.532360px;}
.y64{bottom:548.437429px;}
.y94{bottom:551.439978px;}
.y178{bottom:552.914344px;}
.yfe{bottom:554.406535px;}
.y11f{bottom:554.408939px;}
.y21f{bottom:555.901950px;}
.y18{bottom:556.050725px;}
.y30{bottom:556.798878px;}
.ycc{bottom:560.681366px;}
.y202{bottom:561.276284px;}
.y1cc{bottom:561.276698px;}
.y260{bottom:563.073665px;}
.y142{bottom:564.872473px;}
.y63{bottom:567.863851px;}
.y93{bottom:571.614553px;}
.y177{bottom:572.340975px;}
.yfd{bottom:573.832957px;}
.y11e{bottom:573.835361px;}
.y17{bottom:576.225300px;}
.y25f{bottom:578.616165px;}
.ycb{bottom:580.405914px;}
.y201{bottom:581.000832px;}
.y1cb{bottom:581.001246px;}
.y21e{bottom:581.306100px;}
.y62{bottom:587.290273px;}
.y176{bottom:591.767606px;}
.y92{bottom:591.789128px;}
.yfc{bottom:593.259379px;}
.y11d{bottom:593.261783px;}
.y25e{bottom:594.755212px;}
.yca{bottom:600.133301px;}
.y200{bottom:600.728219px;}
.y1ca{bottom:600.728633px;}
.y61{bottom:606.716695px;}
.y16{bottom:609.099906px;}
.y25d{bottom:610.295322px;}
.y175{bottom:611.194237px;}
.y91{bottom:611.811801px;}
.yfb{bottom:612.685802px;}
.y11c{bottom:612.688206px;}
.y141{bottom:612.691795px;}
.yc9{bottom:619.857848px;}
.y1ff{bottom:620.454186px;}
.y1c9{bottom:620.454600px;}
.y15{bottom:625.537975px;}
.y25c{bottom:625.836627px;}
.y60{bottom:626.143118px;}
.y174{bottom:630.620869px;}
.y90{bottom:631.835894px;}
.yfa{bottom:632.112224px;}
.y11b{bottom:632.114628px;}
.y140{bottom:632.118217px;}
.y21d{bottom:637.345056px;}
.yc8{bottom:639.585235px;}
.y1fe{bottom:640.178734px;}
.y1c8{bottom:640.179148px;}
.y14{bottom:641.976045px;}
.y25b{bottom:641.976870px;}
.y5f{bottom:645.569540px;}
.y173{bottom:650.047500px;}
.yf9{bottom:651.538646px;}
.y11a{bottom:651.541050px;}
.y13f{bottom:651.544639px;}
.y8f{bottom:651.861407px;}
.y21c{bottom:656.771478px;}
.y25a{bottom:657.518175px;}
.y13{bottom:658.414114px;}
.yc7{bottom:659.311202px;}
.y1fd{bottom:659.906121px;}
.y1c7{bottom:659.906535px;}
.y5e{bottom:664.995962px;}
.y1b5{bottom:665.001552px;}
.y172{bottom:669.474131px;}
.yf8{bottom:670.965068px;}
.y8e{bottom:671.885499px;}
.y259{bottom:673.656027px;}
.y12{bottom:674.852183px;}
.y21b{bottom:676.197900px;}
.yc6{bottom:679.035750px;}
.yc3{bottom:679.331479px;}
.y1fc{bottom:679.630668px;}
.y1c6{bottom:679.631082px;}
.y5d{bottom:684.422384px;}
.y1b4{bottom:684.427974px;}
.yc5{bottom:684.715486px;}
.yc4{bottom:685.013100px;}
.y119{bottom:688.900697px;}
.y171{bottom:688.900763px;}
.y258{bottom:689.198527px;}
.yf7{bottom:690.391490px;}
.y11{bottom:691.290253px;}
.y8d{bottom:691.909592px;}
.yc2{bottom:699.056027px;}
.y1fb{bottom:699.358055px;}
.y1c5{bottom:699.358469px;}
.y5c{bottom:703.848806px;}
.y1b3{bottom:703.854396px;}
.y257{bottom:704.739832px;}
.y118{bottom:705.338431px;}
.y21a{bottom:706.085100px;}
.y10{bottom:707.728322px;}
.y170{bottom:708.327394px;}
.yf6{bottom:709.817913px;}
.y8c{bottom:711.932265px;}
.yc1{bottom:718.781994px;}
.y1fa{bottom:719.084022px;}
.y1c4{bottom:719.084437px;}
.y256{bottom:720.281137px;}
.y117{bottom:721.776166px;}
.y5b{bottom:723.275229px;}
.y1b2{bottom:723.280818px;}
.yf{bottom:724.166392px;}
.y16f{bottom:727.754025px;}
.yf5{bottom:729.244335px;}
.y8b{bottom:731.957777px;}
.y255{bottom:736.418990px;}
.y116{bottom:738.213900px;}
.yc0{bottom:738.507961px;}
.y1f9{bottom:738.808570px;}
.y1c3{bottom:738.808984px;}
.ye{bottom:740.604461px;}
.y5a{bottom:742.701651px;}
.y1b1{bottom:742.707240px;}
.y16e{bottom:747.180656px;}
.yf4{bottom:748.670757px;}
.y254{bottom:751.961490px;}
.y8a{bottom:751.983290px;}
.yd{bottom:757.042531px;}
.ybf{bottom:758.232509px;}
.y1f8{bottom:758.535957px;}
.y1c2{bottom:758.536371px;}
.y59{bottom:762.128073px;}
.y1b0{bottom:762.133662px;}
.y16d{bottom:766.607287px;}
.y253{bottom:767.501600px;}
.yf3{bottom:768.097179px;}
.y89{bottom:772.005963px;}
.yc{bottom:773.479181px;}
.ybe{bottom:777.958476px;}
.y1f7{bottom:778.260505px;}
.y1c1{bottom:778.260919px;}
.y58{bottom:781.554495px;}
.y1af{bottom:781.560085px;}
.y252{bottom:783.044100px;}
.y16c{bottom:786.033919px;}
.yf2{bottom:787.523601px;}
.yb{bottom:789.917250px;}
.y88{bottom:792.030056px;}
.ybd{bottom:797.684443px;}
.y1f6{bottom:797.987891px;}
.y1c0{bottom:797.988306px;}
.y251{bottom:799.181952px;}
.y57{bottom:800.980917px;}
.y1ae{bottom:800.986507px;}
.y16b{bottom:805.460550px;}
.yf1{bottom:806.950023px;}
.y87{bottom:812.054148px;}
.y250{bottom:814.724452px;}
.ybc{bottom:817.411830px;}
.y1f5{bottom:817.713859px;}
.y1bf{bottom:817.714273px;}
.y56{bottom:820.407339px;}
.y1ad{bottom:820.412929px;}
.ya{bottom:822.793087px;}
.y16a{bottom:824.887181px;}
.yf0{bottom:826.376446px;}
.y24f{bottom:830.264562px;}
.y86{bottom:832.076821px;}
.ybb{bottom:837.137797px;}
.y1f4{bottom:837.439826px;}
.y1be{bottom:837.440240px;}
.y9{bottom:837.736650px;}
.y55{bottom:839.833762px;}
.y1ac{bottom:839.839351px;}
.y8{bottom:842.518650px;}
.y169{bottom:844.313812px;}
.yef{bottom:845.802868px;}
.y24e{bottom:846.404805px;}
.y85{bottom:852.102334px;}
.yba{bottom:856.863765px;}
.y6{bottom:857.163450px;}
.y1f3{bottom:857.164374px;}
.y1bd{bottom:857.164788px;}
.y54{bottom:859.260184px;}
.y1ab{bottom:859.265773px;}
.y24d{bottom:861.944915px;}
.y7{bottom:862.544700px;}
.y168{bottom:863.740444px;}
.yee{bottom:865.229290px;}
.y84{bottom:872.125007px;}
.yb9{bottom:876.588312px;}
.y1f2{bottom:876.890341px;}
.y1bc{bottom:876.890755px;}
.y24c{bottom:877.487415px;}
.y53{bottom:878.686606px;}
.y1aa{bottom:878.692195px;}
.y167{bottom:883.167075px;}
.yed{bottom:884.655712px;}
.y83{bottom:892.150519px;}
.y24b{bottom:893.626462px;}
.yb8{bottom:896.314280px;}
.y1f1{bottom:896.617728px;}
.y1bb{bottom:896.618142px;}
.y52{bottom:898.113028px;}
.y1a9{bottom:898.118618px;}
.y166{bottom:902.593706px;}
.yec{bottom:904.082134px;}
.y5{bottom:906.477952px;}
.y24a{bottom:909.167767px;}
.y82{bottom:912.174612px;}
.yb7{bottom:916.041667px;}
.y1f0{bottom:916.191793px;}
.y1ba{bottom:916.192207px;}
.y51{bottom:917.539450px;}
.y1a8{bottom:917.545040px;}
.y165{bottom:922.020338px;}
.yeb{bottom:923.508557px;}
.y249{bottom:924.707877px;}
.y81{bottom:932.197285px;}
.yb6{bottom:935.615732px;}
.y1ef{bottom:935.770117px;}
.y1b9{bottom:935.770531px;}
.y50{bottom:936.965873px;}
.y1a7{bottom:936.971462px;}
.y248{bottom:940.846925px;}
.y164{bottom:941.446969px;}
.y4{bottom:942.342326px;}
.yea{bottom:942.934979px;}
.y286{bottom:947.422050px;}
.y80{bottom:952.222797px;}
.yb5{bottom:955.194056px;}
.y1ee{bottom:955.344183px;}
.y1b8{bottom:955.344597px;}
.y247{bottom:956.389425px;}
.y4f{bottom:956.392295px;}
.y1a6{bottom:956.397884px;}
.y163{bottom:960.873600px;}
.ye9{bottom:962.361401px;}
.y285{bottom:962.365612px;}
.y246{bottom:971.930730px;}
.y7f{bottom:972.245470px;}
.yb4{bottom:974.768121px;}
.y1ed{bottom:974.922507px;}
.y1b7{bottom:974.922921px;}
.y4e{bottom:975.818717px;}
.y1a5{bottom:975.824306px;}
.y284{bottom:977.309175px;}
.y3{bottom:978.206700px;}
.y15d{bottom:983.288850px;}
.y245{bottom:988.069777px;}
.y283{bottom:992.252737px;}
.y7e{bottom:992.270983px;}
.yb3{bottom:994.346445px;}
.y1ec{bottom:994.496572px;}
.y1b6{bottom:994.496986px;}
.y4d{bottom:995.245139px;}
.y1a4{bottom:995.250729px;}
.ye8{bottom:997.626802px;}
.y160{bottom:998.232412px;}
.y244{bottom:1003.609887px;}
.y161{bottom:1005.704194px;}
.y282{bottom:1007.196300px;}
.y162{bottom:1011.681750px;}
.y7d{bottom:1012.295076px;}
.y15f{bottom:1013.175975px;}
.yb2{bottom:1013.923350px;}
.y1eb{bottom:1014.070637px;}
.yb0{bottom:1014.071051px;}
.y4c{bottom:1014.671561px;}
.y1a3{bottom:1014.677151px;}
.y243{bottom:1019.002952px;}
.yb1{bottom:1019.600400px;}
.y281{bottom:1022.139862px;}
.y15e{bottom:1028.119537px;}
.y7c{bottom:1032.317749px;}
.y1ea{bottom:1033.648961px;}
.yaf{bottom:1033.649376px;}
.y4b{bottom:1034.097983px;}
.y1a2{bottom:1034.103573px;}
.y242{bottom:1034.843128px;}
.y280{bottom:1037.083425px;}
.y241{bottom:1050.233802px;}
.y27f{bottom:1052.026987px;}
.y7b{bottom:1052.343261px;}
.y1e9{bottom:1053.223027px;}
.yae{bottom:1053.223441px;}
.ye7{bottom:1053.516806px;}
.y4a{bottom:1053.524406px;}
.y1a1{bottom:1053.529995px;}
.y15c{bottom:1062.490531px;}
.y240{bottom:1065.625671px;}
.y27e{bottom:1066.970550px;}
.y7a{bottom:1072.365934px;}
.y1e8{bottom:1072.801351px;}
.yad{bottom:1072.801765px;}
.ye6{bottom:1072.943229px;}
.y49{bottom:1072.950828px;}
.y1a0{bottom:1072.956417px;}
.y2{bottom:1076.238150px;}
.y15b{bottom:1078.928266px;}
.y23f{bottom:1081.467043px;}
.y27d{bottom:1081.914113px;}
.ye5{bottom:1092.369651px;}
.y1e7{bottom:1092.376836px;}
.y48{bottom:1092.377250px;}
.y19f{bottom:1092.382839px;}
.y79{bottom:1092.391446px;}
.y15a{bottom:1095.366000px;}
.y27c{bottom:1096.857675px;}
.y23e{bottom:1096.858912px;}
.h6{height:20.278071px;}
.h14{height:21.586435px;}
.h5{height:22.113648px;}
.hc{height:22.286081px;}
.h15{height:22.582282px;}
.h11{height:24.229465px;}
.h13{height:30.837701px;}
.h12{height:30.879544px;}
.ha{height:31.590861px;}
.h9{height:32.260336px;}
.h1{height:34.286510px;}
.h10{height:35.242898px;}
.h7{height:36.868757px;}
.h16{height:39.917522px;}
.hf{height:39.971320px;}
.h4{height:40.616886px;}
.h8{height:40.715419px;}
.hd{height:40.732221px;}
.he{height:41.477641px;}
.hb{height:42.135064px;}
.h2{height:52.864568px;}
.h3{height:94.288225px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:85.178550px;}
.x9{left:88.316700px;}
.x36{left:90.707550px;}
.x2d{left:94.518225px;}
.xd{left:95.639100px;}
.xc{left:99.375000px;}
.x1d{left:102.513150px;}
.x37{left:104.903934px;}
.x2e{left:108.266400px;}
.x1e{left:113.646150px;}
.x10{left:126.497318px;}
.x1c{left:134.641019px;}
.x4{left:188.214600px;}
.x5{left:196.134750px;}
.x23{left:200.319000px;}
.x19{left:205.922850px;}
.x24{left:211.452000px;}
.x34{left:234.689250px;}
.x18{left:243.207150px;}
.x35{left:247.465950px;}
.x2a{left:265.843180px;}
.x28{left:269.880333px;}
.x29{left:272.046552px;}
.x1b{left:279.520050px;}
.x27{left:283.029473px;}
.x6{left:300.739950px;}
.x7{left:308.510550px;}
.x1a{left:316.803442px;}
.x26{left:328.759200px;}
.x2c{left:356.554350px;}
.x1f{left:361.261500px;}
.x2b{left:365.742689px;}
.x20{left:371.944800px;}
.x21{left:380.090400px;}
.x22{left:391.221900px;}
.x8{left:397.649250px;}
.x32{left:412.516500px;}
.xa{left:415.581600px;}
.xb{left:418.794450px;}
.x33{left:423.500100px;}
.xf{left:425.892600px;}
.x25{left:435.904800px;}
.xe{left:440.089050px;}
.x11{left:470.724319px;}
.x12{left:484.920769px;}
.x38{left:490.900936px;}
.x1{left:495.903450px;}
.x17{left:501.880800px;}
.x2{left:644.965800px;}
.x2f{left:677.094600px;}
.x30{left:690.319650px;}
.x31{left:793.878750px;}
.x13{left:800.751300px;}
.x14{left:804.860850px;}
.x15{left:822.196950px;}
.x16{left:826.231800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-5.844613pt;}
.ls7{letter-spacing:-5.832924pt;}
.ls2d{letter-spacing:-3.725148pt;}
.ls2a{letter-spacing:-3.190100pt;}
.ls2c{letter-spacing:-2.927623pt;}
.ls3d{letter-spacing:-0.535577pt;}
.ls11{letter-spacing:-0.535048pt;}
.lsb{letter-spacing:-0.005048pt;}
.ls9{letter-spacing:-0.004782pt;}
.ls6{letter-spacing:-0.004251pt;}
.lsc{letter-spacing:-0.003719pt;}
.lsa{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.002763pt;}
.ls3c{letter-spacing:0.045429pt;}
.ls18{letter-spacing:0.090857pt;}
.ls14{letter-spacing:0.095905pt;}
.ls16{letter-spacing:0.100953pt;}
.ls30{letter-spacing:0.196857pt;}
.ls39{letter-spacing:0.530001pt;}
.ls15{letter-spacing:6.309533pt;}
.ls3b{letter-spacing:6.375152pt;}
.ls1f{letter-spacing:6.380200pt;}
.ls34{letter-spacing:8.232679pt;}
.ls32{letter-spacing:8.237727pt;}
.ls13{letter-spacing:8.697061pt;}
.ls12{letter-spacing:8.712204pt;}
.ls23{letter-spacing:8.767728pt;}
.lse{letter-spacing:10.625254pt;}
.ls36{letter-spacing:10.902823pt;}
.ls28{letter-spacing:11.044218pt;}
.ls1d{letter-spacing:11.069445pt;}
.ls21{letter-spacing:11.074493pt;}
.ls1c{letter-spacing:11.079541pt;}
.ls1b{letter-spacing:11.104779pt;}
.ls3{letter-spacing:11.109826pt;}
.ls26{letter-spacing:11.135064pt;}
.ls29{letter-spacing:11.136853pt;}
.ls25{letter-spacing:11.145160pt;}
.ls31{letter-spacing:11.150207pt;}
.ls37{letter-spacing:11.157860pt;}
.ls4{letter-spacing:11.160303pt;}
.ls27{letter-spacing:11.165350pt;}
.lsf{letter-spacing:11.962875pt;}
.ls5{letter-spacing:12.853924pt;}
.ls2{letter-spacing:14.875084pt;}
.ls3e{letter-spacing:14.877147pt;}
.ls33{letter-spacing:15.137832pt;}
.ls22{letter-spacing:15.410404pt;}
.ls38{letter-spacing:16.736907pt;}
.ls2e{letter-spacing:16.741689pt;}
.ls1a{letter-spacing:16.838883pt;}
.ls20{letter-spacing:18.862981pt;}
.ls3a{letter-spacing:19.120410pt;}
.ls10{letter-spacing:19.761458pt;}
.ls17{letter-spacing:20.185459pt;}
.ls1e{letter-spacing:20.715460pt;}
.ls0{letter-spacing:21.121298pt;}
.lsd{letter-spacing:21.125548pt;}
.ls1{letter-spacing:21.389086pt;}
.ls24{letter-spacing:21.785557pt;}
.ls2b{letter-spacing:146.695114pt;}
.ls2f{letter-spacing:222.575098pt;}
.ls19{letter-spacing:461.671078pt;}
.ws69{word-spacing:-31.795000pt;}
.wsdd{word-spacing:-24.653557pt;}
.ws6e{word-spacing:-16.803549pt;}
.ws83{word-spacing:-11.609541pt;}
.ws44{word-spacing:-11.604494pt;}
.wsb2{word-spacing:-8.496976pt;}
.wsaf{word-spacing:-7.965649pt;}
.ws74{word-spacing:-7.884393pt;}
.ws2{word-spacing:-7.249451pt;}
.wsac{word-spacing:-3.896768pt;}
.wsb3{word-spacing:-3.391989pt;}
.wscc{word-spacing:-3.128451pt;}
.ws49{word-spacing:-3.104290pt;}
.ws80{word-spacing:-3.099243pt;}
.ws86{word-spacing:-3.084100pt;}
.ws73{word-spacing:-2.983147pt;}
.ws76{word-spacing:-2.978100pt;}
.wsc7{word-spacing:-2.860663pt;}
.ws81{word-spacing:-2.569242pt;}
.wsb8{word-spacing:-2.065798pt;}
.ws55{word-spacing:-2.039241pt;}
.ws4e{word-spacing:-1.776765pt;}
.ws46{word-spacing:-1.771717pt;}
.ws52{word-spacing:-1.711145pt;}
.wsdc{word-spacing:-1.534471pt;}
.ws45{word-spacing:-1.509240pt;}
.wsa7{word-spacing:-1.504193pt;}
.ws10{word-spacing:-1.241716pt;}
.wsc5{word-spacing:-1.003145pt;}
.ws1e{word-spacing:-0.974192pt;}
.wsd8{word-spacing:-0.739607pt;}
.ws7f{word-spacing:-0.711715pt;}
.wsad{word-spacing:-0.706668pt;}
.wsba{word-spacing:-0.471818pt;}
.ws54{word-spacing:-0.469429pt;}
.ws18{word-spacing:-0.444191pt;}
.wsd7{word-spacing:-0.208280pt;}
.ws48{word-spacing:-0.206953pt;}
.ws5e{word-spacing:-0.176667pt;}
.ws47{word-spacing:-0.065619pt;}
.ws4a{word-spacing:-0.050476pt;}
.ws5f{word-spacing:-0.045163pt;}
.ws39{word-spacing:0.000000pt;}
.wse1{word-spacing:0.059509pt;}
.ws3c{word-spacing:0.080762pt;}
.ws66{word-spacing:0.085810pt;}
.ws6d{word-spacing:0.353334pt;}
.ws62{word-spacing:0.590572pt;}
.wsb6{word-spacing:0.590835pt;}
.ws5b{word-spacing:0.615810pt;}
.ws6a{word-spacing:0.620858pt;}
.wsa1{word-spacing:0.812935pt;}
.ws3b{word-spacing:0.854373pt;}
.ws51{word-spacing:0.878287pt;}
.ws3e{word-spacing:0.883335pt;}
.wsa0{word-spacing:1.095072pt;}
.wsc1{word-spacing:1.122162pt;}
.wsa8{word-spacing:1.145811pt;}
.ws57{word-spacing:1.150859pt;}
.ws2f{word-spacing:1.413335pt;}
.ws91{word-spacing:1.470712pt;}
.ws8c{word-spacing:1.611525pt;}
.wsb7{word-spacing:1.653489pt;}
.ws43{word-spacing:1.680860pt;}
.wse5{word-spacing:1.921277pt;}
.ws9e{word-spacing:1.934415pt;}
.wsaa{word-spacing:1.943336pt;}
.ws36{word-spacing:1.948384pt;}
.ws24{word-spacing:2.108847pt;}
.wsa3{word-spacing:2.142324pt;}
.wscf{word-spacing:2.184815pt;}
.ws14{word-spacing:2.210860pt;}
.ws8e{word-spacing:2.269828pt;}
.ws29{word-spacing:2.376637pt;}
.ws8d{word-spacing:2.405333pt;}
.wse0{word-spacing:2.448353pt;}
.wse{word-spacing:2.478385pt;}
.wsb9{word-spacing:2.716142pt;}
.ws15{word-spacing:2.740861pt;}
.ws8f{word-spacing:2.796904pt;}
.wscd{word-spacing:2.979680pt;}
.wsd4{word-spacing:2.983931pt;}
.ws1f{word-spacing:3.008385pt;}
.ws28{word-spacing:3.172569pt;}
.wsca{word-spacing:3.247469pt;}
.ws23{word-spacing:3.275910pt;}
.ws67{word-spacing:3.381910pt;}
.ws85{word-spacing:3.386957pt;}
.ws88{word-spacing:3.392005pt;}
.wscb{word-spacing:3.511007pt;}
.wsc6{word-spacing:3.515257pt;}
.ws1c{word-spacing:3.538386pt;}
.wsd5{word-spacing:3.655527pt;}
.ws7e{word-spacing:3.734721pt;}
.wsbe{word-spacing:3.778795pt;}
.wsd{word-spacing:3.805911pt;}
.wsda{word-spacing:3.863808pt;}
.ws2b{word-spacing:3.968500pt;}
.wsb1{word-spacing:3.987075pt;}
.ws98{word-spacing:4.002512pt;}
.ws95{word-spacing:4.009413pt;}
.ws94{word-spacing:4.013132pt;}
.wsc3{word-spacing:4.038083pt;}
.wsbf{word-spacing:4.046584pt;}
.ws59{word-spacing:4.068387pt;}
.ws16{word-spacing:4.073435pt;}
.wsc2{word-spacing:4.191105pt;}
.ws2a{word-spacing:4.232571pt;}
.ws25{word-spacing:4.236290pt;}
.ws63{word-spacing:4.265245pt;}
.wsbc{word-spacing:4.310122pt;}
.ws35{word-spacing:4.335911pt;}
.wsa{word-spacing:4.382382pt;}
.ws27{word-spacing:4.500361pt;}
.wsce{word-spacing:4.526903pt;}
.wsc9{word-spacing:4.573660pt;}
.wsb5{word-spacing:4.577911pt;}
.wse4{word-spacing:4.586412pt;}
.ws4d{word-spacing:4.598388pt;}
.ws1a{word-spacing:4.603436pt;}
.ws9{word-spacing:4.650171pt;}
.wsa5{word-spacing:4.801101pt;}
.ws0{word-spacing:4.841449pt;}
.ws3d{word-spacing:4.865912pt;}
.ws60{word-spacing:4.870960pt;}
.wsde{word-spacing:5.104987pt;}
.ws21{word-spacing:5.133436pt;}
.wsb{word-spacing:5.181498pt;}
.ws6c{word-spacing:5.279817pt;}
.wsa4{word-spacing:5.331900pt;}
.wsb4{word-spacing:5.372775pt;}
.ws8b{word-spacing:5.395913pt;}
.ws11{word-spacing:5.400961pt;}
.ws26{word-spacing:5.564083pt;}
.wsc4{word-spacing:5.636313pt;}
.ws30{word-spacing:5.663437pt;}
.ws58{word-spacing:5.668485pt;}
.ws78{word-spacing:5.862699pt;}
.wsdf{word-spacing:5.904102pt;}
.ws1b{word-spacing:5.930961pt;}
.ws8{word-spacing:6.125708pt;}
.wsd1{word-spacing:6.167640pt;}
.ws53{word-spacing:6.193438pt;}
.ws32{word-spacing:6.198486pt;}
.ws9d{word-spacing:6.393498pt;}
.wsbb{word-spacing:6.435429pt;}
.ws34{word-spacing:6.460962pt;}
.wsd0{word-spacing:6.698967pt;}
.wsd3{word-spacing:6.703217pt;}
.ws6b{word-spacing:6.703248pt;}
.ws2d{word-spacing:6.728486pt;}
.ws7d{word-spacing:6.924297pt;}
.wsbd{word-spacing:6.966755pt;}
.ws71{word-spacing:6.990963pt;}
.ws41{word-spacing:6.996011pt;}
.wsd2{word-spacing:7.230293pt;}
.ws19{word-spacing:7.258487pt;}
.wse3{word-spacing:7.498082pt;}
.ws13{word-spacing:7.526011pt;}
.ws6{word-spacing:7.761143pt;}
.wsae{word-spacing:7.761620pt;}
.ws5c{word-spacing:7.788488pt;}
.ws89{word-spacing:7.793536pt;}
.ws7{word-spacing:7.981113pt;}
.ws97{word-spacing:7.985895pt;}
.ws61{word-spacing:8.020679pt;}
.wsd6{word-spacing:8.029409pt;}
.ws1d{word-spacing:8.056012pt;}
.ws99{word-spacing:8.253686pt;}
.wsd9{word-spacing:8.292947pt;}
.ws3f{word-spacing:8.323536pt;}
.ws8a{word-spacing:8.333632pt;}
.ws7c{word-spacing:8.406709pt;}
.ws96{word-spacing:8.516695pt;}
.wsc0{word-spacing:8.560735pt;}
.ws56{word-spacing:8.586013pt;}
.ws9f{word-spacing:8.784485pt;}
.wsb0{word-spacing:8.828524pt;}
.ws2e{word-spacing:8.853537pt;}
.ws50{word-spacing:9.116014pt;}
.ws20{word-spacing:9.121061pt;}
.ws7a{word-spacing:9.200517pt;}
.ws7b{word-spacing:9.267464pt;}
.ws37{word-spacing:9.383538pt;}
.ws79{word-spacing:9.583075pt;}
.wsdb{word-spacing:9.623389pt;}
.wsa6{word-spacing:9.640967pt;}
.ws84{word-spacing:9.646015pt;}
.ws22{word-spacing:9.651062pt;}
.wsc8{word-spacing:9.886927pt;}
.ws75{word-spacing:9.913539pt;}
.ws65{word-spacing:9.918586pt;}
.ws70{word-spacing:10.049825pt;}
.ws9c{word-spacing:10.113874pt;}
.wse2{word-spacing:10.154715pt;}
.ws4c{word-spacing:10.181063pt;}
.ws40{word-spacing:10.448587pt;}
.ws4b{word-spacing:10.711064pt;}
.wsa2{word-spacing:10.907681pt;}
.ws68{word-spacing:10.953350pt;}
.ws38{word-spacing:10.978588pt;}
.ws9b{word-spacing:11.175472pt;}
.wsa9{word-spacing:11.246112pt;}
.ws3a{word-spacing:11.446902pt;}
.ws5a{word-spacing:11.508589pt;}
.ws9a{word-spacing:11.706271pt;}
.ws33{word-spacing:11.776113pt;}
.ws64{word-spacing:12.013351pt;}
.wsab{word-spacing:12.038590pt;}
.ws31{word-spacing:12.306114pt;}
.ws1{word-spacing:12.756091pt;}
.ws5d{word-spacing:12.836115pt;}
.ws77{word-spacing:13.298668pt;}
.ws42{word-spacing:13.371163pt;}
.ws2c{word-spacing:13.633640pt;}
.ws72{word-spacing:13.901164pt;}
.ws82{word-spacing:14.966213pt;}
.ws3{word-spacing:18.784587pt;}
.ws5{word-spacing:19.076818pt;}
.ws4{word-spacing:19.322292pt;}
.ws93{word-spacing:43.125361pt;}
.wsf{word-spacing:50.052266pt;}
.ws90{word-spacing:51.032864pt;}
.ws17{word-spacing:52.162174pt;}
.wsc{word-spacing:55.125131pt;}
.ws12{word-spacing:59.294470pt;}
.ws4f{word-spacing:60.485710pt;}
.ws6f{word-spacing:93.032807pt;}
.ws92{word-spacing:110.022876pt;}
.ws87{word-spacing:180.866559pt;}
._1b{margin-left:-1275.970016pt;}
._27{margin-left:-1256.680578pt;}
._3c{margin-left:-1190.374751pt;}
._26{margin-left:-1169.047604pt;}
._33{margin-left:-1115.616351pt;}
._34{margin-left:-1105.357245pt;}
._29{margin-left:-1013.122624pt;}
._3a{margin-left:-795.102153pt;}
._35{margin-left:-677.390432pt;}
._39{margin-left:-666.170625pt;}
._30{margin-left:-520.990786pt;}
._2c{margin-left:-463.657845pt;}
._40{margin-left:-371.220536pt;}
._2e{margin-left:-351.642912pt;}
._3e{margin-left:-291.849533pt;}
._3f{margin-left:-266.047093pt;}
._c{margin-left:-178.216555pt;}
._43{margin-left:-146.769428pt;}
._22{margin-left:-20.126260pt;}
._4a{margin-left:-15.944051pt;}
._4b{margin-left:-14.877147pt;}
._5{margin-left:-5.245825pt;}
._1c{margin-left:-4.240006pt;}
._f{margin-left:-2.939716pt;}
._3{margin-left:-1.905344pt;}
._18{margin-left:-0.984557pt;}
._37{width:0.889677pt;}
._4{width:1.846898pt;}
._2{width:2.910617pt;}
._14{width:4.254887pt;}
._19{width:6.808649pt;}
._12{width:8.334231pt;}
._a{width:9.289961pt;}
._17{width:10.612440pt;}
._9{width:11.965595pt;}
._8{width:13.557925pt;}
._16{width:14.570500pt;}
._7{width:15.460550pt;}
._38{width:16.390451pt;}
._e{width:17.298750pt;}
._6{width:18.601876pt;}
._49{width:19.563306pt;}
._d{width:20.452983pt;}
._10{width:22.053081pt;}
._11{width:23.113083pt;}
._32{width:24.183179pt;}
._15{width:25.243181pt;}
._2a{width:27.095660pt;}
._1{width:40.900604pt;}
._0{width:43.003455pt;}
._13{width:49.146918pt;}
._1a{width:60.505901pt;}
._41{width:61.618164pt;}
._36{width:64.652279pt;}
._48{width:66.775476pt;}
._24{width:68.269151pt;}
._1d{width:70.212487pt;}
._21{width:71.242736pt;}
._1f{width:73.554549pt;}
._3d{width:102.827066pt;}
._23{width:123.212567pt;}
._42{width:134.672182pt;}
._2b{width:136.447444pt;}
._25{width:145.015595pt;}
._b{width:147.203936pt;}
._1e{width:159.722051pt;}
._20{width:162.962093pt;}
._31{width:175.293979pt;}
._45{width:186.788952pt;}
._28{width:199.752058pt;}
._3b{width:213.196608pt;}
._2f{width:232.741018pt;}
._2d{width:247.739515pt;}
._46{width:606.613530pt;}
._44{width:630.000405pt;}
._47{width:653.378778pt;}
.fs5{font-size:23.378667pt;}
.fs4{font-size:26.035200pt;}
.fs8{font-size:27.628800pt;}
.fsa{font-size:29.222933pt;}
.fs7{font-size:37.193067pt;}
.fs0{font-size:42.506133pt;}
.fs9{font-size:45.162667pt;}
.fs3{font-size:47.819733pt;}
.fs6{font-size:50.476267pt;}
.fs1{font-size:63.759467pt;}
.fs2{font-size:116.892267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:55.789467pt;}
.y219{bottom:95.627072pt;}
.ye4{bottom:95.630781pt;}
.yac{bottom:95.630794pt;}
.y1e6{bottom:95.637168pt;}
.y115{bottom:95.639674pt;}
.y2f{bottom:95.639730pt;}
.y18e{bottom:95.639789pt;}
.y23d{bottom:95.640067pt;}
.y13e{bottom:95.641156pt;}
.y19e{bottom:95.642504pt;}
.y47{bottom:95.647400pt;}
.y159{bottom:95.647465pt;}
.y78{bottom:95.650155pt;}
.y2e{bottom:107.594511pt;}
.y23c{bottom:108.923233pt;}
.y27b{bottom:109.454560pt;}
.y18d{bottom:110.251108pt;}
.ye3{bottom:112.898712pt;}
.y114{bottom:112.907605pt;}
.y13d{bottom:112.909087pt;}
.y19d{bottom:112.910435pt;}
.y158{bottom:112.915396pt;}
.y77{bottom:112.918086pt;}
.y46{bottom:113.047831pt;}
.y218{bottom:113.161266pt;}
.y1e5{bottom:113.171361pt;}
.yab{bottom:113.563750pt;}
.y2d{bottom:119.549293pt;}
.y23b{bottom:122.206400pt;}
.y27a{bottom:123.269053pt;}
.y18c{bottom:124.862428pt;}
.ye2{bottom:130.166643pt;}
.y113{bottom:130.175536pt;}
.y13c{bottom:130.177018pt;}
.y19c{bottom:130.178366pt;}
.y157{bottom:130.183327pt;}
.y76{bottom:130.186017pt;}
.y45{bottom:130.448262pt;}
.y217{bottom:130.695459pt;}
.y1e4{bottom:130.705554pt;}
.yaa{bottom:131.496705pt;}
.y2c{bottom:135.489311pt;}
.y23a{bottom:135.489567pt;}
.y279{bottom:137.083547pt;}
.y18b{bottom:139.473747pt;}
.ye1{bottom:147.434573pt;}
.y2b{bottom:147.444093pt;}
.y13b{bottom:147.444948pt;}
.y19b{bottom:147.446297pt;}
.y112{bottom:147.447192pt;}
.y156{bottom:147.451258pt;}
.y75{bottom:147.453947pt;}
.y44{bottom:147.848693pt;}
.y216{bottom:148.229652pt;}
.y1e3{bottom:148.239747pt;}
.y239{bottom:148.772733pt;}
.ya9{bottom:149.429661pt;}
.y278{bottom:151.429367pt;}
.y18a{bottom:154.085067pt;}
.y2a{bottom:159.398874pt;}
.y238{bottom:162.055900pt;}
.y13a{bottom:164.712879pt;}
.y19a{bottom:164.714228pt;}
.y111{bottom:164.715123pt;}
.y155{bottom:164.719189pt;}
.y74{bottom:164.721878pt;}
.ye0{bottom:164.968767pt;}
.y277{bottom:165.243860pt;}
.y43{bottom:165.249124pt;}
.y215{bottom:165.763845pt;}
.y1e2{bottom:165.773940pt;}
.y189{bottom:166.305600pt;}
.ya8{bottom:167.362617pt;}
.y188{bottom:168.696814pt;}
.y29{bottom:171.353656pt;}
.y237{bottom:175.339067pt;}
.y276{bottom:179.058353pt;}
.y1e1{bottom:180.784400pt;}
.y186{bottom:180.917200pt;}
.y139{bottom:181.980810pt;}
.y199{bottom:181.982158pt;}
.y110{bottom:181.983054pt;}
.y154{bottom:181.987120pt;}
.ydf{bottom:182.501698pt;}
.y42{bottom:182.649555pt;}
.y214{bottom:183.298038pt;}
.y1e0{bottom:183.307807pt;}
.y187{bottom:183.308133pt;}
.y28{bottom:183.308437pt;}
.y185{bottom:183.309136pt;}
.ya7{bottom:185.295572pt;}
.y236{bottom:188.622233pt;}
.y275{bottom:192.872847pt;}
.y27{bottom:195.263219pt;}
.y73{bottom:196.070164pt;}
.y184{bottom:197.920455pt;}
.y1de{bottom:198.318267pt;}
.y138{bottom:199.248741pt;}
.y198{bottom:199.250089pt;}
.y10f{bottom:199.250985pt;}
.y153{bottom:199.255050pt;}
.yde{bottom:200.037153pt;}
.y41{bottom:200.049986pt;}
.y213{bottom:200.832231pt;}
.y1dd{bottom:200.832599pt;}
.y1df{bottom:200.842000pt;}
.y235{bottom:201.905400pt;}
.ya6{bottom:203.228528pt;}
.y26{bottom:207.218000pt;}
.y274{bottom:207.218667pt;}
.y183{bottom:212.531775pt;}
.y234{bottom:215.188567pt;}
.y137{bottom:216.516672pt;}
.y197{bottom:216.518020pt;}
.y10e{bottom:216.518916pt;}
.y152{bottom:216.522981pt;}
.y40{bottom:217.450417pt;}
.ydd{bottom:217.571346pt;}
.y212{bottom:218.365162pt;}
.y1dc{bottom:218.365531pt;}
.y273{bottom:221.032097pt;}
.ya5{bottom:221.161483pt;}
.y182{bottom:227.143094pt;}
.y233{bottom:228.471733pt;}
.y136{bottom:233.784603pt;}
.y196{bottom:233.785951pt;}
.y10d{bottom:233.786847pt;}
.y151{bottom:233.790912pt;}
.y272{bottom:234.847653pt;}
.y3f{bottom:234.850848pt;}
.ydc{bottom:235.105539pt;}
.y211{bottom:235.900617pt;}
.y1db{bottom:235.900986pt;}
.ya4{bottom:239.094439pt;}
.y181{bottom:241.754414pt;}
.y232{bottom:241.754900pt;}
.y72{bottom:245.748905pt;}
.y135{bottom:248.528667pt;}
.y271{bottom:248.662147pt;}
.y134{bottom:251.052533pt;}
.y195{bottom:251.053882pt;}
.y10c{bottom:251.054777pt;}
.y150{bottom:251.058843pt;}
.y3e{bottom:252.250017pt;}
.ydb{bottom:252.639732pt;}
.y210{bottom:253.434811pt;}
.y1da{bottom:253.435179pt;}
.y231{bottom:255.038067pt;}
.y180{bottom:256.365733pt;}
.ya3{bottom:257.027395pt;}
.y25{bottom:261.138888pt;}
.y270{bottom:263.007967pt;}
.y71{bottom:263.016836pt;}
.y133{bottom:265.796800pt;}
.y132{bottom:268.320869pt;}
.y230{bottom:268.321233pt;}
.y194{bottom:268.321813pt;}
.y10b{bottom:268.322708pt;}
.y14f{bottom:268.326774pt;}
.y3d{bottom:269.652972pt;}
.yda{bottom:270.172663pt;}
.y20f{bottom:270.969004pt;}
.y1d9{bottom:270.969372pt;}
.ya2{bottom:274.960350pt;}
.y26f{bottom:276.821397pt;}
.y24{bottom:279.071843pt;}
.y70{bottom:280.284767pt;}
.y22f{bottom:281.604400pt;}
.y130{bottom:283.065067pt;}
.y131{bottom:285.588800pt;}
.y12f{bottom:285.589003pt;}
.y193{bottom:285.589743pt;}
.y10a{bottom:285.590639pt;}
.y14e{bottom:285.594705pt;}
.y3c{bottom:287.053403pt;}
.yd9{bottom:287.708118pt;}
.y20e{bottom:288.503197pt;}
.y1d8{bottom:288.503565pt;}
.y26e{bottom:290.636953pt;}
.ya1{bottom:292.893306pt;}
.y22e{bottom:294.887567pt;}
.y23{bottom:297.004799pt;}
.y6f{bottom:297.552698pt;}
.y12d{bottom:300.333200pt;}
.y12e{bottom:302.856933pt;}
.y192{bottom:302.857674pt;}
.y12c{bottom:302.858079pt;}
.y109{bottom:302.858570pt;}
.y14d{bottom:302.862635pt;}
.y26d{bottom:304.451447pt;}
.y3b{bottom:304.453834pt;}
.yd8{bottom:305.242312pt;}
.y20d{bottom:306.036128pt;}
.y1d7{bottom:306.036496pt;}
.y22d{bottom:308.170733pt;}
.ya0{bottom:310.826262pt;}
.y6e{bottom:314.820629pt;}
.y22{bottom:314.937755pt;}
.y26c{bottom:318.797267pt;}
.y191{bottom:320.125605pt;}
.y12b{bottom:320.126010pt;}
.y108{bottom:320.126501pt;}
.y14c{bottom:320.130566pt;}
.y22c{bottom:321.453900pt;}
.y3a{bottom:321.854265pt;}
.yd7{bottom:322.776505pt;}
.y20c{bottom:323.571583pt;}
.y1d6{bottom:323.571951pt;}
.y9f{bottom:328.759217pt;}
.y6d{bottom:332.088559pt;}
.y26b{bottom:332.610697pt;}
.y21{bottom:332.870710pt;}
.y22b{bottom:334.737067pt;}
.y190{bottom:337.393536pt;}
.y12a{bottom:337.393941pt;}
.y107{bottom:337.394432pt;}
.y14b{bottom:337.398497pt;}
.y39{bottom:339.253434pt;}
.yd6{bottom:340.310698pt;}
.yd5{bottom:340.574436pt;}
.y20b{bottom:341.104514pt;}
.y1d5{bottom:341.104883pt;}
.y26a{bottom:346.425191pt;}
.y9e{bottom:346.692173pt;}
.y22a{bottom:348.020233pt;}
.y6c{bottom:349.356490pt;}
.y20{bottom:350.803666pt;}
.y18f{bottom:354.661467pt;}
.y129{bottom:354.661872pt;}
.y106{bottom:354.662362pt;}
.y14a{bottom:354.666428pt;}
.y38{bottom:356.656389pt;}
.yd4{bottom:358.109891pt;}
.y20a{bottom:358.639969pt;}
.y1d4{bottom:358.640338pt;}
.y269{bottom:360.772073pt;}
.y229{bottom:361.303400pt;}
.y9d{bottom:364.620133pt;}
.y6b{bottom:366.624421pt;}
.y1f{bottom:368.736622pt;}
.y128{bottom:371.929803pt;}
.y105{bottom:371.930293pt;}
.y149{bottom:371.934359pt;}
.y37{bottom:374.056820pt;}
.y228{bottom:374.586567pt;}
.yd3{bottom:375.642823pt;}
.y209{bottom:376.174163pt;}
.y1d3{bottom:376.174531pt;}
.y9c{bottom:382.553088pt;}
.y6a{bottom:383.892352pt;}
.y1e{bottom:386.669577pt;}
.y126{bottom:386.674000pt;}
.y227{bottom:387.869733pt;}
.y268{bottom:388.931324pt;}
.y127{bottom:389.197733pt;}
.y104{bottom:389.198224pt;}
.y125{bottom:389.200361pt;}
.y148{bottom:389.202289pt;}
.y36{bottom:391.324751pt;}
.yd2{bottom:393.178278pt;}
.y208{bottom:393.707094pt;}
.y1d2{bottom:393.707462pt;}
.y17f{bottom:396.503619pt;}
.y9b{bottom:400.486044pt;}
.y226{bottom:401.152900pt;}
.y69{bottom:401.160283pt;}
.y267{bottom:402.746880pt;}
.y1d{bottom:404.602533pt;}
.y103{bottom:406.466155pt;}
.y124{bottom:406.468292pt;}
.y147{bottom:406.470220pt;}
.y17e{bottom:408.458400pt;}
.y35{bottom:408.592682pt;}
.yd1{bottom:410.712471pt;}
.y207{bottom:411.242549pt;}
.y1d1{bottom:411.242917pt;}
.y17d{bottom:413.240400pt;}
.y225{bottom:414.436067pt;}
.y266{bottom:416.561373pt;}
.y9a{bottom:418.419000pt;}
.y68{bottom:418.428214pt;}
.y1c{bottom:422.535488pt;}
.y17c{bottom:422.803085pt;}
.y102{bottom:423.734086pt;}
.y123{bottom:423.736223pt;}
.y146{bottom:423.738151pt;}
.y34{bottom:425.860613pt;}
.y224{bottom:427.719233pt;}
.yd0{bottom:428.245402pt;}
.y206{bottom:428.775480pt;}
.y1d0{bottom:428.775848pt;}
.y265{bottom:430.375867pt;}
.y17b{bottom:434.757867pt;}
.y67{bottom:435.696144pt;}
.y99{bottom:436.351955pt;}
.y1b{bottom:440.468444pt;}
.y101{bottom:441.002016pt;}
.y223{bottom:441.002400pt;}
.y122{bottom:441.004153pt;}
.y145{bottom:441.006082pt;}
.y33{bottom:443.128543pt;}
.y264{bottom:444.720624pt;}
.ycf{bottom:445.780857pt;}
.y205{bottom:446.309673pt;}
.y1cf{bottom:446.310041pt;}
.y66{bottom:452.964075pt;}
.y98{bottom:454.284911pt;}
.y222{bottom:454.285567pt;}
.y17a{bottom:456.943183pt;}
.y100{bottom:458.269947pt;}
.y121{bottom:458.272084pt;}
.y144{bottom:458.274013pt;}
.y1a{bottom:458.401400pt;}
.y263{bottom:458.536180pt;}
.y32{bottom:460.396474pt;}
.yce{bottom:463.313788pt;}
.y204{bottom:463.843866pt;}
.y1ce{bottom:463.844234pt;}
.y221{bottom:467.568733pt;}
.y96{bottom:469.694000pt;}
.y65{bottom:470.232006pt;}
.y97{bottom:472.217867pt;}
.y95{bottom:472.235914pt;}
.y262{bottom:472.350673pt;}
.y179{bottom:474.211300pt;}
.yff{bottom:475.537878pt;}
.y120{bottom:475.540015pt;}
.y143{bottom:475.541944pt;}
.y19{bottom:476.334355pt;}
.y31{bottom:477.664405pt;}
.ycd{bottom:480.849243pt;}
.y220{bottom:480.851900pt;}
.y203{bottom:481.376798pt;}
.y1cd{bottom:481.377166pt;}
.y261{bottom:486.695431pt;}
.y64{bottom:487.499937pt;}
.y94{bottom:490.168869pt;}
.y178{bottom:491.479417pt;}
.yfe{bottom:492.805809pt;}
.y11f{bottom:492.807946pt;}
.y21f{bottom:494.135067pt;}
.y18{bottom:494.267311pt;}
.y30{bottom:494.932336pt;}
.ycc{bottom:498.383436pt;}
.y202{bottom:498.912253pt;}
.y1cc{bottom:498.912621pt;}
.y260{bottom:500.509924pt;}
.y142{bottom:502.108865pt;}
.y63{bottom:504.767868pt;}
.y93{bottom:508.101825pt;}
.y177{bottom:508.747533pt;}
.yfd{bottom:510.073740pt;}
.y11e{bottom:510.075877pt;}
.y17{bottom:512.200267pt;}
.y25f{bottom:514.325480pt;}
.ycb{bottom:515.916368pt;}
.y201{bottom:516.445184pt;}
.y1cb{bottom:516.445552pt;}
.y21e{bottom:516.716533pt;}
.y62{bottom:522.035799pt;}
.y176{bottom:526.015650pt;}
.y92{bottom:526.034781pt;}
.yfc{bottom:527.341671pt;}
.y11d{bottom:527.343808pt;}
.y25e{bottom:528.671300pt;}
.yca{bottom:533.451823pt;}
.y200{bottom:533.980639pt;}
.y1ca{bottom:533.981007pt;}
.y61{bottom:539.303729pt;}
.y16{bottom:541.422138pt;}
.y25d{bottom:542.484731pt;}
.y175{bottom:543.283767pt;}
.y91{bottom:543.832712pt;}
.yfb{bottom:544.609601pt;}
.y11c{bottom:544.611738pt;}
.y141{bottom:544.614929pt;}
.yc9{bottom:550.984754pt;}
.y1ff{bottom:551.514832pt;}
.y1c9{bottom:551.515200pt;}
.y15{bottom:556.033756pt;}
.y25c{bottom:556.299224pt;}
.y60{bottom:556.571660pt;}
.y174{bottom:560.551883pt;}
.y90{bottom:561.631906pt;}
.yfa{bottom:561.877532pt;}
.y11b{bottom:561.879669pt;}
.y140{bottom:561.882860pt;}
.y21d{bottom:566.528938pt;}
.yc8{bottom:568.520209pt;}
.y1fe{bottom:569.047763pt;}
.y1c8{bottom:569.048131pt;}
.y14{bottom:570.645373pt;}
.y25b{bottom:570.646107pt;}
.y5f{bottom:573.839591pt;}
.y173{bottom:577.820000pt;}
.yf9{bottom:579.145463pt;}
.y11a{bottom:579.147600pt;}
.y13f{bottom:579.150790pt;}
.y8f{bottom:579.432361pt;}
.y21c{bottom:583.796869pt;}
.y25a{bottom:584.460600pt;}
.y13{bottom:585.256990pt;}
.yc7{bottom:586.054402pt;}
.y1fd{bottom:586.583218pt;}
.y1c7{bottom:586.583586pt;}
.y5e{bottom:591.107522pt;}
.y1b5{bottom:591.112490pt;}
.y172{bottom:595.088117pt;}
.yf8{bottom:596.413394pt;}
.y8e{bottom:597.231555pt;}
.y259{bottom:598.805357pt;}
.y12{bottom:599.868608pt;}
.y21b{bottom:601.064800pt;}
.yc6{bottom:603.587333pt;}
.yc3{bottom:603.850203pt;}
.y1fc{bottom:604.116149pt;}
.y1c6{bottom:604.116518pt;}
.y5d{bottom:608.375453pt;}
.y1b4{bottom:608.380421pt;}
.yc5{bottom:608.635988pt;}
.yc4{bottom:608.900533pt;}
.y119{bottom:612.356175pt;}
.y171{bottom:612.356233pt;}
.y258{bottom:612.620913pt;}
.yf7{bottom:613.681325pt;}
.y11{bottom:614.480225pt;}
.y8d{bottom:615.030748pt;}
.yc2{bottom:621.383135pt;}
.y1fb{bottom:621.651605pt;}
.y1c5{bottom:621.651973pt;}
.y5c{bottom:625.643383pt;}
.y1b3{bottom:625.648352pt;}
.y257{bottom:626.435407pt;}
.y118{bottom:626.967494pt;}
.y21a{bottom:627.631200pt;}
.y10{bottom:629.091842pt;}
.y170{bottom:629.624350pt;}
.yf6{bottom:630.949256pt;}
.y8c{bottom:632.828680pt;}
.yc1{bottom:638.917328pt;}
.y1fa{bottom:639.185798pt;}
.y1c4{bottom:639.186166pt;}
.y256{bottom:640.249900pt;}
.y117{bottom:641.578814pt;}
.y5b{bottom:642.911314pt;}
.y1b2{bottom:642.916283pt;}
.yf{bottom:643.703459pt;}
.y16f{bottom:646.892467pt;}
.yf5{bottom:648.217186pt;}
.y8b{bottom:650.629135pt;}
.y255{bottom:654.594657pt;}
.y116{bottom:656.190133pt;}
.yc0{bottom:656.451521pt;}
.y1f9{bottom:656.718729pt;}
.y1c3{bottom:656.719097pt;}
.ye{bottom:658.315077pt;}
.y5a{bottom:660.179245pt;}
.y1b1{bottom:660.184214pt;}
.y16e{bottom:664.160583pt;}
.yf4{bottom:665.485117pt;}
.y254{bottom:668.410213pt;}
.y8a{bottom:668.429591pt;}
.yd{bottom:672.926694pt;}
.ybf{bottom:673.984452pt;}
.y1f8{bottom:674.254184pt;}
.y1c2{bottom:674.254552pt;}
.y59{bottom:677.447176pt;}
.y1b0{bottom:677.452144pt;}
.y16d{bottom:681.428700pt;}
.y253{bottom:682.223644pt;}
.yf3{bottom:682.753048pt;}
.y89{bottom:686.227523pt;}
.yc{bottom:687.537049pt;}
.ybe{bottom:691.518645pt;}
.y1f7{bottom:691.787115pt;}
.y1c1{bottom:691.787483pt;}
.y58{bottom:694.715107pt;}
.y1af{bottom:694.720075pt;}
.y252{bottom:696.039200pt;}
.y16c{bottom:698.696817pt;}
.yf2{bottom:700.020979pt;}
.yb{bottom:702.148667pt;}
.y88{bottom:704.026716pt;}
.ybd{bottom:709.052838pt;}
.y1f6{bottom:709.322570pt;}
.y1c0{bottom:709.322938pt;}
.y251{bottom:710.383957pt;}
.y57{bottom:711.983038pt;}
.y1ae{bottom:711.988006pt;}
.y16b{bottom:715.964933pt;}
.yf1{bottom:717.288910pt;}
.y87{bottom:721.825910pt;}
.y250{bottom:724.199513pt;}
.ybc{bottom:726.588293pt;}
.y1f5{bottom:726.856763pt;}
.y1bf{bottom:726.857131pt;}
.y56{bottom:729.250968pt;}
.y1ad{bottom:729.255937pt;}
.ya{bottom:731.371633pt;}
.y16a{bottom:733.233050pt;}
.yf0{bottom:734.556841pt;}
.y24f{bottom:738.012944pt;}
.y86{bottom:739.623841pt;}
.ybb{bottom:744.122487pt;}
.y1f4{bottom:744.390956pt;}
.y1be{bottom:744.391325pt;}
.y9{bottom:744.654800pt;}
.y55{bottom:746.518899pt;}
.y1ac{bottom:746.523868pt;}
.y8{bottom:748.905467pt;}
.y169{bottom:750.501167pt;}
.yef{bottom:751.824771pt;}
.y24e{bottom:752.359827pt;}
.y85{bottom:757.424297pt;}
.yba{bottom:761.656680pt;}
.y6{bottom:761.923067pt;}
.y1f3{bottom:761.923888pt;}
.y1bd{bottom:761.924256pt;}
.y54{bottom:763.786830pt;}
.y1ab{bottom:763.791799pt;}
.y24d{bottom:766.173257pt;}
.y7{bottom:766.706400pt;}
.y168{bottom:767.769283pt;}
.yee{bottom:769.092702pt;}
.y84{bottom:775.222228pt;}
.yb9{bottom:779.189611pt;}
.y1f2{bottom:779.458081pt;}
.y1bc{bottom:779.458449pt;}
.y24c{bottom:779.988813pt;}
.y53{bottom:781.054761pt;}
.y1aa{bottom:781.059729pt;}
.y167{bottom:785.037400pt;}
.yed{bottom:786.360633pt;}
.y83{bottom:793.022684pt;}
.y24b{bottom:794.334633pt;}
.yb8{bottom:796.723804pt;}
.y1f1{bottom:796.993536pt;}
.y1bb{bottom:796.993904pt;}
.y52{bottom:798.322692pt;}
.y1a9{bottom:798.327660pt;}
.y166{bottom:802.305517pt;}
.yec{bottom:803.628564pt;}
.y5{bottom:805.758180pt;}
.y24a{bottom:808.149127pt;}
.y82{bottom:810.821877pt;}
.yb7{bottom:814.259259pt;}
.y1f0{bottom:814.392705pt;}
.y1ba{bottom:814.393073pt;}
.y51{bottom:815.590623pt;}
.y1a8{bottom:815.595591pt;}
.y165{bottom:819.573633pt;}
.yeb{bottom:820.896495pt;}
.y249{bottom:821.962557pt;}
.y81{bottom:828.619809pt;}
.yb6{bottom:831.658428pt;}
.y1ef{bottom:831.795660pt;}
.y1b9{bottom:831.796028pt;}
.y50{bottom:832.858553pt;}
.y1a7{bottom:832.863522pt;}
.y248{bottom:836.308377pt;}
.y164{bottom:836.841750pt;}
.y4{bottom:837.637623pt;}
.yea{bottom:838.164426pt;}
.y286{bottom:842.152933pt;}
.y80{bottom:846.420264pt;}
.yb5{bottom:849.061383pt;}
.y1ee{bottom:849.194829pt;}
.y1b8{bottom:849.195197pt;}
.y247{bottom:850.123933pt;}
.y4f{bottom:850.126484pt;}
.y1a6{bottom:850.131453pt;}
.y163{bottom:854.109867pt;}
.ye9{bottom:855.432356pt;}
.y285{bottom:855.436100pt;}
.y246{bottom:863.938427pt;}
.y7f{bottom:864.218196pt;}
.yb4{bottom:866.460552pt;}
.y1ed{bottom:866.597784pt;}
.y1b7{bottom:866.598152pt;}
.y4e{bottom:867.394415pt;}
.y1a5{bottom:867.399383pt;}
.y284{bottom:868.719267pt;}
.y3{bottom:869.517067pt;}
.y15d{bottom:874.034533pt;}
.y245{bottom:878.284247pt;}
.y283{bottom:882.002433pt;}
.y7e{bottom:882.018651pt;}
.yb3{bottom:883.863507pt;}
.y1ec{bottom:883.996953pt;}
.y1b6{bottom:883.997321pt;}
.y4d{bottom:884.662346pt;}
.y1a4{bottom:884.667314pt;}
.ye8{bottom:886.779380pt;}
.y160{bottom:887.317700pt;}
.y244{bottom:892.097677pt;}
.y161{bottom:893.959283pt;}
.y282{bottom:895.285600pt;}
.y162{bottom:899.272667pt;}
.y7d{bottom:899.817845pt;}
.y15f{bottom:900.600867pt;}
.yb2{bottom:901.265200pt;}
.y1eb{bottom:901.396122pt;}
.yb0{bottom:901.396490pt;}
.y4c{bottom:901.930277pt;}
.y1a3{bottom:901.935245pt;}
.y243{bottom:905.780402pt;}
.yb1{bottom:906.311467pt;}
.y281{bottom:908.568767pt;}
.y15e{bottom:913.884033pt;}
.y7c{bottom:917.615777pt;}
.y1ea{bottom:918.799077pt;}
.yaf{bottom:918.799445pt;}
.y4b{bottom:919.198208pt;}
.y1a2{bottom:919.203176pt;}
.y242{bottom:919.860558pt;}
.y280{bottom:921.851933pt;}
.y241{bottom:933.541157pt;}
.y27f{bottom:935.135100pt;}
.y7b{bottom:935.416232pt;}
.y1e9{bottom:936.198246pt;}
.yae{bottom:936.198614pt;}
.ye7{bottom:936.459383pt;}
.y4a{bottom:936.466138pt;}
.y1a1{bottom:936.471107pt;}
.y15c{bottom:944.436028pt;}
.y240{bottom:947.222819pt;}
.y27e{bottom:948.418267pt;}
.y7a{bottom:953.214164pt;}
.y1e8{bottom:953.601201pt;}
.yad{bottom:953.601569pt;}
.ye6{bottom:953.727314pt;}
.y49{bottom:953.734069pt;}
.y1a0{bottom:953.739038pt;}
.y2{bottom:956.656133pt;}
.y15b{bottom:959.047347pt;}
.y23f{bottom:961.304038pt;}
.y27d{bottom:961.701433pt;}
.ye5{bottom:970.995245pt;}
.y1e7{bottom:971.001632pt;}
.y48{bottom:971.002000pt;}
.y19f{bottom:971.006968pt;}
.y79{bottom:971.014619pt;}
.y15a{bottom:973.658667pt;}
.y27c{bottom:974.984600pt;}
.y23e{bottom:974.985700pt;}
.h6{height:18.024952pt;}
.h14{height:19.187942pt;}
.h5{height:19.656576pt;}
.hc{height:19.809850pt;}
.h15{height:20.073139pt;}
.h11{height:21.537302pt;}
.h13{height:27.411290pt;}
.h12{height:27.448483pt;}
.ha{height:28.080765pt;}
.h9{height:28.675854pt;}
.h1{height:30.476898pt;}
.h10{height:31.327020pt;}
.h7{height:32.772229pt;}
.h16{height:35.482242pt;}
.hf{height:35.530062pt;}
.h4{height:36.103899pt;}
.h8{height:36.191483pt;}
.hd{height:36.206419pt;}
.he{height:36.869014pt;}
.hb{height:37.453390pt;}
.h2{height:46.990727pt;}
.h3{height:83.811755pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.714267pt;}
.x9{left:78.503733pt;}
.x36{left:80.628933pt;}
.x2d{left:84.016200pt;}
.xd{left:85.012533pt;}
.xc{left:88.333333pt;}
.x1d{left:91.122800pt;}
.x37{left:93.247942pt;}
.x2e{left:96.236800pt;}
.x1e{left:101.018800pt;}
.x10{left:112.442060pt;}
.x1c{left:119.680906pt;}
.x4{left:167.301867pt;}
.x5{left:174.342000pt;}
.x23{left:178.061333pt;}
.x19{left:183.042533pt;}
.x24{left:187.957333pt;}
.x34{left:208.612667pt;}
.x18{left:216.184133pt;}
.x35{left:219.969733pt;}
.x2a{left:236.305049pt;}
.x28{left:239.893630pt;}
.x29{left:241.819157pt;}
.x1b{left:248.462267pt;}
.x27{left:251.581754pt;}
.x6{left:267.324400pt;}
.x7{left:274.231600pt;}
.x1a{left:281.603059pt;}
.x26{left:292.230400pt;}
.x2c{left:316.937200pt;}
.x1f{left:321.121333pt;}
.x2b{left:325.104612pt;}
.x20{left:330.617600pt;}
.x21{left:337.858133pt;}
.x22{left:347.752800pt;}
.x8{left:353.466000pt;}
.x32{left:366.681333pt;}
.xa{left:369.405867pt;}
.xb{left:372.261733pt;}
.x33{left:376.444533pt;}
.xf{left:378.571200pt;}
.x25{left:387.470933pt;}
.xe{left:391.190267pt;}
.x11{left:418.421617pt;}
.x12{left:431.040684pt;}
.x38{left:436.356387pt;}
.x1{left:440.803067pt;}
.x17{left:446.116267pt;}
.x2{left:573.302933pt;}
.x2f{left:601.861867pt;}
.x30{left:613.617467pt;}
.x31{left:705.670000pt;}
.x13{left:711.778933pt;}
.x14{left:715.431867pt;}
.x15{left:730.841733pt;}
.x16{left:734.428267pt;}
}




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