
    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_ecf0f2f65e074d74cba178fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004000;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_fea754595c2951ce6349bfb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_a61395885c743a030b8b0cbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027000;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_7843c93df701022845e71168.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_28203064c296ebe5c3c10ffc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.004000;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_574a4b9b5f0803517b25c90d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.993000;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_1841451e0da3e7cc5683bc2f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_28203064c296ebe5c3c10ffc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004000;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_574a4b9b5f0803517b25c90d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.993000;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_16f74d5bf6d92810356b692e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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;}
.m2{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls18{letter-spacing:-3.024000px;}
.ls14{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.495000px;}
.ls16{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.270000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.220332px;}
.ls10{letter-spacing:0.376800px;}
.lse{letter-spacing:0.377400px;}
.lsd{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.386445px;}
.ls15{letter-spacing:0.748800px;}
.ls8{letter-spacing:0.966000px;}
.lsa{letter-spacing:1.350000px;}
.ls1{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.479600px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.520000px;}
.lsb{letter-spacing:3.153000px;}
.ls0{letter-spacing:4.500000px;}
.lsc{letter-spacing:6.464400px;}
.ls7{letter-spacing:11.606400px;}
.ls17{letter-spacing:53.568600px;}
.ls12{letter-spacing:142.051800px;}
.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;}
}
.ws3{word-spacing:-20.448000px;}
.ws0{word-spacing:-19.740000px;}
.wsdb{word-spacing:-17.040000px;}
.ws2{word-spacing:-13.632000px;}
.wsb6{word-spacing:-13.608000px;}
.ws4b{word-spacing:-13.500000px;}
.ws4c{word-spacing:-13.230000px;}
.wsdd{word-spacing:-12.780000px;}
.ws115{word-spacing:-12.192000px;}
.ws1{word-spacing:-12.000000px;}
.wsdf{word-spacing:-11.760000px;}
.ws6d{word-spacing:-11.250000px;}
.ws6c{word-spacing:-11.025000px;}
.wsde{word-spacing:-10.755000px;}
.ws1d{word-spacing:-10.668000px;}
.ws116{word-spacing:-9.168000px;}
.ws9c{word-spacing:-7.870500px;}
.ws112{word-spacing:-7.506000px;}
.ws113{word-spacing:-7.398000px;}
.wsce{word-spacing:-7.182000px;}
.wsae{word-spacing:-6.696000px;}
.wsad{word-spacing:-6.588000px;}
.ws8e{word-spacing:-6.102000px;}
.wsb9{word-spacing:-5.940000px;}
.ws6f{word-spacing:-5.022000px;}
.wsd4{word-spacing:-4.968000px;}
.wsf7{word-spacing:-4.914000px;}
.ws7{word-spacing:-4.644000px;}
.ws17{word-spacing:-4.374000px;}
.ws105{word-spacing:-3.996000px;}
.ws101{word-spacing:-3.888000px;}
.wsa1{word-spacing:-3.726000px;}
.ws69{word-spacing:-3.672000px;}
.ws108{word-spacing:-3.564000px;}
.ws8b{word-spacing:-3.510000px;}
.wsfb{word-spacing:-3.132000px;}
.ws1c{word-spacing:-3.024000px;}
.ws78{word-spacing:-2.970000px;}
.ws16{word-spacing:-2.916000px;}
.ws93{word-spacing:-2.862000px;}
.wsb0{word-spacing:-2.808000px;}
.ws88{word-spacing:-2.754000px;}
.wsa4{word-spacing:-2.700000px;}
.ws68{word-spacing:-2.646000px;}
.wsea{word-spacing:-2.592000px;}
.wsd7{word-spacing:-2.538000px;}
.ws1e{word-spacing:-2.484000px;}
.ws6e{word-spacing:-2.430000px;}
.ws31{word-spacing:-2.376000px;}
.ws2a{word-spacing:-2.322000px;}
.ws1b{word-spacing:-2.268000px;}
.wsd{word-spacing:-2.214000px;}
.ws110{word-spacing:-2.160000px;}
.ws6a{word-spacing:-2.106000px;}
.wsa7{word-spacing:-2.052000px;}
.ws42{word-spacing:-1.944000px;}
.ws36{word-spacing:-1.890000px;}
.wse7{word-spacing:-1.846200px;}
.wsa5{word-spacing:-1.836000px;}
.ws8d{word-spacing:-1.782000px;}
.wsa0{word-spacing:-1.728000px;}
.ws10b{word-spacing:-1.512000px;}
.ws87{word-spacing:-1.458000px;}
.wse6{word-spacing:-1.350000px;}
.wsa3{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.134000px;}
.ws77{word-spacing:-1.080000px;}
.ws7d{word-spacing:-1.026000px;}
.ws72{word-spacing:-0.972000px;}
.ws10c{word-spacing:-0.918000px;}
.wsc4{word-spacing:-0.883302px;}
.ws9e{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.810000px;}
.wsaf{word-spacing:-0.702000px;}
.wsf8{word-spacing:-0.648000px;}
.ws13{word-spacing:-0.594000px;}
.ws8a{word-spacing:-0.540000px;}
.ws117{word-spacing:-0.528000px;}
.ws10a{word-spacing:-0.486000px;}
.ws65{word-spacing:-0.432000px;}
.ws8c{word-spacing:-0.378000px;}
.ws3b{word-spacing:-0.324000px;}
.ws20{word-spacing:-0.270000px;}
.ws85{word-spacing:-0.225000px;}
.wsd5{word-spacing:-0.220826px;}
.ws56{word-spacing:-0.216000px;}
.wsbe{word-spacing:-0.162000px;}
.wsef{word-spacing:-0.108000px;}
.ws4a{word-spacing:-0.054000px;}
.ws114{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.wsaa{word-spacing:0.054000px;}
.ws3e{word-spacing:0.108000px;}
.ws2f{word-spacing:0.162000px;}
.ws91{word-spacing:0.216000px;}
.wsb4{word-spacing:0.270000px;}
.ws70{word-spacing:0.324000px;}
.wsa6{word-spacing:0.378000px;}
.ws95{word-spacing:0.432000px;}
.ws18{word-spacing:0.486000px;}
.wsa9{word-spacing:0.540000px;}
.ws75{word-spacing:0.594000px;}
.ws79{word-spacing:0.648000px;}
.wsda{word-spacing:0.702000px;}
.wsd8{word-spacing:0.756000px;}
.wscc{word-spacing:0.810000px;}
.ws11{word-spacing:0.864000px;}
.ws64{word-spacing:0.972000px;}
.wsd6{word-spacing:0.993715px;}
.ws8f{word-spacing:1.026000px;}
.ws39{word-spacing:1.080000px;}
.ws9{word-spacing:1.242000px;}
.wsa{word-spacing:1.296000px;}
.ws10f{word-spacing:1.350000px;}
.wse1{word-spacing:1.404000px;}
.ws82{word-spacing:1.458000px;}
.wsb7{word-spacing:1.512000px;}
.ws97{word-spacing:1.566000px;}
.ws98{word-spacing:1.600985px;}
.ws52{word-spacing:1.620000px;}
.ws28{word-spacing:1.674000px;}
.wsd9{word-spacing:1.728000px;}
.ws73{word-spacing:1.782000px;}
.ws30{word-spacing:1.836000px;}
.wsed{word-spacing:1.890000px;}
.wscf{word-spacing:1.944000px;}
.ws106{word-spacing:2.052000px;}
.ws25{word-spacing:2.106000px;}
.wse5{word-spacing:2.160000px;}
.ws92{word-spacing:2.214000px;}
.ws57{word-spacing:2.268000px;}
.ws111{word-spacing:2.322000px;}
.wsb3{word-spacing:2.376000px;}
.wsf{word-spacing:2.430000px;}
.ws83{word-spacing:2.484000px;}
.ws2c{word-spacing:2.538000px;}
.ws71{word-spacing:2.592000px;}
.wsbc{word-spacing:2.646000px;}
.ws89{word-spacing:2.700000px;}
.ws49{word-spacing:2.754000px;}
.ws86{word-spacing:2.808000px;}
.ws74{word-spacing:2.862000px;}
.wse8{word-spacing:2.916000px;}
.ws9a{word-spacing:2.970000px;}
.wsf2{word-spacing:3.024000px;}
.ws63{word-spacing:3.078000px;}
.ws76{word-spacing:3.132000px;}
.ws45{word-spacing:3.186000px;}
.wsc1{word-spacing:3.240000px;}
.ws21{word-spacing:3.294000px;}
.ws7e{word-spacing:3.348000px;}
.ws22{word-spacing:3.367589px;}
.ws3c{word-spacing:3.402000px;}
.wsba{word-spacing:3.456000px;}
.ws24{word-spacing:3.564000px;}
.ws14{word-spacing:3.618000px;}
.ws7f{word-spacing:3.672000px;}
.ws23{word-spacing:3.726000px;}
.wsfe{word-spacing:3.780000px;}
.ws4d{word-spacing:3.942000px;}
.ws5e{word-spacing:4.050000px;}
.ws6b{word-spacing:4.104000px;}
.wsc0{word-spacing:4.158000px;}
.wscd{word-spacing:4.212000px;}
.ws3a{word-spacing:4.266000px;}
.ws96{word-spacing:4.320000px;}
.ws107{word-spacing:4.428000px;}
.ws61{word-spacing:4.482000px;}
.ws29{word-spacing:4.536000px;}
.ws62{word-spacing:4.582130px;}
.ws46{word-spacing:4.590000px;}
.wse2{word-spacing:4.644000px;}
.ws47{word-spacing:4.692542px;}
.ws1a{word-spacing:4.752000px;}
.ws67{word-spacing:4.806000px;}
.ws10e{word-spacing:4.860000px;}
.ws9d{word-spacing:4.914000px;}
.wsff{word-spacing:4.968000px;}
.ws33{word-spacing:5.022000px;}
.ws38{word-spacing:5.076000px;}
.ws12{word-spacing:5.130000px;}
.wsab{word-spacing:5.184000px;}
.ws7a{word-spacing:5.292000px;}
.ws90{word-spacing:5.346000px;}
.ws103{word-spacing:5.400000px;}
.wse3{word-spacing:5.454000px;}
.wsee{word-spacing:5.508000px;}
.ws1f{word-spacing:5.616000px;}
.wsd2{word-spacing:5.670000px;}
.ws80{word-spacing:5.724000px;}
.ws2b{word-spacing:5.778000px;}
.ws48{word-spacing:5.832000px;}
.wsc{word-spacing:5.886000px;}
.wsb2{word-spacing:5.940000px;}
.ws3d{word-spacing:5.994000px;}
.wsbd{word-spacing:6.102000px;}
.ws32{word-spacing:6.156000px;}
.ws40{word-spacing:6.210000px;}
.wsf1{word-spacing:6.264000px;}
.ws53{word-spacing:6.318000px;}
.ws9b{word-spacing:6.372000px;}
.wsb{word-spacing:6.480000px;}
.wsb1{word-spacing:6.588000px;}
.ws58{word-spacing:6.642000px;}
.ws6{word-spacing:6.696000px;}
.ws51{word-spacing:6.750000px;}
.ws59{word-spacing:6.790385px;}
.ws84{word-spacing:6.858000px;}
.wse{word-spacing:6.912000px;}
.wsf9{word-spacing:6.966000px;}
.ws26{word-spacing:7.020000px;}
.wsf6{word-spacing:7.074000px;}
.ws37{word-spacing:7.128000px;}
.wsfd{word-spacing:7.176830px;}
.wsac{word-spacing:7.182000px;}
.ws54{word-spacing:7.236000px;}
.ws41{word-spacing:7.290000px;}
.wsa8{word-spacing:7.452000px;}
.wsb5{word-spacing:7.506000px;}
.ws5{word-spacing:7.560000px;}
.wsd0{word-spacing:7.614000px;}
.ws55{word-spacing:7.668000px;}
.wsd1{word-spacing:7.776000px;}
.ws35{word-spacing:7.830000px;}
.ws10{word-spacing:7.938000px;}
.ws81{word-spacing:7.992000px;}
.wseb{word-spacing:8.046000px;}
.wse0{word-spacing:8.262000px;}
.wscb{word-spacing:8.316000px;}
.ws5c{word-spacing:8.424000px;}
.ws9f{word-spacing:8.478000px;}
.wsca{word-spacing:8.501783px;}
.wsc3{word-spacing:8.532000px;}
.wsf0{word-spacing:8.640000px;}
.ws60{word-spacing:8.802000px;}
.ws19{word-spacing:8.856000px;}
.ws4e{word-spacing:9.018000px;}
.ws5a{word-spacing:9.072000px;}
.ws34{word-spacing:9.126000px;}
.wsc5{word-spacing:9.180000px;}
.ws4f{word-spacing:9.219466px;}
.wsfa{word-spacing:9.288000px;}
.ws50{word-spacing:9.396000px;}
.wse4{word-spacing:9.558000px;}
.ws43{word-spacing:9.666000px;}
.ws3f{word-spacing:9.774000px;}
.wsbf{word-spacing:9.936000px;}
.wsbb{word-spacing:10.098000px;}
.ws7c{word-spacing:10.260000px;}
.ws99{word-spacing:10.530000px;}
.wsc8{word-spacing:10.638000px;}
.wsc7{word-spacing:10.800000px;}
.wse9{word-spacing:10.962000px;}
.ws5b{word-spacing:11.610000px;}
.wsfc{word-spacing:11.664000px;}
.wsf5{word-spacing:11.826000px;}
.wsb8{word-spacing:11.934000px;}
.ws100{word-spacing:12.150000px;}
.wsc9{word-spacing:12.258000px;}
.ws44{word-spacing:12.312000px;}
.wsd3{word-spacing:12.366000px;}
.wsc2{word-spacing:12.420000px;}
.ws94{word-spacing:12.474000px;}
.ws66{word-spacing:12.528000px;}
.ws5d{word-spacing:12.636000px;}
.ws109{word-spacing:12.744000px;}
.ws5f{word-spacing:13.284000px;}
.wsa2{word-spacing:13.446000px;}
.ws7b{word-spacing:14.094000px;}
.ws27{word-spacing:14.310000px;}
.wsc6{word-spacing:14.580000px;}
.ws8{word-spacing:15.390000px;}
.wsec{word-spacing:15.660000px;}
.ws10d{word-spacing:17.982000px;}
.ws104{word-spacing:18.468000px;}
.ws102{word-spacing:19.278000px;}
.ws15{word-spacing:22.734000px;}
.wsdc{word-spacing:103.711800px;}
.wsf4{word-spacing:445.468200px;}
.wsf3{word-spacing:482.143200px;}
._6{margin-left:-685.303200px;}
._9{margin-left:-684.051600px;}
._5{margin-left:-682.326000px;}
._c{margin-left:-5.748000px;}
._0{margin-left:-4.500000px;}
._2{margin-left:-3.120000px;}
._1{margin-left:-1.980000px;}
._3{width:1.740000px;}
._4{width:3.150000px;}
._b{width:5.241600px;}
._8{width:7.479600px;}
._7{width:9.030600px;}
._21{width:54.014400px;}
._20{width:57.551400px;}
._1d{width:76.721400px;}
._d{width:101.251800px;}
._e{width:108.585000px;}
._1b{width:112.816800px;}
._19{width:116.221800px;}
._f{width:142.051800px;}
._10{width:185.806800px;}
._1c{width:207.675000px;}
._13{width:218.653200px;}
._17{width:220.141800px;}
._1a{width:222.076800px;}
._14{width:226.936800px;}
._11{width:242.010000px;}
._16{width:246.286800px;}
._12{width:255.328200px;}
._15{width:256.681800px;}
._18{width:267.840000px;}
._1e{width:511.440000px;}
._a{width:532.710000px;}
._1f{width:537.270000px;}
.fc3{color:rgb(90,87,88);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(49,45,111);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:55.206381px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:55.815900px;}
.y159{bottom:57.575850px;}
.y245{bottom:60.292350px;}
.y16d{bottom:61.827750px;}
.y3c{bottom:63.455550px;}
.y2c6{bottom:63.783150px;}
.y215{bottom:66.079800px;}
.y1e5{bottom:66.304200px;}
.ya7{bottom:67.036500px;}
.y127{bottom:67.556100px;}
.y2ab{bottom:71.220450px;}
.y77{bottom:73.700850px;}
.y76{bottom:73.712850px;}
.y158{bottom:77.075850px;}
.y1c8{bottom:77.710650px;}
.y270{bottom:79.145700px;}
.ycb{bottom:79.567950px;}
.y2c5{bottom:80.283150px;}
.y16c{bottom:81.327750px;}
.y3b{bottom:82.949550px;}
.y214{bottom:85.579800px;}
.y1e4{bottom:85.804200px;}
.y148{bottom:86.312100px;}
.ya6{bottom:86.536500px;}
.y126{bottom:87.056100px;}
.y244{bottom:88.302300px;}
.y2aa{bottom:89.220450px;}
.y75{bottom:93.206850px;}
.y157{bottom:96.575850px;}
.y2c4{bottom:96.783150px;}
.y26f{bottom:97.145700px;}
.y1c7{bottom:97.210650px;}
.y100{bottom:97.308150px;}
.yca{bottom:99.067950px;}
.y16b{bottom:100.827750px;}
.y3a{bottom:102.443550px;}
.y213{bottom:105.079800px;}
.y147{bottom:105.812100px;}
.ya5{bottom:106.036500px;}
.y125{bottom:106.556100px;}
.y2a9{bottom:107.220450px;}
.y243{bottom:107.796300px;}
.y74{bottom:112.700850px;}
.y73{bottom:112.966500px;}
.y1e3{bottom:113.808150px;}
.y26e{bottom:115.145700px;}
.y156{bottom:116.075850px;}
.y1c6{bottom:116.710650px;}
.yff{bottom:116.808150px;}
.y2c3{bottom:117.531150px;}
.yc9{bottom:118.567950px;}
.y39{bottom:121.937550px;}
.y212{bottom:124.579800px;}
.y2a8{bottom:125.220450px;}
.y146{bottom:125.312100px;}
.ya4{bottom:125.536500px;}
.y124{bottom:126.056100px;}
.y16a{bottom:128.831700px;}
.y72{bottom:132.460500px;}
.y26d{bottom:133.145700px;}
.y1e2{bottom:133.308150px;}
.y2c2{bottom:134.031150px;}
.y155{bottom:135.575850px;}
.y242{bottom:135.800250px;}
.y1c5{bottom:136.210650px;}
.yfe{bottom:136.308150px;}
.y38{bottom:141.431550px;}
.y2a7{bottom:143.220450px;}
.y211{bottom:144.079800px;}
.y145{bottom:144.812100px;}
.ya3{bottom:145.036500px;}
.y123{bottom:145.556100px;}
.y169{bottom:148.331700px;}
.y2c1{bottom:150.531150px;}
.yc8{bottom:150.823950px;}
.y26c{bottom:151.145700px;}
.y71{bottom:151.954500px;}
.y1e1{bottom:152.808150px;}
.y154{bottom:155.075850px;}
.y1c4{bottom:155.710650px;}
.yfd{bottom:155.808150px;}
.y37{bottom:160.925550px;}
.y2a6{bottom:161.220450px;}
.y210{bottom:163.579800px;}
.y241{bottom:163.804200px;}
.y144{bottom:164.312100px;}
.ya2{bottom:164.536500px;}
.y2c0{bottom:167.031150px;}
.y26b{bottom:169.145700px;}
.yc7{bottom:170.323950px;}
.y1e0{bottom:172.308150px;}
.y122{bottom:173.560050px;}
.y153{bottom:174.575850px;}
.y1c3{bottom:175.210650px;}
.y2a5{bottom:179.220450px;}
.y70{bottom:179.953500px;}
.y36{bottom:180.419550px;}
.y20f{bottom:183.079800px;}
.y2bf{bottom:183.531150px;}
.yfc{bottom:183.812100px;}
.ya1{bottom:184.036500px;}
.y1b{bottom:184.223850px;}
.y26a{bottom:187.145700px;}
.y168{bottom:189.091500px;}
.yc6{bottom:189.823950px;}
.y240{bottom:191.820150px;}
.y121{bottom:193.060050px;}
.y152{bottom:194.075850px;}
.y1c2{bottom:194.710650px;}
.y2a4{bottom:197.220450px;}
.y6f{bottom:199.447500px;}
.y35{bottom:199.913550px;}
.y2be{bottom:200.031150px;}
.y1df{bottom:200.312100px;}
.y1a{bottom:200.723850px;}
.y20e{bottom:202.579800px;}
.yfb{bottom:203.312100px;}
.ya0{bottom:203.536500px;}
.y269{bottom:205.145700px;}
.y167{bottom:208.591500px;}
.yc5{bottom:209.323950px;}
.y23f{bottom:211.314150px;}
.y120{bottom:212.560050px;}
.y151{bottom:213.575850px;}
.y1c1{bottom:214.210650px;}
.y2a3{bottom:215.220450px;}
.y2bd{bottom:216.531150px;}
.y19{bottom:217.223850px;}
.y6e{bottom:218.941500px;}
.y34{bottom:219.407550px;}
.yfa{bottom:222.812100px;}
.y9f{bottom:223.036500px;}
.y268{bottom:223.145700px;}
.y166{bottom:228.091500px;}
.yc4{bottom:228.823950px;}
.y20d{bottom:230.583750px;}
.y23e{bottom:230.808150px;}
.y11f{bottom:232.060050px;}
.y2bc{bottom:233.031150px;}
.y2a2{bottom:233.220450px;}
.y1c0{bottom:233.710650px;}
.y18{bottom:233.723850px;}
.y150{bottom:237.327750px;}
.y6d{bottom:238.435500px;}
.y33{bottom:238.901550px;}
.y267{bottom:241.145700px;}
.yf9{bottom:242.312100px;}
.y165{bottom:247.591500px;}
.yc3{bottom:248.323950px;}
.y2bb{bottom:249.531150px;}
.y20c{bottom:250.083750px;}
.y17{bottom:250.223850px;}
.y9e{bottom:251.040450px;}
.y2a1{bottom:251.220450px;}
.y11e{bottom:251.560050px;}
.y1de{bottom:252.575850px;}
.y6c{bottom:257.929500px;}
.y23d{bottom:258.812100px;}
.y266{bottom:259.145700px;}
.yf8{bottom:261.812100px;}
.y2ba{bottom:266.031150px;}
.y16{bottom:266.723850px;}
.y32{bottom:266.905500px;}
.y164{bottom:267.091500px;}
.yc2{bottom:267.823950px;}
.y2a0{bottom:269.220450px;}
.y20b{bottom:269.583750px;}
.y143{bottom:270.315900px;}
.y11d{bottom:271.060050px;}
.y1dd{bottom:272.075850px;}
.y265{bottom:277.145700px;}
.y6b{bottom:277.423500px;}
.y14f{bottom:278.087700px;}
.yf7{bottom:281.312100px;}
.y2b9{bottom:282.531150px;}
.y15{bottom:283.223850px;}
.y163{bottom:286.591500px;}
.y23c{bottom:286.815900px;}
.y29f{bottom:287.220450px;}
.yc1{bottom:287.323950px;}
.y20a{bottom:289.083750px;}
.y142{bottom:289.815900px;}
.y11c{bottom:290.560050px;}
.y1dc{bottom:291.575850px;}
.y9d{bottom:291.800250px;}
.y264{bottom:295.145700px;}
.y6a{bottom:296.917500px;}
.y14e{bottom:297.587700px;}
.y2b8{bottom:299.031150px;}
.y14{bottom:299.723850px;}
.yf6{bottom:300.812100px;}
.y29e{bottom:305.220450px;}
.y162{bottom:306.091500px;}
.yc0{bottom:306.823950px;}
.y31{bottom:307.677300px;}
.y209{bottom:308.583750px;}
.y141{bottom:309.315900px;}
.y11b{bottom:310.060050px;}
.y1db{bottom:311.075850px;}
.y9c{bottom:311.300250px;}
.y263{bottom:313.145700px;}
.y23b{bottom:314.831850px;}
.y2b7{bottom:315.531150px;}
.y69{bottom:316.411500px;}
.y14d{bottom:317.087700px;}
.yf5{bottom:320.312100px;}
.y29d{bottom:323.220450px;}
.y161{bottom:325.591500px;}
.ybf{bottom:326.323950px;}
.y30{bottom:327.171300px;}
.y208{bottom:328.083750px;}
.y140{bottom:328.815900px;}
.y11a{bottom:329.560050px;}
.y9b{bottom:330.800250px;}
.y262{bottom:331.145700px;}
.y23a{bottom:334.325850px;}
.y68{bottom:335.905500px;}
.y14c{bottom:336.587700px;}
.y29c{bottom:341.220450px;}
.y13{bottom:341.735850px;}
.y160{bottom:345.091500px;}
.y2f{bottom:346.665300px;}
.y207{bottom:347.583750px;}
.y13f{bottom:348.315900px;}
.y119{bottom:349.060050px;}
.y261{bottom:349.145700px;}
.y9a{bottom:350.300250px;}
.yf4{bottom:352.567950px;}
.y239{bottom:353.819850px;}
.ybe{bottom:354.327750px;}
.y67{bottom:355.399500px;}
.y14b{bottom:356.087700px;}
.y2b6{bottom:357.543150px;}
.y12{bottom:358.235850px;}
.y1ef{bottom:359.161350px;}
.y29b{bottom:359.220450px;}
.y15f{bottom:364.591650px;}
.y2e{bottom:366.165300px;}
.y206{bottom:367.083750px;}
.y260{bottom:367.145700px;}
.y13e{bottom:367.816050px;}
.y99{bottom:369.800250px;}
.yf3{bottom:372.067950px;}
.ybd{bottom:373.827750px;}
.y2b5{bottom:374.043150px;}
.y1ee{bottom:374.161350px;}
.y11{bottom:374.735850px;}
.y66{bottom:374.893500px;}
.y14a{bottom:375.587700px;}
.y118{bottom:377.064000px;}
.y29a{bottom:377.220450px;}
.y238{bottom:381.823950px;}
.y15e{bottom:384.091650px;}
.y25f{bottom:385.145700px;}
.y2d{bottom:385.731450px;}
.y205{bottom:386.583750px;}
.y13d{bottom:387.316050px;}
.y1ed{bottom:389.161350px;}
.y2b4{bottom:390.543150px;}
.y10{bottom:391.235850px;}
.yf2{bottom:391.567950px;}
.ybc{bottom:393.327750px;}
.y65{bottom:394.387500px;}
.y149{bottom:395.087700px;}
.y299{bottom:395.220450px;}
.y117{bottom:396.564000px;}
.y98{bottom:402.056100px;}
.y25e{bottom:403.145700px;}
.y15d{bottom:403.591650px;}
.y2c{bottom:405.225450px;}
.y1b3{bottom:405.769650px;}
.y204{bottom:406.083750px;}
.y13c{bottom:406.816050px;}
.yf{bottom:407.735850px;}
.y237{bottom:409.827750px;}
.ybb{bottom:412.827750px;}
.y298{bottom:413.220450px;}
.y1ec{bottom:414.606750px;}
.y116{bottom:416.064000px;}
.y25d{bottom:421.145700px;}
.y1b2{bottom:422.269650px;}
.y64{bottom:422.386500px;}
.yf1{bottom:423.823950px;}
.ye{bottom:424.235850px;}
.y2b{bottom:424.719450px;}
.y203{bottom:425.583750px;}
.y97{bottom:425.808150px;}
.y13b{bottom:426.316050px;}
.y1eb{bottom:429.606750px;}
.y1f6{bottom:430.936950px;}
.y297{bottom:431.220450px;}
.yba{bottom:432.327750px;}
.y2b3{bottom:432.555150px;}
.y115{bottom:435.564000px;}
.y1b1{bottom:438.769650px;}
.y25c{bottom:439.145700px;}
.yd{bottom:440.735850px;}
.y63{bottom:441.880500px;}
.yf0{bottom:443.323950px;}
.y2a{bottom:444.213450px;}
.y202{bottom:445.083750px;}
.y96{bottom:445.308150px;}
.y13a{bottom:445.816050px;}
.y1f5{bottom:447.436950px;}
.y2b2{bottom:449.055150px;}
.y296{bottom:449.220450px;}
.y18c{bottom:452.704800px;}
.y1ea{bottom:455.052150px;}
.y114{bottom:455.064000px;}
.y1b0{bottom:455.269650px;}
.y25b{bottom:457.145700px;}
.yb9{bottom:460.331700px;}
.y62{bottom:461.374500px;}
.y236{bottom:462.288450px;}
.yef{bottom:462.823950px;}
.y29{bottom:463.707450px;}
.y201{bottom:464.583750px;}
.y139{bottom:465.316050px;}
.y2b1{bottom:465.555150px;}
.y295{bottom:467.220450px;}
.y1f4{bottom:468.189000px;}
.y1e9{bottom:470.052150px;}
.y1af{bottom:471.769650px;}
.y113{bottom:474.564000px;}
.y25a{bottom:475.145700px;}
.y95{bottom:477.564000px;}
.y18b{bottom:478.150200px;}
.y61{bottom:480.868500px;}
.y235{bottom:481.782450px;}
.y2b0{bottom:482.055150px;}
.yee{bottom:482.323950px;}
.y28{bottom:483.201450px;}
.y200{bottom:484.083750px;}
.y1f3{bottom:484.689000px;}
.y138{bottom:484.816050px;}
.y294{bottom:485.220450px;}
.y259{bottom:493.145700px;}
.y18a{bottom:493.150200px;}
.y112{bottom:494.064000px;}
.y1e8{bottom:495.497550px;}
.y94{bottom:497.064000px;}
.y2af{bottom:498.555150px;}
.y1ae{bottom:500.064000px;}
.y60{bottom:500.362500px;}
.yb8{bottom:501.091650px;}
.y1f2{bottom:501.189000px;}
.y234{bottom:501.276450px;}
.yed{bottom:501.823950px;}
.y27{bottom:502.695450px;}
.y293{bottom:503.220450px;}
.yc{bottom:504.011850px;}
.y137{bottom:504.316050px;}
.y189{bottom:508.150200px;}
.y1e7{bottom:510.497550px;}
.y258{bottom:511.145700px;}
.y1ff{bottom:512.087700px;}
.y111{bottom:513.564000px;}
.y2ae{bottom:515.055150px;}
.y93{bottom:516.564000px;}
.y1f1{bottom:517.689000px;}
.y1ad{bottom:519.564000px;}
.y5f{bottom:519.856500px;}
.yb7{bottom:520.591650px;}
.y233{bottom:520.770450px;}
.y292{bottom:521.220450px;}
.yec{bottom:521.323950px;}
.y26{bottom:522.189450px;}
.y136{bottom:523.816050px;}
.yb{bottom:524.759850px;}
.y1e6{bottom:525.497550px;}
.y257{bottom:529.145700px;}
.y2ad{bottom:531.555150px;}
.y1fe{bottom:531.587700px;}
.y110{bottom:533.064000px;}
.y188{bottom:533.595450px;}
.y1f0{bottom:534.189000px;}
.y92{bottom:536.064000px;}
.y1ac{bottom:539.064000px;}
.y291{bottom:539.220450px;}
.y5e{bottom:539.350500px;}
.yb6{bottom:540.091650px;}
.y232{bottom:540.264450px;}
.yeb{bottom:540.823950px;}
.ya{bottom:541.259850px;}
.y25{bottom:541.683450px;}
.y135{bottom:543.316050px;}
.y256{bottom:547.145700px;}
.y2ac{bottom:548.055150px;}
.y187{bottom:548.595450px;}
.y1fd{bottom:551.087700px;}
.y10f{bottom:552.564000px;}
.y91{bottom:555.564000px;}
.y290{bottom:557.220450px;}
.y9{bottom:557.759850px;}
.y1ab{bottom:558.564000px;}
.y5d{bottom:558.844500px;}
.yb5{bottom:559.591650px;}
.y231{bottom:559.758450px;}
.y24{bottom:561.177450px;}
.y134{bottom:562.816050px;}
.y186{bottom:563.595450px;}
.y255{bottom:565.145700px;}
.yea{bottom:568.827750px;}
.y1fc{bottom:570.587700px;}
.y10e{bottom:572.064000px;}
.y1da{bottom:573.079800px;}
.y8{bottom:574.259850px;}
.y90{bottom:575.064000px;}
.y28f{bottom:575.220450px;}
.y1aa{bottom:578.064000px;}
.y5c{bottom:578.338500px;}
.yb4{bottom:579.091650px;}
.y230{bottom:579.252450px;}
.y23{bottom:580.671450px;}
.y254{bottom:583.145700px;}
.y133{bottom:586.567950px;}
.ye9{bottom:588.327750px;}
.y1fb{bottom:590.087700px;}
.y185{bottom:590.595450px;}
.y7{bottom:590.759850px;}
.y10d{bottom:591.564000px;}
.y1d9{bottom:592.579800px;}
.y28e{bottom:593.220450px;}
.y1a9{bottom:597.564000px;}
.y5b{bottom:597.832500px;}
.yb3{bottom:598.591650px;}
.y22f{bottom:598.746450px;}
.y22{bottom:600.165450px;}
.y8f{bottom:603.067950px;}
.y184{bottom:605.595450px;}
.ye8{bottom:607.827750px;}
.y1fa{bottom:609.587700px;}
.y253{bottom:609.649650px;}
.y10c{bottom:611.064000px;}
.y28d{bottom:611.220450px;}
.y6{bottom:611.507850px;}
.y1d8{bottom:612.079800px;}
.y1a8{bottom:617.064000px;}
.y5a{bottom:617.326500px;}
.yb2{bottom:618.091650px;}
.y22e{bottom:618.240450px;}
.y8e{bottom:622.567950px;}
.ye7{bottom:627.327750px;}
.y21{bottom:628.169250px;}
.y28c{bottom:629.220450px;}
.y10b{bottom:630.564000px;}
.y183{bottom:631.040850px;}
.y1d7{bottom:631.579800px;}
.y5{bottom:632.255850px;}
.y1a7{bottom:636.564000px;}
.y59{bottom:636.820500px;}
.yb1{bottom:637.591650px;}
.y8d{bottom:642.067950px;}
.y182{bottom:646.040850px;}
.y22d{bottom:646.239450px;}
.ye6{bottom:646.827750px;}
.y28b{bottom:647.220450px;}
.y1d6{bottom:651.079800px;}
.y1a6{bottom:656.064000px;}
.yb0{bottom:657.091650px;}
.y10a{bottom:658.567950px;}
.y181{bottom:661.040850px;}
.y8c{bottom:661.567950px;}
.y252{bottom:661.919400px;}
.y58{bottom:664.819500px;}
.y28a{bottom:665.220450px;}
.y22c{bottom:665.733450px;}
.ye5{bottom:666.327750px;}
.y1d5{bottom:670.579800px;}
.y1a5{bottom:675.564000px;}
.yaf{bottom:676.591650px;}
.y8b{bottom:681.067950px;}
.y251{bottom:681.413400px;}
.y289{bottom:683.220450px;}
.y57{bottom:684.313500px;}
.y22b{bottom:685.227450px;}
.ye4{bottom:685.827750px;}
.y1d4{bottom:690.079800px;}
.y180{bottom:694.040850px;}
.y1a4{bottom:695.064000px;}
.y1f9{bottom:696.091650px;}
.y109{bottom:699.327750px;}
.y8a{bottom:700.567950px;}
.y288{bottom:701.220450px;}
.y56{bottom:703.807500px;}
.y22a{bottom:704.721450px;}
.y132{bottom:705.327750px;}
.y3d{bottom:706.405350px;}
.y17f{bottom:709.040850px;}
.y250{bottom:709.417350px;}
.y1d3{bottom:709.579800px;}
.ye3{bottom:713.831700px;}
.y1a3{bottom:714.564000px;}
.y1f8{bottom:715.591650px;}
.y108{bottom:718.827750px;}
.y287{bottom:719.220450px;}
.y89{bottom:720.067950px;}
.y55{bottom:723.301500px;}
.y17e{bottom:724.040850px;}
.y229{bottom:724.215450px;}
.y131{bottom:724.827750px;}
.yd6{bottom:728.472900px;}
.y1d2{bottom:729.079800px;}
.y20{bottom:731.409300px;}
.y1f7{bottom:735.091650px;}
.y286{bottom:737.220450px;}
.y1a2{bottom:738.316050px;}
.y107{bottom:738.327750px;}
.y88{bottom:739.567950px;}
.y54{bottom:742.795500px;}
.yd5{bottom:743.472900px;}
.y228{bottom:743.709450px;}
.y130{bottom:744.327750px;}
.y1d1{bottom:748.579800px;}
.y17d{bottom:749.486250px;}
.ye2{bottom:754.591500px;}
.y285{bottom:755.220450px;}
.y106{bottom:757.827750px;}
.y1f{bottom:757.913250px;}
.yd4{bottom:758.472900px;}
.y87{bottom:759.067950px;}
.y24f{bottom:761.687100px;}
.y53{bottom:762.289500px;}
.y227{bottom:763.203450px;}
.y12f{bottom:763.827750px;}
.y17c{bottom:764.486250px;}
.y1a1{bottom:766.319850px;}
.y1d0{bottom:768.079800px;}
.y284{bottom:773.220450px;}
.yd3{bottom:773.472900px;}
.ye1{bottom:774.091500px;}
.y105{bottom:777.327750px;}
.y86{bottom:778.567950px;}
.y17b{bottom:779.486250px;}
.y24e{bottom:781.181100px;}
.y52{bottom:781.783500px;}
.y226{bottom:782.697450px;}
.y1cf{bottom:787.579800px;}
.yd2{bottom:788.472900px;}
.y283{bottom:791.220450px;}
.y12e{bottom:791.831700px;}
.ye0{bottom:793.591500px;}
.y1a0{bottom:794.323950px;}
.y104{bottom:796.827750px;}
.y85{bottom:798.067950px;}
.y51{bottom:801.277500px;}
.y225{bottom:802.191450px;}
.y17a{bottom:804.931650px;}
.y1ce{bottom:807.079800px;}
.y24d{bottom:809.185050px;}
.y282{bottom:809.220450px;}
.y1cb{bottom:813.075300px;}
.ydf{bottom:813.091500px;}
.yd1{bottom:813.918300px;}
.y103{bottom:816.327750px;}
.y84{bottom:817.567950px;}
.y179{bottom:819.931650px;}
.y50{bottom:820.771500px;}
.y224{bottom:821.685450px;}
.y19f{bottom:822.327750px;}
.y281{bottom:827.220450px;}
.yd0{bottom:828.918300px;}
.y1ca{bottom:829.575300px;}
.y15c{bottom:831.933150px;}
.y12d{bottom:832.591500px;}
.y178{bottom:834.931650px;}
.y1cd{bottom:835.083750px;}
.y83{bottom:837.067950px;}
.y4{bottom:839.344500px;}
.y1e{bottom:839.365650px;}
.y4f{bottom:840.265500px;}
.yde{bottom:841.095450px;}
.y223{bottom:841.179450px;}
.ycf{bottom:843.918300px;}
.y102{bottom:844.331700px;}
.y280{bottom:845.220450px;}
.y1c9{bottom:846.075300px;}
.y15b{bottom:848.433150px;}
.y12c{bottom:852.091500px;}
.y19e{bottom:854.583750px;}
.y24c{bottom:857.196900px;}
.y4e{bottom:859.759500px;}
.yd9{bottom:860.055150px;}
.ydd{bottom:860.595450px;}
.y222{bottom:860.673450px;}
.y177{bottom:861.931650px;}
.y27f{bottom:863.220450px;}
.y2d5{bottom:863.223150px;}
.y15a{bottom:864.933150px;}
.y82{bottom:865.071900px;}
.y101{bottom:866.831700px;}
.yce{bottom:869.363550px;}
.y12b{bottom:871.591500px;}
.y24b{bottom:873.700950px;}
.y19d{bottom:874.083750px;}
.y3{bottom:876.094500px;}
.yd8{bottom:876.555150px;}
.y176{bottom:876.931650px;}
.y4d{bottom:879.253500px;}
.ydc{bottom:880.095450px;}
.y221{bottom:880.167450px;}
.y27e{bottom:881.220450px;}
.y2d4{bottom:881.223150px;}
.y1d{bottom:881.352150px;}
.ycd{bottom:884.363550px;}
.y1bf{bottom:885.714600px;}
.y12a{bottom:891.091500px;}
.yd7{bottom:893.055150px;}
.y19c{bottom:893.583750px;}
.y24a{bottom:894.448950px;}
.y81{bottom:897.327750px;}
.y4c{bottom:898.747500px;}
.y27d{bottom:899.220450px;}
.y2d3{bottom:899.223150px;}
.ydb{bottom:899.595450px;}
.y220{bottom:899.661450px;}
.y2{bottom:900.094500px;}
.y1be{bottom:905.214600px;}
.y175{bottom:909.931650px;}
.y129{bottom:910.591500px;}
.y249{bottom:910.948950px;}
.y19b{bottom:913.083750px;}
.y27c{bottom:917.220450px;}
.y2d2{bottom:917.223150px;}
.y1cc{bottom:917.335650px;}
.yda{bottom:919.095450px;}
.y21f{bottom:919.155450px;}
.y1c{bottom:923.338650px;}
.y1{bottom:924.094500px;}
.y1bd{bottom:924.714600px;}
.y174{bottom:924.931650px;}
.y4b{bottom:926.746500px;}
.y248{bottom:927.448950px;}
.y128{bottom:930.091500px;}
.y19a{bottom:932.583750px;}
.y27b{bottom:935.220450px;}
.y2d1{bottom:935.223150px;}
.yae{bottom:938.595450px;}
.y21e{bottom:938.649450px;}
.y173{bottom:939.931650px;}
.y193{bottom:941.261700px;}
.y1bc{bottom:944.214600px;}
.y4a{bottom:946.240500px;}
.y80{bottom:949.591500px;}
.y199{bottom:952.083750px;}
.y247{bottom:952.452750px;}
.y27a{bottom:953.220450px;}
.y2d0{bottom:953.223150px;}
.y192{bottom:957.761700px;}
.yad{bottom:958.095450px;}
.y21d{bottom:958.143450px;}
.y1bb{bottom:963.714600px;}
.y172{bottom:965.377050px;}
.y49{bottom:965.734500px;}
.y7f{bottom:969.091500px;}
.y279{bottom:971.220450px;}
.y2cf{bottom:971.223150px;}
.y198{bottom:971.583750px;}
.y191{bottom:974.261700px;}
.yac{bottom:977.595450px;}
.y21c{bottom:977.637450px;}
.y171{bottom:980.377050px;}
.y48{bottom:985.228500px;}
.y7e{bottom:988.591500px;}
.y278{bottom:989.220450px;}
.y2ce{bottom:989.223150px;}
.y190{bottom:990.761700px;}
.y197{bottom:991.083750px;}
.y1ba{bottom:991.718550px;}
.y170{bottom:995.377050px;}
.yab{bottom:997.095450px;}
.y21b{bottom:997.131450px;}
.y47{bottom:1004.722500px;}
.y246{bottom:1004.740500px;}
.y277{bottom:1007.220450px;}
.y2cd{bottom:1007.223150px;}
.y18f{bottom:1007.261700px;}
.y7d{bottom:1008.091500px;}
.y196{bottom:1010.583750px;}
.y1b9{bottom:1011.218550px;}
.yaa{bottom:1016.595450px;}
.y21a{bottom:1016.625450px;}
.y16f{bottom:1020.822300px;}
.y46{bottom:1024.216500px;}
.y45{bottom:1024.234500px;}
.y276{bottom:1025.220450px;}
.y2cc{bottom:1025.223150px;}
.y7c{bottom:1027.591500px;}
.y18e{bottom:1028.013750px;}
.y195{bottom:1030.083750px;}
.y1b8{bottom:1030.718550px;}
.y16e{bottom:1035.822300px;}
.ya9{bottom:1036.095450px;}
.y219{bottom:1036.119450px;}
.y275{bottom:1043.220450px;}
.y2cb{bottom:1043.223150px;}
.y44{bottom:1043.728500px;}
.y18d{bottom:1044.513750px;}
.y7b{bottom:1047.091500px;}
.y1b7{bottom:1050.218550px;}
.y194{bottom:1053.835650px;}
.ya8{bottom:1055.595450px;}
.y218{bottom:1055.613450px;}
.y274{bottom:1061.220450px;}
.y2ca{bottom:1061.223150px;}
.y43{bottom:1063.222500px;}
.y1b6{bottom:1069.718550px;}
.y7a{bottom:1075.095450px;}
.y217{bottom:1075.107450px;}
.y273{bottom:1079.220450px;}
.y2c9{bottom:1079.223150px;}
.y42{bottom:1082.716500px;}
.y1b5{bottom:1089.218550px;}
.y40{bottom:1089.339450px;}
.y79{bottom:1094.595450px;}
.y216{bottom:1094.601450px;}
.y272{bottom:1097.220450px;}
.y2c8{bottom:1097.223150px;}
.y3f{bottom:1102.842450px;}
.y41{bottom:1110.720450px;}
.y1b4{bottom:1112.970450px;}
.y78{bottom:1114.095450px;}
.y271{bottom:1115.220450px;}
.y2c7{bottom:1115.223150px;}
.y3e{bottom:1116.345450px;}
.h9{height:32.340000px;}
.h8{height:33.012000px;}
.hc{height:35.190000px;}
.hb{height:35.370000px;}
.h4{height:37.536000px;}
.h3{height:37.728000px;}
.h7{height:42.228000px;}
.hd{height:42.600924px;}
.he{height:42.601524px;}
.ha{height:43.171390px;}
.h1{height:46.200000px;}
.h2{height:47.160000px;}
.h6{height:56.592000px;}
.h5{height:106.260000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.x27{left:68.031450px;}
.x18{left:72.283500px;}
.xa{left:77.940750px;}
.x2{left:89.291250px;}
.xd{left:103.023150px;}
.x25{left:114.253950px;}
.x21{left:117.193350px;}
.xe{left:132.790050px;}
.x22{left:147.198750px;}
.x1d{left:173.217150px;}
.x16{left:190.003950px;}
.x28{left:201.781350px;}
.x1e{left:205.627500px;}
.x26{left:209.924400px;}
.xf{left:215.417700px;}
.x10{left:246.840300px;}
.x23{left:289.799400px;}
.x2b{left:295.829550px;}
.x1b{left:313.290900px;}
.x2c{left:327.354450px;}
.x1c{left:343.407900px;}
.x29{left:349.013850px;}
.x1f{left:353.985450px;}
.x24{left:373.003950px;}
.x20{left:383.698650px;}
.x5{left:387.634050px;}
.x6{left:418.225650px;}
.x17{left:431.503950px;}
.x13{left:462.918900px;}
.x11{left:466.663950px;}
.x2a{left:491.734650px;}
.x12{left:497.544450px;}
.x19{left:515.885700px;}
.x14{left:524.140800px;}
.x1a{left:546.045300px;}
.x7{left:547.627200px;}
.x15{left:553.907700px;}
.xb{left:576.213600px;}
.x8{left:578.546250px;}
.xc{left:608.238300px;}
.x9{left:635.875650px;}
.x1{left:682.122000px;}
.x3{left:833.331000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls18{letter-spacing:-2.688000pt;}
.ls14{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.440000pt;}
.ls16{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.195851pt;}
.ls10{letter-spacing:0.334933pt;}
.lse{letter-spacing:0.335467pt;}
.lsd{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.343506pt;}
.ls15{letter-spacing:0.665600pt;}
.ls8{letter-spacing:0.858667pt;}
.lsa{letter-spacing:1.200000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.315200pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.240000pt;}
.lsb{letter-spacing:2.802667pt;}
.ls0{letter-spacing:4.000000pt;}
.lsc{letter-spacing:5.746133pt;}
.ls7{letter-spacing:10.316800pt;}
.ls17{letter-spacing:47.616533pt;}
.ls12{letter-spacing:126.268267pt;}
.ws3{word-spacing:-18.176000pt;}
.ws0{word-spacing:-17.546667pt;}
.wsdb{word-spacing:-15.146667pt;}
.ws2{word-spacing:-12.117333pt;}
.wsb6{word-spacing:-12.096000pt;}
.ws4b{word-spacing:-12.000000pt;}
.ws4c{word-spacing:-11.760000pt;}
.wsdd{word-spacing:-11.360000pt;}
.ws115{word-spacing:-10.837333pt;}
.ws1{word-spacing:-10.666667pt;}
.wsdf{word-spacing:-10.453333pt;}
.ws6d{word-spacing:-10.000000pt;}
.ws6c{word-spacing:-9.800000pt;}
.wsde{word-spacing:-9.560000pt;}
.ws1d{word-spacing:-9.482667pt;}
.ws116{word-spacing:-8.149333pt;}
.ws9c{word-spacing:-6.996000pt;}
.ws112{word-spacing:-6.672000pt;}
.ws113{word-spacing:-6.576000pt;}
.wsce{word-spacing:-6.384000pt;}
.wsae{word-spacing:-5.952000pt;}
.wsad{word-spacing:-5.856000pt;}
.ws8e{word-spacing:-5.424000pt;}
.wsb9{word-spacing:-5.280000pt;}
.ws6f{word-spacing:-4.464000pt;}
.wsd4{word-spacing:-4.416000pt;}
.wsf7{word-spacing:-4.368000pt;}
.ws7{word-spacing:-4.128000pt;}
.ws17{word-spacing:-3.888000pt;}
.ws105{word-spacing:-3.552000pt;}
.ws101{word-spacing:-3.456000pt;}
.wsa1{word-spacing:-3.312000pt;}
.ws69{word-spacing:-3.264000pt;}
.ws108{word-spacing:-3.168000pt;}
.ws8b{word-spacing:-3.120000pt;}
.wsfb{word-spacing:-2.784000pt;}
.ws1c{word-spacing:-2.688000pt;}
.ws78{word-spacing:-2.640000pt;}
.ws16{word-spacing:-2.592000pt;}
.ws93{word-spacing:-2.544000pt;}
.wsb0{word-spacing:-2.496000pt;}
.ws88{word-spacing:-2.448000pt;}
.wsa4{word-spacing:-2.400000pt;}
.ws68{word-spacing:-2.352000pt;}
.wsea{word-spacing:-2.304000pt;}
.wsd7{word-spacing:-2.256000pt;}
.ws1e{word-spacing:-2.208000pt;}
.ws6e{word-spacing:-2.160000pt;}
.ws31{word-spacing:-2.112000pt;}
.ws2a{word-spacing:-2.064000pt;}
.ws1b{word-spacing:-2.016000pt;}
.wsd{word-spacing:-1.968000pt;}
.ws110{word-spacing:-1.920000pt;}
.ws6a{word-spacing:-1.872000pt;}
.wsa7{word-spacing:-1.824000pt;}
.ws42{word-spacing:-1.728000pt;}
.ws36{word-spacing:-1.680000pt;}
.wse7{word-spacing:-1.641067pt;}
.wsa5{word-spacing:-1.632000pt;}
.ws8d{word-spacing:-1.584000pt;}
.wsa0{word-spacing:-1.536000pt;}
.ws10b{word-spacing:-1.344000pt;}
.ws87{word-spacing:-1.296000pt;}
.wse6{word-spacing:-1.200000pt;}
.wsa3{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.008000pt;}
.ws77{word-spacing:-0.960000pt;}
.ws7d{word-spacing:-0.912000pt;}
.ws72{word-spacing:-0.864000pt;}
.ws10c{word-spacing:-0.816000pt;}
.wsc4{word-spacing:-0.785157pt;}
.ws9e{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.720000pt;}
.wsaf{word-spacing:-0.624000pt;}
.wsf8{word-spacing:-0.576000pt;}
.ws13{word-spacing:-0.528000pt;}
.ws8a{word-spacing:-0.480000pt;}
.ws117{word-spacing:-0.469333pt;}
.ws10a{word-spacing:-0.432000pt;}
.ws65{word-spacing:-0.384000pt;}
.ws8c{word-spacing:-0.336000pt;}
.ws3b{word-spacing:-0.288000pt;}
.ws20{word-spacing:-0.240000pt;}
.ws85{word-spacing:-0.200000pt;}
.wsd5{word-spacing:-0.196289pt;}
.ws56{word-spacing:-0.192000pt;}
.wsbe{word-spacing:-0.144000pt;}
.wsef{word-spacing:-0.096000pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws114{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.048000pt;}
.ws3e{word-spacing:0.096000pt;}
.ws2f{word-spacing:0.144000pt;}
.ws91{word-spacing:0.192000pt;}
.wsb4{word-spacing:0.240000pt;}
.ws70{word-spacing:0.288000pt;}
.wsa6{word-spacing:0.336000pt;}
.ws95{word-spacing:0.384000pt;}
.ws18{word-spacing:0.432000pt;}
.wsa9{word-spacing:0.480000pt;}
.ws75{word-spacing:0.528000pt;}
.ws79{word-spacing:0.576000pt;}
.wsda{word-spacing:0.624000pt;}
.wsd8{word-spacing:0.672000pt;}
.wscc{word-spacing:0.720000pt;}
.ws11{word-spacing:0.768000pt;}
.ws64{word-spacing:0.864000pt;}
.wsd6{word-spacing:0.883302pt;}
.ws8f{word-spacing:0.912000pt;}
.ws39{word-spacing:0.960000pt;}
.ws9{word-spacing:1.104000pt;}
.wsa{word-spacing:1.152000pt;}
.ws10f{word-spacing:1.200000pt;}
.wse1{word-spacing:1.248000pt;}
.ws82{word-spacing:1.296000pt;}
.wsb7{word-spacing:1.344000pt;}
.ws97{word-spacing:1.392000pt;}
.ws98{word-spacing:1.423098pt;}
.ws52{word-spacing:1.440000pt;}
.ws28{word-spacing:1.488000pt;}
.wsd9{word-spacing:1.536000pt;}
.ws73{word-spacing:1.584000pt;}
.ws30{word-spacing:1.632000pt;}
.wsed{word-spacing:1.680000pt;}
.wscf{word-spacing:1.728000pt;}
.ws106{word-spacing:1.824000pt;}
.ws25{word-spacing:1.872000pt;}
.wse5{word-spacing:1.920000pt;}
.ws92{word-spacing:1.968000pt;}
.ws57{word-spacing:2.016000pt;}
.ws111{word-spacing:2.064000pt;}
.wsb3{word-spacing:2.112000pt;}
.wsf{word-spacing:2.160000pt;}
.ws83{word-spacing:2.208000pt;}
.ws2c{word-spacing:2.256000pt;}
.ws71{word-spacing:2.304000pt;}
.wsbc{word-spacing:2.352000pt;}
.ws89{word-spacing:2.400000pt;}
.ws49{word-spacing:2.448000pt;}
.ws86{word-spacing:2.496000pt;}
.ws74{word-spacing:2.544000pt;}
.wse8{word-spacing:2.592000pt;}
.ws9a{word-spacing:2.640000pt;}
.wsf2{word-spacing:2.688000pt;}
.ws63{word-spacing:2.736000pt;}
.ws76{word-spacing:2.784000pt;}
.ws45{word-spacing:2.832000pt;}
.wsc1{word-spacing:2.880000pt;}
.ws21{word-spacing:2.928000pt;}
.ws7e{word-spacing:2.976000pt;}
.ws22{word-spacing:2.993413pt;}
.ws3c{word-spacing:3.024000pt;}
.wsba{word-spacing:3.072000pt;}
.ws24{word-spacing:3.168000pt;}
.ws14{word-spacing:3.216000pt;}
.ws7f{word-spacing:3.264000pt;}
.ws23{word-spacing:3.312000pt;}
.wsfe{word-spacing:3.360000pt;}
.ws4d{word-spacing:3.504000pt;}
.ws5e{word-spacing:3.600000pt;}
.ws6b{word-spacing:3.648000pt;}
.wsc0{word-spacing:3.696000pt;}
.wscd{word-spacing:3.744000pt;}
.ws3a{word-spacing:3.792000pt;}
.ws96{word-spacing:3.840000pt;}
.ws107{word-spacing:3.936000pt;}
.ws61{word-spacing:3.984000pt;}
.ws29{word-spacing:4.032000pt;}
.ws62{word-spacing:4.073004pt;}
.ws46{word-spacing:4.080000pt;}
.wse2{word-spacing:4.128000pt;}
.ws47{word-spacing:4.171149pt;}
.ws1a{word-spacing:4.224000pt;}
.ws67{word-spacing:4.272000pt;}
.ws10e{word-spacing:4.320000pt;}
.ws9d{word-spacing:4.368000pt;}
.wsff{word-spacing:4.416000pt;}
.ws33{word-spacing:4.464000pt;}
.ws38{word-spacing:4.512000pt;}
.ws12{word-spacing:4.560000pt;}
.wsab{word-spacing:4.608000pt;}
.ws7a{word-spacing:4.704000pt;}
.ws90{word-spacing:4.752000pt;}
.ws103{word-spacing:4.800000pt;}
.wse3{word-spacing:4.848000pt;}
.wsee{word-spacing:4.896000pt;}
.ws1f{word-spacing:4.992000pt;}
.wsd2{word-spacing:5.040000pt;}
.ws80{word-spacing:5.088000pt;}
.ws2b{word-spacing:5.136000pt;}
.ws48{word-spacing:5.184000pt;}
.wsc{word-spacing:5.232000pt;}
.wsb2{word-spacing:5.280000pt;}
.ws3d{word-spacing:5.328000pt;}
.wsbd{word-spacing:5.424000pt;}
.ws32{word-spacing:5.472000pt;}
.ws40{word-spacing:5.520000pt;}
.wsf1{word-spacing:5.568000pt;}
.ws53{word-spacing:5.616000pt;}
.ws9b{word-spacing:5.664000pt;}
.wsb{word-spacing:5.760000pt;}
.wsb1{word-spacing:5.856000pt;}
.ws58{word-spacing:5.904000pt;}
.ws6{word-spacing:5.952000pt;}
.ws51{word-spacing:6.000000pt;}
.ws59{word-spacing:6.035898pt;}
.ws84{word-spacing:6.096000pt;}
.wse{word-spacing:6.144000pt;}
.wsf9{word-spacing:6.192000pt;}
.ws26{word-spacing:6.240000pt;}
.wsf6{word-spacing:6.288000pt;}
.ws37{word-spacing:6.336000pt;}
.wsfd{word-spacing:6.379404pt;}
.wsac{word-spacing:6.384000pt;}
.ws54{word-spacing:6.432000pt;}
.ws41{word-spacing:6.480000pt;}
.wsa8{word-spacing:6.624000pt;}
.wsb5{word-spacing:6.672000pt;}
.ws5{word-spacing:6.720000pt;}
.wsd0{word-spacing:6.768000pt;}
.ws55{word-spacing:6.816000pt;}
.wsd1{word-spacing:6.912000pt;}
.ws35{word-spacing:6.960000pt;}
.ws10{word-spacing:7.056000pt;}
.ws81{word-spacing:7.104000pt;}
.wseb{word-spacing:7.152000pt;}
.wse0{word-spacing:7.344000pt;}
.wscb{word-spacing:7.392000pt;}
.ws5c{word-spacing:7.488000pt;}
.ws9f{word-spacing:7.536000pt;}
.wsca{word-spacing:7.557140pt;}
.wsc3{word-spacing:7.584000pt;}
.wsf0{word-spacing:7.680000pt;}
.ws60{word-spacing:7.824000pt;}
.ws19{word-spacing:7.872000pt;}
.ws4e{word-spacing:8.016000pt;}
.ws5a{word-spacing:8.064000pt;}
.ws34{word-spacing:8.112000pt;}
.wsc5{word-spacing:8.160000pt;}
.ws4f{word-spacing:8.195081pt;}
.wsfa{word-spacing:8.256000pt;}
.ws50{word-spacing:8.352000pt;}
.wse4{word-spacing:8.496000pt;}
.ws43{word-spacing:8.592000pt;}
.ws3f{word-spacing:8.688000pt;}
.wsbf{word-spacing:8.832000pt;}
.wsbb{word-spacing:8.976000pt;}
.ws7c{word-spacing:9.120000pt;}
.ws99{word-spacing:9.360000pt;}
.wsc8{word-spacing:9.456000pt;}
.wsc7{word-spacing:9.600000pt;}
.wse9{word-spacing:9.744000pt;}
.ws5b{word-spacing:10.320000pt;}
.wsfc{word-spacing:10.368000pt;}
.wsf5{word-spacing:10.512000pt;}
.wsb8{word-spacing:10.608000pt;}
.ws100{word-spacing:10.800000pt;}
.wsc9{word-spacing:10.896000pt;}
.ws44{word-spacing:10.944000pt;}
.wsd3{word-spacing:10.992000pt;}
.wsc2{word-spacing:11.040000pt;}
.ws94{word-spacing:11.088000pt;}
.ws66{word-spacing:11.136000pt;}
.ws5d{word-spacing:11.232000pt;}
.ws109{word-spacing:11.328000pt;}
.ws5f{word-spacing:11.808000pt;}
.wsa2{word-spacing:11.952000pt;}
.ws7b{word-spacing:12.528000pt;}
.ws27{word-spacing:12.720000pt;}
.wsc6{word-spacing:12.960000pt;}
.ws8{word-spacing:13.680000pt;}
.wsec{word-spacing:13.920000pt;}
.ws10d{word-spacing:15.984000pt;}
.ws104{word-spacing:16.416000pt;}
.ws102{word-spacing:17.136000pt;}
.ws15{word-spacing:20.208000pt;}
.wsdc{word-spacing:92.188267pt;}
.wsf4{word-spacing:395.971733pt;}
.wsf3{word-spacing:428.571733pt;}
._6{margin-left:-609.158400pt;}
._9{margin-left:-608.045867pt;}
._5{margin-left:-606.512000pt;}
._c{margin-left:-5.109333pt;}
._0{margin-left:-4.000000pt;}
._2{margin-left:-2.773333pt;}
._1{margin-left:-1.760000pt;}
._3{width:1.546667pt;}
._4{width:2.800000pt;}
._b{width:4.659200pt;}
._8{width:6.648533pt;}
._7{width:8.027200pt;}
._21{width:48.012800pt;}
._20{width:51.156800pt;}
._1d{width:68.196800pt;}
._d{width:90.001600pt;}
._e{width:96.520000pt;}
._1b{width:100.281600pt;}
._19{width:103.308267pt;}
._f{width:126.268267pt;}
._10{width:165.161600pt;}
._1c{width:184.600000pt;}
._13{width:194.358400pt;}
._17{width:195.681600pt;}
._1a{width:197.401600pt;}
._14{width:201.721600pt;}
._11{width:215.120000pt;}
._16{width:218.921600pt;}
._12{width:226.958400pt;}
._15{width:228.161600pt;}
._18{width:238.080000pt;}
._1e{width:454.613333pt;}
._a{width:473.520000pt;}
._1f{width:477.573333pt;}
.fs8{font-size:27.984000pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:49.072339pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:49.614133pt;}
.y159{bottom:51.178533pt;}
.y245{bottom:53.593200pt;}
.y16d{bottom:54.958000pt;}
.y3c{bottom:56.404933pt;}
.y2c6{bottom:56.696133pt;}
.y215{bottom:58.737600pt;}
.y1e5{bottom:58.937067pt;}
.ya7{bottom:59.588000pt;}
.y127{bottom:60.049867pt;}
.y2ab{bottom:63.307067pt;}
.y77{bottom:65.511867pt;}
.y76{bottom:65.522533pt;}
.y158{bottom:68.511867pt;}
.y1c8{bottom:69.076133pt;}
.y270{bottom:70.351733pt;}
.ycb{bottom:70.727067pt;}
.y2c5{bottom:71.362800pt;}
.y16c{bottom:72.291333pt;}
.y3b{bottom:73.732933pt;}
.y214{bottom:76.070933pt;}
.y1e4{bottom:76.270400pt;}
.y148{bottom:76.721867pt;}
.ya6{bottom:76.921333pt;}
.y126{bottom:77.383200pt;}
.y244{bottom:78.490933pt;}
.y2aa{bottom:79.307067pt;}
.y75{bottom:82.850533pt;}
.y157{bottom:85.845200pt;}
.y2c4{bottom:86.029467pt;}
.y26f{bottom:86.351733pt;}
.y1c7{bottom:86.409467pt;}
.y100{bottom:86.496133pt;}
.yca{bottom:88.060400pt;}
.y16b{bottom:89.624667pt;}
.y3a{bottom:91.060933pt;}
.y213{bottom:93.404267pt;}
.y147{bottom:94.055200pt;}
.ya5{bottom:94.254667pt;}
.y125{bottom:94.716533pt;}
.y2a9{bottom:95.307067pt;}
.y243{bottom:95.818933pt;}
.y74{bottom:100.178533pt;}
.y73{bottom:100.414667pt;}
.y1e3{bottom:101.162800pt;}
.y26e{bottom:102.351733pt;}
.y156{bottom:103.178533pt;}
.y1c6{bottom:103.742800pt;}
.yff{bottom:103.829467pt;}
.y2c3{bottom:104.472133pt;}
.yc9{bottom:105.393733pt;}
.y39{bottom:108.388933pt;}
.y212{bottom:110.737600pt;}
.y2a8{bottom:111.307067pt;}
.y146{bottom:111.388533pt;}
.ya4{bottom:111.588000pt;}
.y124{bottom:112.049867pt;}
.y16a{bottom:114.517067pt;}
.y72{bottom:117.742667pt;}
.y26d{bottom:118.351733pt;}
.y1e2{bottom:118.496133pt;}
.y2c2{bottom:119.138800pt;}
.y155{bottom:120.511867pt;}
.y242{bottom:120.711333pt;}
.y1c5{bottom:121.076133pt;}
.yfe{bottom:121.162800pt;}
.y38{bottom:125.716933pt;}
.y2a7{bottom:127.307067pt;}
.y211{bottom:128.070933pt;}
.y145{bottom:128.721867pt;}
.ya3{bottom:128.921333pt;}
.y123{bottom:129.383200pt;}
.y169{bottom:131.850400pt;}
.y2c1{bottom:133.805467pt;}
.yc8{bottom:134.065733pt;}
.y26c{bottom:134.351733pt;}
.y71{bottom:135.070667pt;}
.y1e1{bottom:135.829467pt;}
.y154{bottom:137.845200pt;}
.y1c4{bottom:138.409467pt;}
.yfd{bottom:138.496133pt;}
.y37{bottom:143.044933pt;}
.y2a6{bottom:143.307067pt;}
.y210{bottom:145.404267pt;}
.y241{bottom:145.603733pt;}
.y144{bottom:146.055200pt;}
.ya2{bottom:146.254667pt;}
.y2c0{bottom:148.472133pt;}
.y26b{bottom:150.351733pt;}
.yc7{bottom:151.399067pt;}
.y1e0{bottom:153.162800pt;}
.y122{bottom:154.275600pt;}
.y153{bottom:155.178533pt;}
.y1c3{bottom:155.742800pt;}
.y2a5{bottom:159.307067pt;}
.y70{bottom:159.958667pt;}
.y36{bottom:160.372933pt;}
.y20f{bottom:162.737600pt;}
.y2bf{bottom:163.138800pt;}
.yfc{bottom:163.388533pt;}
.ya1{bottom:163.588000pt;}
.y1b{bottom:163.754533pt;}
.y26a{bottom:166.351733pt;}
.y168{bottom:168.081333pt;}
.yc6{bottom:168.732400pt;}
.y240{bottom:170.506800pt;}
.y121{bottom:171.608933pt;}
.y152{bottom:172.511867pt;}
.y1c2{bottom:173.076133pt;}
.y2a4{bottom:175.307067pt;}
.y6f{bottom:177.286667pt;}
.y35{bottom:177.700933pt;}
.y2be{bottom:177.805467pt;}
.y1df{bottom:178.055200pt;}
.y1a{bottom:178.421200pt;}
.y20e{bottom:180.070933pt;}
.yfb{bottom:180.721867pt;}
.ya0{bottom:180.921333pt;}
.y269{bottom:182.351733pt;}
.y167{bottom:185.414667pt;}
.yc5{bottom:186.065733pt;}
.y23f{bottom:187.834800pt;}
.y120{bottom:188.942267pt;}
.y151{bottom:189.845200pt;}
.y1c1{bottom:190.409467pt;}
.y2a3{bottom:191.307067pt;}
.y2bd{bottom:192.472133pt;}
.y19{bottom:193.087867pt;}
.y6e{bottom:194.614667pt;}
.y34{bottom:195.028933pt;}
.yfa{bottom:198.055200pt;}
.y9f{bottom:198.254667pt;}
.y268{bottom:198.351733pt;}
.y166{bottom:202.748000pt;}
.yc4{bottom:203.399067pt;}
.y20d{bottom:204.963333pt;}
.y23e{bottom:205.162800pt;}
.y11f{bottom:206.275600pt;}
.y2bc{bottom:207.138800pt;}
.y2a2{bottom:207.307067pt;}
.y1c0{bottom:207.742800pt;}
.y18{bottom:207.754533pt;}
.y150{bottom:210.958000pt;}
.y6d{bottom:211.942667pt;}
.y33{bottom:212.356933pt;}
.y267{bottom:214.351733pt;}
.yf9{bottom:215.388533pt;}
.y165{bottom:220.081333pt;}
.yc3{bottom:220.732400pt;}
.y2bb{bottom:221.805467pt;}
.y20c{bottom:222.296667pt;}
.y17{bottom:222.421200pt;}
.y9e{bottom:223.147067pt;}
.y2a1{bottom:223.307067pt;}
.y11e{bottom:223.608933pt;}
.y1de{bottom:224.511867pt;}
.y6c{bottom:229.270667pt;}
.y23d{bottom:230.055200pt;}
.y266{bottom:230.351733pt;}
.yf8{bottom:232.721867pt;}
.y2ba{bottom:236.472133pt;}
.y16{bottom:237.087867pt;}
.y32{bottom:237.249333pt;}
.y164{bottom:237.414667pt;}
.yc2{bottom:238.065733pt;}
.y2a0{bottom:239.307067pt;}
.y20b{bottom:239.630000pt;}
.y143{bottom:240.280800pt;}
.y11d{bottom:240.942267pt;}
.y1dd{bottom:241.845200pt;}
.y265{bottom:246.351733pt;}
.y6b{bottom:246.598667pt;}
.y14f{bottom:247.189067pt;}
.yf7{bottom:250.055200pt;}
.y2b9{bottom:251.138800pt;}
.y15{bottom:251.754533pt;}
.y163{bottom:254.748000pt;}
.y23c{bottom:254.947467pt;}
.y29f{bottom:255.307067pt;}
.yc1{bottom:255.399067pt;}
.y20a{bottom:256.963333pt;}
.y142{bottom:257.614133pt;}
.y11c{bottom:258.275600pt;}
.y1dc{bottom:259.178533pt;}
.y9d{bottom:259.378000pt;}
.y264{bottom:262.351733pt;}
.y6a{bottom:263.926667pt;}
.y14e{bottom:264.522400pt;}
.y2b8{bottom:265.805467pt;}
.y14{bottom:266.421200pt;}
.yf6{bottom:267.388533pt;}
.y29e{bottom:271.307067pt;}
.y162{bottom:272.081333pt;}
.yc0{bottom:272.732400pt;}
.y31{bottom:273.490933pt;}
.y209{bottom:274.296667pt;}
.y141{bottom:274.947467pt;}
.y11b{bottom:275.608933pt;}
.y1db{bottom:276.511867pt;}
.y9c{bottom:276.711333pt;}
.y263{bottom:278.351733pt;}
.y23b{bottom:279.850533pt;}
.y2b7{bottom:280.472133pt;}
.y69{bottom:281.254667pt;}
.y14d{bottom:281.855733pt;}
.yf5{bottom:284.721867pt;}
.y29d{bottom:287.307067pt;}
.y161{bottom:289.414667pt;}
.ybf{bottom:290.065733pt;}
.y30{bottom:290.818933pt;}
.y208{bottom:291.630000pt;}
.y140{bottom:292.280800pt;}
.y11a{bottom:292.942267pt;}
.y9b{bottom:294.044667pt;}
.y262{bottom:294.351733pt;}
.y23a{bottom:297.178533pt;}
.y68{bottom:298.582667pt;}
.y14c{bottom:299.189067pt;}
.y29c{bottom:303.307067pt;}
.y13{bottom:303.765200pt;}
.y160{bottom:306.748000pt;}
.y2f{bottom:308.146933pt;}
.y207{bottom:308.963333pt;}
.y13f{bottom:309.614133pt;}
.y119{bottom:310.275600pt;}
.y261{bottom:310.351733pt;}
.y9a{bottom:311.378000pt;}
.yf4{bottom:313.393733pt;}
.y239{bottom:314.506533pt;}
.ybe{bottom:314.958000pt;}
.y67{bottom:315.910667pt;}
.y14b{bottom:316.522400pt;}
.y2b6{bottom:317.816133pt;}
.y12{bottom:318.431867pt;}
.y1ef{bottom:319.254533pt;}
.y29b{bottom:319.307067pt;}
.y15f{bottom:324.081467pt;}
.y2e{bottom:325.480267pt;}
.y206{bottom:326.296667pt;}
.y260{bottom:326.351733pt;}
.y13e{bottom:326.947600pt;}
.y99{bottom:328.711333pt;}
.yf3{bottom:330.727067pt;}
.ybd{bottom:332.291333pt;}
.y2b5{bottom:332.482800pt;}
.y1ee{bottom:332.587867pt;}
.y11{bottom:333.098533pt;}
.y66{bottom:333.238667pt;}
.y14a{bottom:333.855733pt;}
.y118{bottom:335.168000pt;}
.y29a{bottom:335.307067pt;}
.y238{bottom:339.399067pt;}
.y15e{bottom:341.414800pt;}
.y25f{bottom:342.351733pt;}
.y2d{bottom:342.872400pt;}
.y205{bottom:343.630000pt;}
.y13d{bottom:344.280933pt;}
.y1ed{bottom:345.921200pt;}
.y2b4{bottom:347.149467pt;}
.y10{bottom:347.765200pt;}
.yf2{bottom:348.060400pt;}
.ybc{bottom:349.624667pt;}
.y65{bottom:350.566667pt;}
.y149{bottom:351.189067pt;}
.y299{bottom:351.307067pt;}
.y117{bottom:352.501333pt;}
.y98{bottom:357.383200pt;}
.y25e{bottom:358.351733pt;}
.y15d{bottom:358.748133pt;}
.y2c{bottom:360.200400pt;}
.y1b3{bottom:360.684133pt;}
.y204{bottom:360.963333pt;}
.y13c{bottom:361.614267pt;}
.yf{bottom:362.431867pt;}
.y237{bottom:364.291333pt;}
.ybb{bottom:366.958000pt;}
.y298{bottom:367.307067pt;}
.y1ec{bottom:368.539333pt;}
.y116{bottom:369.834667pt;}
.y25d{bottom:374.351733pt;}
.y1b2{bottom:375.350800pt;}
.y64{bottom:375.454667pt;}
.yf1{bottom:376.732400pt;}
.ye{bottom:377.098533pt;}
.y2b{bottom:377.528400pt;}
.y203{bottom:378.296667pt;}
.y97{bottom:378.496133pt;}
.y13b{bottom:378.947600pt;}
.y1eb{bottom:381.872667pt;}
.y1f6{bottom:383.055067pt;}
.y297{bottom:383.307067pt;}
.yba{bottom:384.291333pt;}
.y2b3{bottom:384.493467pt;}
.y115{bottom:387.168000pt;}
.y1b1{bottom:390.017467pt;}
.y25c{bottom:390.351733pt;}
.yd{bottom:391.765200pt;}
.y63{bottom:392.782667pt;}
.yf0{bottom:394.065733pt;}
.y2a{bottom:394.856400pt;}
.y202{bottom:395.630000pt;}
.y96{bottom:395.829467pt;}
.y13a{bottom:396.280933pt;}
.y1f5{bottom:397.721733pt;}
.y2b2{bottom:399.160133pt;}
.y296{bottom:399.307067pt;}
.y18c{bottom:402.404267pt;}
.y1ea{bottom:404.490800pt;}
.y114{bottom:404.501333pt;}
.y1b0{bottom:404.684133pt;}
.y25b{bottom:406.351733pt;}
.yb9{bottom:409.183733pt;}
.y62{bottom:410.110667pt;}
.y236{bottom:410.923067pt;}
.yef{bottom:411.399067pt;}
.y29{bottom:412.184400pt;}
.y201{bottom:412.963333pt;}
.y139{bottom:413.614267pt;}
.y2b1{bottom:413.826800pt;}
.y295{bottom:415.307067pt;}
.y1f4{bottom:416.168000pt;}
.y1e9{bottom:417.824133pt;}
.y1af{bottom:419.350800pt;}
.y113{bottom:421.834667pt;}
.y25a{bottom:422.351733pt;}
.y95{bottom:424.501333pt;}
.y18b{bottom:425.022400pt;}
.y61{bottom:427.438667pt;}
.y235{bottom:428.251067pt;}
.y2b0{bottom:428.493467pt;}
.yee{bottom:428.732400pt;}
.y28{bottom:429.512400pt;}
.y200{bottom:430.296667pt;}
.y1f3{bottom:430.834667pt;}
.y138{bottom:430.947600pt;}
.y294{bottom:431.307067pt;}
.y259{bottom:438.351733pt;}
.y18a{bottom:438.355733pt;}
.y112{bottom:439.168000pt;}
.y1e8{bottom:440.442267pt;}
.y94{bottom:441.834667pt;}
.y2af{bottom:443.160133pt;}
.y1ae{bottom:444.501333pt;}
.y60{bottom:444.766667pt;}
.yb8{bottom:445.414800pt;}
.y1f2{bottom:445.501333pt;}
.y234{bottom:445.579067pt;}
.yed{bottom:446.065733pt;}
.y27{bottom:446.840400pt;}
.y293{bottom:447.307067pt;}
.yc{bottom:448.010533pt;}
.y137{bottom:448.280933pt;}
.y189{bottom:451.689067pt;}
.y1e7{bottom:453.775600pt;}
.y258{bottom:454.351733pt;}
.y1ff{bottom:455.189067pt;}
.y111{bottom:456.501333pt;}
.y2ae{bottom:457.826800pt;}
.y93{bottom:459.168000pt;}
.y1f1{bottom:460.168000pt;}
.y1ad{bottom:461.834667pt;}
.y5f{bottom:462.094667pt;}
.yb7{bottom:462.748133pt;}
.y233{bottom:462.907067pt;}
.y292{bottom:463.307067pt;}
.yec{bottom:463.399067pt;}
.y26{bottom:464.168400pt;}
.y136{bottom:465.614267pt;}
.yb{bottom:466.453200pt;}
.y1e6{bottom:467.108933pt;}
.y257{bottom:470.351733pt;}
.y2ad{bottom:472.493467pt;}
.y1fe{bottom:472.522400pt;}
.y110{bottom:473.834667pt;}
.y188{bottom:474.307067pt;}
.y1f0{bottom:474.834667pt;}
.y92{bottom:476.501333pt;}
.y1ac{bottom:479.168000pt;}
.y291{bottom:479.307067pt;}
.y5e{bottom:479.422667pt;}
.yb6{bottom:480.081467pt;}
.y232{bottom:480.235067pt;}
.yeb{bottom:480.732400pt;}
.ya{bottom:481.119867pt;}
.y25{bottom:481.496400pt;}
.y135{bottom:482.947600pt;}
.y256{bottom:486.351733pt;}
.y2ac{bottom:487.160133pt;}
.y187{bottom:487.640400pt;}
.y1fd{bottom:489.855733pt;}
.y10f{bottom:491.168000pt;}
.y91{bottom:493.834667pt;}
.y290{bottom:495.307067pt;}
.y9{bottom:495.786533pt;}
.y1ab{bottom:496.501333pt;}
.y5d{bottom:496.750667pt;}
.yb5{bottom:497.414800pt;}
.y231{bottom:497.563067pt;}
.y24{bottom:498.824400pt;}
.y134{bottom:500.280933pt;}
.y186{bottom:500.973733pt;}
.y255{bottom:502.351733pt;}
.yea{bottom:505.624667pt;}
.y1fc{bottom:507.189067pt;}
.y10e{bottom:508.501333pt;}
.y1da{bottom:509.404267pt;}
.y8{bottom:510.453200pt;}
.y90{bottom:511.168000pt;}
.y28f{bottom:511.307067pt;}
.y1aa{bottom:513.834667pt;}
.y5c{bottom:514.078667pt;}
.yb4{bottom:514.748133pt;}
.y230{bottom:514.891067pt;}
.y23{bottom:516.152400pt;}
.y254{bottom:518.351733pt;}
.y133{bottom:521.393733pt;}
.ye9{bottom:522.958000pt;}
.y1fb{bottom:524.522400pt;}
.y185{bottom:524.973733pt;}
.y7{bottom:525.119867pt;}
.y10d{bottom:525.834667pt;}
.y1d9{bottom:526.737600pt;}
.y28e{bottom:527.307067pt;}
.y1a9{bottom:531.168000pt;}
.y5b{bottom:531.406667pt;}
.yb3{bottom:532.081467pt;}
.y22f{bottom:532.219067pt;}
.y22{bottom:533.480400pt;}
.y8f{bottom:536.060400pt;}
.y184{bottom:538.307067pt;}
.ye8{bottom:540.291333pt;}
.y1fa{bottom:541.855733pt;}
.y253{bottom:541.910800pt;}
.y10c{bottom:543.168000pt;}
.y28d{bottom:543.307067pt;}
.y6{bottom:543.562533pt;}
.y1d8{bottom:544.070933pt;}
.y1a8{bottom:548.501333pt;}
.y5a{bottom:548.734667pt;}
.yb2{bottom:549.414800pt;}
.y22e{bottom:549.547067pt;}
.y8e{bottom:553.393733pt;}
.ye7{bottom:557.624667pt;}
.y21{bottom:558.372667pt;}
.y28c{bottom:559.307067pt;}
.y10b{bottom:560.501333pt;}
.y183{bottom:560.925200pt;}
.y1d7{bottom:561.404267pt;}
.y5{bottom:562.005200pt;}
.y1a7{bottom:565.834667pt;}
.y59{bottom:566.062667pt;}
.yb1{bottom:566.748133pt;}
.y8d{bottom:570.727067pt;}
.y182{bottom:574.258533pt;}
.y22d{bottom:574.435067pt;}
.ye6{bottom:574.958000pt;}
.y28b{bottom:575.307067pt;}
.y1d6{bottom:578.737600pt;}
.y1a6{bottom:583.168000pt;}
.yb0{bottom:584.081467pt;}
.y10a{bottom:585.393733pt;}
.y181{bottom:587.591867pt;}
.y8c{bottom:588.060400pt;}
.y252{bottom:588.372800pt;}
.y58{bottom:590.950667pt;}
.y28a{bottom:591.307067pt;}
.y22c{bottom:591.763067pt;}
.ye5{bottom:592.291333pt;}
.y1d5{bottom:596.070933pt;}
.y1a5{bottom:600.501333pt;}
.yaf{bottom:601.414800pt;}
.y8b{bottom:605.393733pt;}
.y251{bottom:605.700800pt;}
.y289{bottom:607.307067pt;}
.y57{bottom:608.278667pt;}
.y22b{bottom:609.091067pt;}
.ye4{bottom:609.624667pt;}
.y1d4{bottom:613.404267pt;}
.y180{bottom:616.925200pt;}
.y1a4{bottom:617.834667pt;}
.y1f9{bottom:618.748133pt;}
.y109{bottom:621.624667pt;}
.y8a{bottom:622.727067pt;}
.y288{bottom:623.307067pt;}
.y56{bottom:625.606667pt;}
.y22a{bottom:626.419067pt;}
.y132{bottom:626.958000pt;}
.y3d{bottom:627.915867pt;}
.y17f{bottom:630.258533pt;}
.y250{bottom:630.593200pt;}
.y1d3{bottom:630.737600pt;}
.ye3{bottom:634.517067pt;}
.y1a3{bottom:635.168000pt;}
.y1f8{bottom:636.081467pt;}
.y108{bottom:638.958000pt;}
.y287{bottom:639.307067pt;}
.y89{bottom:640.060400pt;}
.y55{bottom:642.934667pt;}
.y17e{bottom:643.591867pt;}
.y229{bottom:643.747067pt;}
.y131{bottom:644.291333pt;}
.yd6{bottom:647.531467pt;}
.y1d2{bottom:648.070933pt;}
.y20{bottom:650.141600pt;}
.y1f7{bottom:653.414800pt;}
.y286{bottom:655.307067pt;}
.y1a2{bottom:656.280933pt;}
.y107{bottom:656.291333pt;}
.y88{bottom:657.393733pt;}
.y54{bottom:660.262667pt;}
.yd5{bottom:660.864800pt;}
.y228{bottom:661.075067pt;}
.y130{bottom:661.624667pt;}
.y1d1{bottom:665.404267pt;}
.y17d{bottom:666.210000pt;}
.ye2{bottom:670.748000pt;}
.y285{bottom:671.307067pt;}
.y106{bottom:673.624667pt;}
.y1f{bottom:673.700667pt;}
.yd4{bottom:674.198133pt;}
.y87{bottom:674.727067pt;}
.y24f{bottom:677.055200pt;}
.y53{bottom:677.590667pt;}
.y227{bottom:678.403067pt;}
.y12f{bottom:678.958000pt;}
.y17c{bottom:679.543333pt;}
.y1a1{bottom:681.173200pt;}
.y1d0{bottom:682.737600pt;}
.y284{bottom:687.307067pt;}
.yd3{bottom:687.531467pt;}
.ye1{bottom:688.081333pt;}
.y105{bottom:690.958000pt;}
.y86{bottom:692.060400pt;}
.y17b{bottom:692.876667pt;}
.y24e{bottom:694.383200pt;}
.y52{bottom:694.918667pt;}
.y226{bottom:695.731067pt;}
.y1cf{bottom:700.070933pt;}
.yd2{bottom:700.864800pt;}
.y283{bottom:703.307067pt;}
.y12e{bottom:703.850400pt;}
.ye0{bottom:705.414667pt;}
.y1a0{bottom:706.065733pt;}
.y104{bottom:708.291333pt;}
.y85{bottom:709.393733pt;}
.y51{bottom:712.246667pt;}
.y225{bottom:713.059067pt;}
.y17a{bottom:715.494800pt;}
.y1ce{bottom:717.404267pt;}
.y24d{bottom:719.275600pt;}
.y282{bottom:719.307067pt;}
.y1cb{bottom:722.733600pt;}
.ydf{bottom:722.748000pt;}
.yd1{bottom:723.482933pt;}
.y103{bottom:725.624667pt;}
.y84{bottom:726.727067pt;}
.y179{bottom:728.828133pt;}
.y50{bottom:729.574667pt;}
.y224{bottom:730.387067pt;}
.y19f{bottom:730.958000pt;}
.y281{bottom:735.307067pt;}
.yd0{bottom:736.816267pt;}
.y1ca{bottom:737.400267pt;}
.y15c{bottom:739.496133pt;}
.y12d{bottom:740.081333pt;}
.y178{bottom:742.161467pt;}
.y1cd{bottom:742.296667pt;}
.y83{bottom:744.060400pt;}
.y4{bottom:746.084000pt;}
.y1e{bottom:746.102800pt;}
.y4f{bottom:746.902667pt;}
.yde{bottom:747.640400pt;}
.y223{bottom:747.715067pt;}
.ycf{bottom:750.149600pt;}
.y102{bottom:750.517067pt;}
.y280{bottom:751.307067pt;}
.y1c9{bottom:752.066933pt;}
.y15b{bottom:754.162800pt;}
.y12c{bottom:757.414667pt;}
.y19e{bottom:759.630000pt;}
.y24c{bottom:761.952800pt;}
.y4e{bottom:764.230667pt;}
.yd9{bottom:764.493467pt;}
.ydd{bottom:764.973733pt;}
.y222{bottom:765.043067pt;}
.y177{bottom:766.161467pt;}
.y27f{bottom:767.307067pt;}
.y2d5{bottom:767.309467pt;}
.y15a{bottom:768.829467pt;}
.y82{bottom:768.952800pt;}
.y101{bottom:770.517067pt;}
.yce{bottom:772.767600pt;}
.y12b{bottom:774.748000pt;}
.y24b{bottom:776.623067pt;}
.y19d{bottom:776.963333pt;}
.y3{bottom:778.750667pt;}
.yd8{bottom:779.160133pt;}
.y176{bottom:779.494800pt;}
.y4d{bottom:781.558667pt;}
.ydc{bottom:782.307067pt;}
.y221{bottom:782.371067pt;}
.y27e{bottom:783.307067pt;}
.y2d4{bottom:783.309467pt;}
.y1d{bottom:783.424133pt;}
.ycd{bottom:786.100933pt;}
.y1bf{bottom:787.301867pt;}
.y12a{bottom:792.081333pt;}
.yd7{bottom:793.826800pt;}
.y19c{bottom:794.296667pt;}
.y24a{bottom:795.065733pt;}
.y81{bottom:797.624667pt;}
.y4c{bottom:798.886667pt;}
.y27d{bottom:799.307067pt;}
.y2d3{bottom:799.309467pt;}
.ydb{bottom:799.640400pt;}
.y220{bottom:799.699067pt;}
.y2{bottom:800.084000pt;}
.y1be{bottom:804.635200pt;}
.y175{bottom:808.828133pt;}
.y129{bottom:809.414667pt;}
.y249{bottom:809.732400pt;}
.y19b{bottom:811.630000pt;}
.y27c{bottom:815.307067pt;}
.y2d2{bottom:815.309467pt;}
.y1cc{bottom:815.409467pt;}
.yda{bottom:816.973733pt;}
.y21f{bottom:817.027067pt;}
.y1c{bottom:820.745467pt;}
.y1{bottom:821.417333pt;}
.y1bd{bottom:821.968533pt;}
.y174{bottom:822.161467pt;}
.y4b{bottom:823.774667pt;}
.y248{bottom:824.399067pt;}
.y128{bottom:826.748000pt;}
.y19a{bottom:828.963333pt;}
.y27b{bottom:831.307067pt;}
.y2d1{bottom:831.309467pt;}
.yae{bottom:834.307067pt;}
.y21e{bottom:834.355067pt;}
.y173{bottom:835.494800pt;}
.y193{bottom:836.677067pt;}
.y1bc{bottom:839.301867pt;}
.y4a{bottom:841.102667pt;}
.y80{bottom:844.081333pt;}
.y199{bottom:846.296667pt;}
.y247{bottom:846.624667pt;}
.y27a{bottom:847.307067pt;}
.y2d0{bottom:847.309467pt;}
.y192{bottom:851.343733pt;}
.yad{bottom:851.640400pt;}
.y21d{bottom:851.683067pt;}
.y1bb{bottom:856.635200pt;}
.y172{bottom:858.112933pt;}
.y49{bottom:858.430667pt;}
.y7f{bottom:861.414667pt;}
.y279{bottom:863.307067pt;}
.y2cf{bottom:863.309467pt;}
.y198{bottom:863.630000pt;}
.y191{bottom:866.010400pt;}
.yac{bottom:868.973733pt;}
.y21c{bottom:869.011067pt;}
.y171{bottom:871.446267pt;}
.y48{bottom:875.758667pt;}
.y7e{bottom:878.748000pt;}
.y278{bottom:879.307067pt;}
.y2ce{bottom:879.309467pt;}
.y190{bottom:880.677067pt;}
.y197{bottom:880.963333pt;}
.y1ba{bottom:881.527600pt;}
.y170{bottom:884.779600pt;}
.yab{bottom:886.307067pt;}
.y21b{bottom:886.339067pt;}
.y47{bottom:893.086667pt;}
.y246{bottom:893.102667pt;}
.y277{bottom:895.307067pt;}
.y2cd{bottom:895.309467pt;}
.y18f{bottom:895.343733pt;}
.y7d{bottom:896.081333pt;}
.y196{bottom:898.296667pt;}
.y1b9{bottom:898.860933pt;}
.yaa{bottom:903.640400pt;}
.y21a{bottom:903.667067pt;}
.y16f{bottom:907.397600pt;}
.y46{bottom:910.414667pt;}
.y45{bottom:910.430667pt;}
.y276{bottom:911.307067pt;}
.y2cc{bottom:911.309467pt;}
.y7c{bottom:913.414667pt;}
.y18e{bottom:913.790000pt;}
.y195{bottom:915.630000pt;}
.y1b8{bottom:916.194267pt;}
.y16e{bottom:920.730933pt;}
.ya9{bottom:920.973733pt;}
.y219{bottom:920.995067pt;}
.y275{bottom:927.307067pt;}
.y2cb{bottom:927.309467pt;}
.y44{bottom:927.758667pt;}
.y18d{bottom:928.456667pt;}
.y7b{bottom:930.748000pt;}
.y1b7{bottom:933.527600pt;}
.y194{bottom:936.742800pt;}
.ya8{bottom:938.307067pt;}
.y218{bottom:938.323067pt;}
.y274{bottom:943.307067pt;}
.y2ca{bottom:943.309467pt;}
.y43{bottom:945.086667pt;}
.y1b6{bottom:950.860933pt;}
.y7a{bottom:955.640400pt;}
.y217{bottom:955.651067pt;}
.y273{bottom:959.307067pt;}
.y2c9{bottom:959.309467pt;}
.y42{bottom:962.414667pt;}
.y1b5{bottom:968.194267pt;}
.y40{bottom:968.301733pt;}
.y79{bottom:972.973733pt;}
.y216{bottom:972.979067pt;}
.y272{bottom:975.307067pt;}
.y2c8{bottom:975.309467pt;}
.y3f{bottom:980.304400pt;}
.y41{bottom:987.307067pt;}
.y1b4{bottom:989.307067pt;}
.y78{bottom:990.307067pt;}
.y271{bottom:991.307067pt;}
.y2c7{bottom:991.309467pt;}
.y3e{bottom:992.307067pt;}
.h9{height:28.746667pt;}
.h8{height:29.344000pt;}
.hc{height:31.280000pt;}
.hb{height:31.440000pt;}
.h4{height:33.365333pt;}
.h3{height:33.536000pt;}
.h7{height:37.536000pt;}
.hd{height:37.867488pt;}
.he{height:37.868021pt;}
.ha{height:38.374569pt;}
.h1{height:41.066667pt;}
.h2{height:41.920000pt;}
.h6{height:50.304000pt;}
.h5{height:94.453333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.x27{left:60.472400pt;}
.x18{left:64.252000pt;}
.xa{left:69.280667pt;}
.x2{left:79.370000pt;}
.xd{left:91.576133pt;}
.x25{left:101.559067pt;}
.x21{left:104.171867pt;}
.xe{left:118.035600pt;}
.x22{left:130.843333pt;}
.x1d{left:153.970800pt;}
.x16{left:168.892400pt;}
.x28{left:179.361200pt;}
.x1e{left:182.780000pt;}
.x26{left:186.599467pt;}
.xf{left:191.482400pt;}
.x10{left:219.413600pt;}
.x23{left:257.599467pt;}
.x2b{left:262.959600pt;}
.x1b{left:278.480800pt;}
.x2c{left:290.981733pt;}
.x1c{left:305.251467pt;}
.x29{left:310.234533pt;}
.x1f{left:314.653733pt;}
.x24{left:331.559067pt;}
.x20{left:341.065467pt;}
.x5{left:344.563600pt;}
.x6{left:371.756133pt;}
.x17{left:383.559067pt;}
.x13{left:411.483467pt;}
.x11{left:414.812400pt;}
.x2a{left:437.097467pt;}
.x12{left:442.261733pt;}
.x19{left:458.565067pt;}
.x14{left:465.902933pt;}
.x1a{left:485.373600pt;}
.x7{left:486.779733pt;}
.x15{left:492.362400pt;}
.xb{left:512.189867pt;}
.x8{left:514.263333pt;}
.xc{left:540.656267pt;}
.x9{left:565.222800pt;}
.x1{left:606.330667pt;}
.x3{left:740.738667pt;}
}




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