
    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_98d5fce5df662c6b4db45cf7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_2aab0d92cc344a8ab1dadadc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_973655c4ea108a2f17d42adc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.170000;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_69fe493aa5ed0b12e1a435e7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.924000;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_234ffc9b3562046a27e43382.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9dc1011e17e4987841c0de33.woff')format("woff");}.ff6{font-family:ff6;line-height:1.157000;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_5c119132ac60d89a82c120e7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.911031;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_efa1e9b0f23ac4ccbac1ed3a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.728000;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);}
.v2{vertical-align:-23.219520px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.938300px;}
.ls50{letter-spacing:-1.980000px;}
.ls14{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.810000px;}
.ls4{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.672000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.528000px;}
.ls2f{letter-spacing:-0.486000px;}
.ls48{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.270000px;}
.ls3f{letter-spacing:-0.240000px;}
.ls2a{letter-spacing:-0.175500px;}
.ls5{letter-spacing:-0.162000px;}
.ls47{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.042000px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000120px;}
.lse{letter-spacing:0.000180px;}
.ls8{letter-spacing:0.000240px;}
.ls10{letter-spacing:0.000300px;}
.ls26{letter-spacing:0.000780px;}
.ls1f{letter-spacing:0.000840px;}
.ls3{letter-spacing:0.001020px;}
.ls1c{letter-spacing:0.001140px;}
.ls9{letter-spacing:0.001440px;}
.ls11{letter-spacing:0.054000px;}
.ls37{letter-spacing:0.096000px;}
.ls4f{letter-spacing:0.098460px;}
.ls15{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.140400px;}
.ls4e{letter-spacing:0.189960px;}
.ls40{letter-spacing:0.192000px;}
.ls4c{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.351000px;}
.ls34{letter-spacing:0.378000px;}
.ls41{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.631800px;}
.ls1a{letter-spacing:0.666900px;}
.ls29{letter-spacing:0.702000px;}
.ls20{letter-spacing:0.798000px;}
.ls49{letter-spacing:0.864000px;}
.ls44{letter-spacing:0.911700px;}
.ls3a{letter-spacing:0.912000px;}
.ls4b{letter-spacing:0.953880px;}
.ls45{letter-spacing:0.963300px;}
.ls24{letter-spacing:0.972000px;}
.ls13{letter-spacing:1.017900px;}
.lsb{letter-spacing:1.026000px;}
.ls33{letter-spacing:1.088100px;}
.ls46{letter-spacing:1.200000px;}
.ls25{letter-spacing:1.218000px;}
.ls35{letter-spacing:1.228500px;}
.ls27{letter-spacing:1.263600px;}
.ls2c{letter-spacing:1.296000px;}
.ls19{letter-spacing:1.298700px;}
.ls3d{letter-spacing:1.344000px;}
.ls22{letter-spacing:1.350000px;}
.ls36{letter-spacing:1.392000px;}
.ls16{letter-spacing:1.474200px;}
.ls4a{letter-spacing:1.488000px;}
.ls1d{letter-spacing:1.544400px;}
.lsf{letter-spacing:1.554000px;}
.ls30{letter-spacing:1.566000px;}
.ls3e{letter-spacing:1.728000px;}
.ls21{letter-spacing:1.764000px;}
.ls52{letter-spacing:2.016000px;}
.ls3c{letter-spacing:2.160000px;}
.ls31{letter-spacing:2.268000px;}
.ls32{letter-spacing:2.386800px;}
.ls17{letter-spacing:2.562300px;}
.ls23{letter-spacing:3.123900px;}
.lsa{letter-spacing:3.353880px;}
.ls7{letter-spacing:3.600000px;}
.ls42{letter-spacing:3.745320px;}
.ls0{letter-spacing:3.780000px;}
.ls51{letter-spacing:3.840000px;}
.ls2{letter-spacing:4.050000px;}
.ls1{letter-spacing:4.200000px;}
.lsc{letter-spacing:4.806000px;}
.ls43{letter-spacing:5.083620px;}
.ls4d{letter-spacing:13.879680px;}
.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;}
}
.ws16{word-spacing:-31.806000px;}
.wse2{word-spacing:-29.268000px;}
.wse1{word-spacing:-28.566000px;}
.ws84{word-spacing:-28.350000px;}
.ws14{word-spacing:-28.026000px;}
.ws86{word-spacing:-27.972000px;}
.ws13d{word-spacing:-27.840000px;}
.wsb7{word-spacing:-27.702000px;}
.ws1{word-spacing:-27.000000px;}
.wsbf{word-spacing:-26.730000px;}
.wsd6{word-spacing:-26.460000px;}
.ws107{word-spacing:-26.160000px;}
.ws13f{word-spacing:-26.016000px;}
.ws10a{word-spacing:-25.728000px;}
.ws128{word-spacing:-25.488000px;}
.ws109{word-spacing:-25.392000px;}
.ws108{word-spacing:-25.344000px;}
.ws125{word-spacing:-25.200000px;}
.ws106{word-spacing:-24.912000px;}
.ws127{word-spacing:-24.864000px;}
.ws105{word-spacing:-24.480000px;}
.ws13e{word-spacing:-24.432000px;}
.ws141{word-spacing:-24.240000px;}
.ws10b{word-spacing:-24.192000px;}
.ws102{word-spacing:-24.096000px;}
.ws101{word-spacing:-24.000000px;}
.ws83{word-spacing:-22.764000px;}
.ws34{word-spacing:-22.554000px;}
.ws87{word-spacing:-22.218000px;}
.ws82{word-spacing:-21.798000px;}
.wse6{word-spacing:-21.378000px;}
.ws33{word-spacing:-21.000000px;}
.ws85{word-spacing:-20.673900px;}
.ws5b{word-spacing:-20.112300px;}
.wse3{word-spacing:-19.936800px;}
.ws70{word-spacing:-19.094400px;}
.ws46{word-spacing:-19.024200px;}
.ws5d{word-spacing:-18.848700px;}
.wsa0{word-spacing:-18.813600px;}
.wsf6{word-spacing:-18.778500px;}
.wse5{word-spacing:-18.638100px;}
.ws43{word-spacing:-18.567900px;}
.wsc1{word-spacing:-18.252000px;}
.ws5e{word-spacing:-18.216900px;}
.ws5f{word-spacing:-18.181800px;}
.ws42{word-spacing:-17.901000px;}
.ws5c{word-spacing:-17.690400px;}
.ws17{word-spacing:-17.550000px;}
.wsb9{word-spacing:-17.374500px;}
.ws13{word-spacing:-13.608000px;}
.ws45{word-spacing:-10.908000px;}
.ws41{word-spacing:-10.854000px;}
.ws15{word-spacing:-10.800000px;}
.wsb8{word-spacing:-10.530000px;}
.wsc0{word-spacing:-9.936000px;}
.ws140{word-spacing:-9.840000px;}
.ws44{word-spacing:-9.666000px;}
.ws103{word-spacing:-9.600000px;}
.ws0{word-spacing:-9.288000px;}
.ws126{word-spacing:-9.120000px;}
.ws104{word-spacing:-9.072000px;}
.ws81{word-spacing:-8.400000px;}
.wsc2{word-spacing:-8.358000px;}
.ws13c{word-spacing:-8.028000px;}
.wsd4{word-spacing:-3.402000px;}
.ws146{word-spacing:-3.312000px;}
.wsf9{word-spacing:-2.970000px;}
.ws90{word-spacing:-2.862000px;}
.ws66{word-spacing:-2.538000px;}
.wsdf{word-spacing:-2.484000px;}
.ws9b{word-spacing:-2.376000px;}
.ws7f{word-spacing:-2.106000px;}
.wsaf{word-spacing:-2.052000px;}
.wsd1{word-spacing:-1.998000px;}
.ws4b{word-spacing:-1.944000px;}
.ws79{word-spacing:-1.890000px;}
.ws4c{word-spacing:-1.836000px;}
.ws47{word-spacing:-1.728000px;}
.wsb3{word-spacing:-1.620000px;}
.ws99{word-spacing:-1.566000px;}
.ws10c{word-spacing:-1.536000px;}
.wsf{word-spacing:-1.512000px;}
.ws96{word-spacing:-1.458000px;}
.wsb{word-spacing:-1.404000px;}
.ws48{word-spacing:-1.350000px;}
.ws57{word-spacing:-1.296000px;}
.ws37{word-spacing:-1.242000px;}
.wsf5{word-spacing:-1.188000px;}
.ws135{word-spacing:-1.152000px;}
.wsd{word-spacing:-1.134000px;}
.ws121{word-spacing:-1.056000px;}
.ws36{word-spacing:-1.026000px;}
.ws134{word-spacing:-1.008000px;}
.ws110{word-spacing:-0.960000px;}
.wsb6{word-spacing:-0.918000px;}
.ws2d{word-spacing:-0.864000px;}
.ws14a{word-spacing:-0.816000px;}
.wsff{word-spacing:-0.810000px;}
.ws124{word-spacing:-0.768000px;}
.ws54{word-spacing:-0.756000px;}
.ws28{word-spacing:-0.702000px;}
.ws11b{word-spacing:-0.672000px;}
.wse{word-spacing:-0.594000px;}
.ws138{word-spacing:-0.576000px;}
.ws3{word-spacing:-0.540000px;}
.ws74{word-spacing:-0.486000px;}
.wsc{word-spacing:-0.432000px;}
.ws7e{word-spacing:-0.378000px;}
.ws116{word-spacing:-0.336000px;}
.ws65{word-spacing:-0.324000px;}
.ws32{word-spacing:-0.270000px;}
.ws120{word-spacing:-0.240000px;}
.wsf8{word-spacing:-0.216000px;}
.ws11c{word-spacing:-0.192000px;}
.wsb5{word-spacing:-0.162000px;}
.wsee{word-spacing:-0.108000px;}
.ws1c{word-spacing:-0.054000px;}
.ws12c{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws14c{word-spacing:0.048000px;}
.wsf7{word-spacing:0.054000px;}
.wsb0{word-spacing:0.108000px;}
.ws131{word-spacing:0.144000px;}
.ws10{word-spacing:0.216000px;}
.ws3e{word-spacing:0.270000px;}
.ws136{word-spacing:0.336000px;}
.ws3d{word-spacing:0.378000px;}
.wsba{word-spacing:0.432000px;}
.ws71{word-spacing:0.486000px;}
.ws12f{word-spacing:0.528000px;}
.wse4{word-spacing:0.540000px;}
.wsfb{word-spacing:0.648000px;}
.ws2c{word-spacing:0.756000px;}
.ws137{word-spacing:0.768000px;}
.ws67{word-spacing:0.810000px;}
.ws8f{word-spacing:0.918000px;}
.ws10e{word-spacing:0.960000px;}
.wsde{word-spacing:0.972000px;}
.ws2a{word-spacing:1.026000px;}
.ws72{word-spacing:1.080000px;}
.ws118{word-spacing:1.104000px;}
.ws12{word-spacing:1.134000px;}
.ws1d{word-spacing:1.188000px;}
.ws11f{word-spacing:1.200000px;}
.ws30{word-spacing:1.242000px;}
.ws50{word-spacing:1.296000px;}
.wsf3{word-spacing:1.350000px;}
.wsfd{word-spacing:1.404000px;}
.wsdc{word-spacing:1.458000px;}
.ws148{word-spacing:1.488000px;}
.ws4d{word-spacing:1.512000px;}
.ws95{word-spacing:1.566000px;}
.wsdd{word-spacing:1.620000px;}
.ws9{word-spacing:1.674000px;}
.ws4a{word-spacing:1.728000px;}
.ws6f{word-spacing:1.782000px;}
.wsdb{word-spacing:1.836000px;}
.ws7c{word-spacing:1.890000px;}
.ws4e{word-spacing:1.944000px;}
.wsf1{word-spacing:1.998000px;}
.ws31{word-spacing:2.052000px;}
.ws7b{word-spacing:2.106000px;}
.ws132{word-spacing:2.112000px;}
.wsb4{word-spacing:2.160000px;}
.ws1f{word-spacing:2.214000px;}
.ws7a{word-spacing:2.268000px;}
.ws62{word-spacing:2.376000px;}
.wse0{word-spacing:2.430000px;}
.ws14b{word-spacing:2.448000px;}
.wsd2{word-spacing:2.484000px;}
.wsfc{word-spacing:2.538000px;}
.ws23{word-spacing:2.592000px;}
.wsbc{word-spacing:2.646000px;}
.ws69{word-spacing:2.700000px;}
.ws3f{word-spacing:2.754000px;}
.ws80{word-spacing:2.862000px;}
.wsf4{word-spacing:2.916000px;}
.ws58{word-spacing:2.970000px;}
.ws19{word-spacing:3.024000px;}
.ws5{word-spacing:3.078000px;}
.ws8{word-spacing:3.132000px;}
.wse9{word-spacing:3.186000px;}
.ws78{word-spacing:3.240000px;}
.wsa3{word-spacing:3.294000px;}
.ws21{word-spacing:3.348000px;}
.ws22{word-spacing:3.402000px;}
.ws2f{word-spacing:3.456000px;}
.ws3a{word-spacing:3.510000px;}
.ws149{word-spacing:3.552000px;}
.ws97{word-spacing:3.618000px;}
.ws7d{word-spacing:3.672000px;}
.ws2b{word-spacing:3.726000px;}
.ws12e{word-spacing:3.744000px;}
.ws35{word-spacing:3.780000px;}
.ws147{word-spacing:3.792000px;}
.wsca{word-spacing:3.834000px;}
.ws24{word-spacing:3.942000px;}
.ws1a{word-spacing:3.996000px;}
.ws5a{word-spacing:4.050000px;}
.ws56{word-spacing:4.104000px;}
.ws9f{word-spacing:4.212000px;}
.wsc6{word-spacing:4.266000px;}
.wsb2{word-spacing:4.320000px;}
.ws14f{word-spacing:4.368000px;}
.wsec{word-spacing:4.374000px;}
.ws39{word-spacing:4.428000px;}
.ws8d{word-spacing:4.482000px;}
.wsac{word-spacing:4.536000px;}
.wsb1{word-spacing:4.590000px;}
.wsfa{word-spacing:4.644000px;}
.wsbb{word-spacing:4.698000px;}
.ws1b{word-spacing:4.752000px;}
.wsa{word-spacing:4.806000px;}
.ws73{word-spacing:4.860000px;}
.ws38{word-spacing:4.914000px;}
.ws27{word-spacing:4.968000px;}
.ws55{word-spacing:5.022000px;}
.ws76{word-spacing:5.076000px;}
.ws130{word-spacing:5.088000px;}
.ws7{word-spacing:5.130000px;}
.ws11e{word-spacing:5.136000px;}
.ws53{word-spacing:5.184000px;}
.ws14e{word-spacing:5.232000px;}
.ws6b{word-spacing:5.292000px;}
.ws6e{word-spacing:5.346000px;}
.ws52{word-spacing:5.400000px;}
.ws12d{word-spacing:5.472000px;}
.ws40{word-spacing:5.508000px;}
.wse7{word-spacing:5.562000px;}
.ws61{word-spacing:5.616000px;}
.wsd7{word-spacing:5.670000px;}
.ws60{word-spacing:5.724000px;}
.ws26{word-spacing:5.778000px;}
.ws25{word-spacing:5.940000px;}
.ws139{word-spacing:5.952000px;}
.ws75{word-spacing:5.994000px;}
.ws115{word-spacing:6.000000px;}
.ws9d{word-spacing:6.048000px;}
.ws51{word-spacing:6.102000px;}
.ws11{word-spacing:6.156000px;}
.ws3c{word-spacing:6.264000px;}
.ws64{word-spacing:6.318000px;}
.wsd9{word-spacing:6.372000px;}
.ws77{word-spacing:6.480000px;}
.ws142{word-spacing:6.528000px;}
.ws145{word-spacing:6.576000px;}
.ws6d{word-spacing:6.588000px;}
.ws113{word-spacing:6.672000px;}
.ws12a{word-spacing:6.720000px;}
.ws4f{word-spacing:6.750000px;}
.ws100{word-spacing:6.804000px;}
.ws49{word-spacing:6.858000px;}
.wsef{word-spacing:6.912000px;}
.ws3b{word-spacing:7.020000px;}
.ws59{word-spacing:7.074000px;}
.ws119{word-spacing:7.200000px;}
.wsc8{word-spacing:7.236000px;}
.ws29{word-spacing:7.290000px;}
.ws1e{word-spacing:7.344000px;}
.wsc5{word-spacing:7.398000px;}
.ws8c{word-spacing:7.452000px;}
.ws9c{word-spacing:7.506000px;}
.ws93{word-spacing:7.614000px;}
.wsd3{word-spacing:7.668000px;}
.wsd5{word-spacing:7.776000px;}
.ws11a{word-spacing:7.872000px;}
.ws63{word-spacing:7.884000px;}
.ws123{word-spacing:7.968000px;}
.ws18{word-spacing:7.992000px;}
.ws10d{word-spacing:8.016000px;}
.ws112{word-spacing:8.064000px;}
.wsbe{word-spacing:8.154000px;}
.wsbd{word-spacing:8.208000px;}
.wsda{word-spacing:8.316000px;}
.ws6a{word-spacing:8.424000px;}
.wsc7{word-spacing:8.478000px;}
.ws4{word-spacing:8.586000px;}
.ws129{word-spacing:8.592000px;}
.ws8b{word-spacing:8.694000px;}
.ws13b{word-spacing:9.072000px;}
.ws20{word-spacing:9.234000px;}
.wscd{word-spacing:9.342000px;}
.wsf2{word-spacing:9.396000px;}
.wsfe{word-spacing:9.450000px;}
.ws9e{word-spacing:9.612000px;}
.ws111{word-spacing:9.648000px;}
.wsa4{word-spacing:9.666000px;}
.ws6{word-spacing:9.828000px;}
.wsa6{word-spacing:9.882000px;}
.wsa2{word-spacing:9.936000px;}
.ws117{word-spacing:10.368000px;}
.ws11d{word-spacing:10.608000px;}
.ws8e{word-spacing:10.692000px;}
.ws2e{word-spacing:10.746000px;}
.ws10f{word-spacing:10.752000px;}
.wsd8{word-spacing:10.800000px;}
.ws144{word-spacing:10.848000px;}
.ws98{word-spacing:11.016000px;}
.wse8{word-spacing:11.124000px;}
.ws133{word-spacing:11.184000px;}
.ws13a{word-spacing:11.616000px;}
.wsc3{word-spacing:11.826000px;}
.ws8a{word-spacing:11.934000px;}
.ws143{word-spacing:12.048000px;}
.wsab{word-spacing:12.312000px;}
.ws6c{word-spacing:12.582000px;}
.wsd0{word-spacing:12.690000px;}
.wsae{word-spacing:12.852000px;}
.wsa1{word-spacing:13.014000px;}
.ws114{word-spacing:13.056000px;}
.wscc{word-spacing:13.176000px;}
.ws94{word-spacing:13.446000px;}
.wsce{word-spacing:13.608000px;}
.ws68{word-spacing:13.662000px;}
.ws122{word-spacing:13.680000px;}
.wsea{word-spacing:13.770000px;}
.ws92{word-spacing:13.986000px;}
.wsa9{word-spacing:14.202000px;}
.wsed{word-spacing:14.256000px;}
.wsc4{word-spacing:14.310000px;}
.ws89{word-spacing:14.364000px;}
.ws14d{word-spacing:14.400000px;}
.wsa7{word-spacing:14.742000px;}
.wsf0{word-spacing:14.850000px;}
.wseb{word-spacing:15.552000px;}
.ws12b{word-spacing:16.416000px;}
.wsad{word-spacing:16.956000px;}
.ws88{word-spacing:17.442000px;}
.ws91{word-spacing:18.252000px;}
.wsa8{word-spacing:18.468000px;}
.wscf{word-spacing:18.954000px;}
.wsaa{word-spacing:19.116000px;}
.ws9a{word-spacing:20.304000px;}
.wsc9{word-spacing:21.708000px;}
.wscb{word-spacing:23.706000px;}
.wsa5{word-spacing:27.972000px;}
._8{margin-left:-1988.496000px;}
._f{margin-left:-1987.218491px;}
._a{margin-left:-21.594330px;}
._3{margin-left:-9.720108px;}
._1{margin-left:-5.940648px;}
._4{margin-left:-4.622436px;}
._0{margin-left:-2.969093px;}
._2{margin-left:-1.080945px;}
._5{width:1.242491px;}
._6{width:2.258962px;}
._7{width:3.892120px;}
._d{width:6.960000px;}
._c{width:8.040345px;}
._e{width:11.440646px;}
._9{width:12.600000px;}
._b{width:14.400000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:103.971150px;}
.y153{bottom:162.476370px;}
.y6b{bottom:162.479145px;}
.y39{bottom:162.486690px;}
.y16{bottom:162.493845px;}
.y10d{bottom:162.495105px;}
.y127{bottom:162.510120px;}
.yb4{bottom:162.511275px;}
.y91{bottom:162.513870px;}
.yfe{bottom:162.515370px;}
.yd7{bottom:162.516570px;}
.y177{bottom:162.547665px;}
.y47{bottom:162.548400px;}
.y14c{bottom:162.664200px;}
.yb6{bottom:163.872750px;}
.yb5{bottom:176.472750px;}
.y1c8{bottom:178.129065px;}
.y38{bottom:181.980840px;}
.y15{bottom:181.987995px;}
.y10c{bottom:181.989255px;}
.y152{bottom:182.000400px;}
.y126{bottom:182.004270px;}
.yb3{bottom:182.005425px;}
.y90{bottom:182.007420px;}
.yfd{bottom:182.008920px;}
.yd6{bottom:182.010720px;}
.y6a{bottom:182.014890px;}
.y176{bottom:182.041815px;}
.y46{bottom:182.042550px;}
.y19f{bottom:182.111520px;}
.y14b{bottom:182.158350px;}
.y1c7{bottom:192.529065px;}
.y37{bottom:201.474990px;}
.y14{bottom:201.482145px;}
.y10b{bottom:201.482805px;}
.y151{bottom:201.494550px;}
.y125{bottom:201.498420px;}
.yb2{bottom:201.499575px;}
.y8f{bottom:201.500970px;}
.yfc{bottom:201.503070px;}
.yd5{bottom:201.504870px;}
.y69{bottom:201.509040px;}
.y175{bottom:201.535365px;}
.y45{bottom:201.536700px;}
.y19e{bottom:201.605670px;}
.y14a{bottom:201.652500px;}
.y1c6{bottom:206.929065px;}
.y13{bottom:220.976295px;}
.y10a{bottom:220.976955px;}
.y150{bottom:220.988700px;}
.y124{bottom:220.992570px;}
.yb1{bottom:220.993725px;}
.y8e{bottom:220.994520px;}
.yfb{bottom:220.997220px;}
.yd4{bottom:220.998420px;}
.y36{bottom:220.999020px;}
.y68{bottom:221.003190px;}
.y174{bottom:221.029515px;}
.y44{bottom:221.030850px;}
.y19d{bottom:221.099820px;}
.y149{bottom:221.146650px;}
.y1c5{bottom:221.329065px;}
.y1c4{bottom:235.729065px;}
.y14f{bottom:240.482850px;}
.y123{bottom:240.486720px;}
.yb0{bottom:240.487875px;}
.y8d{bottom:240.488070px;}
.yfa{bottom:240.491370px;}
.yd3{bottom:240.492570px;}
.y35{bottom:240.493170px;}
.y67{bottom:240.497340px;}
.y109{bottom:240.506850px;}
.y173{bottom:240.523665px;}
.y43{bottom:240.525000px;}
.y12{bottom:240.540750px;}
.y19c{bottom:240.593970px;}
.y148{bottom:240.640800px;}
.y1cf{bottom:250.129065px;}
.y14e{bottom:259.977000px;}
.y122{bottom:259.980870px;}
.yaf{bottom:259.981425px;}
.y8c{bottom:259.981620px;}
.yf9{bottom:259.985520px;}
.yd2{bottom:259.986720px;}
.y34{bottom:259.987320px;}
.y66{bottom:259.990890px;}
.y108{bottom:260.001000px;}
.y172{bottom:260.017815px;}
.y42{bottom:260.019150px;}
.y11{bottom:260.034900px;}
.y19b{bottom:260.088120px;}
.y147{bottom:260.134950px;}
.y1c3{bottom:264.529065px;}
.y1c2{bottom:278.929065px;}
.y1ce{bottom:278.929650px;}
.y14d{bottom:279.471150px;}
.y121{bottom:279.475020px;}
.yae{bottom:279.475575px;}
.yf8{bottom:279.479670px;}
.y33{bottom:279.480870px;}
.y65{bottom:279.484440px;}
.y107{bottom:279.495150px;}
.y171{bottom:279.511365px;}
.y41{bottom:279.512700px;}
.y8b{bottom:279.523815px;}
.y10{bottom:279.529050px;}
.y19a{bottom:279.582270px;}
.y146{bottom:279.628500px;}
.y1c1{bottom:293.329065px;}
.yf7{bottom:298.973820px;}
.y32{bottom:298.975020px;}
.y64{bottom:298.978590px;}
.y106{bottom:298.989300px;}
.yad{bottom:298.999605px;}
.y170{bottom:299.005515px;}
.y40{bottom:299.006850px;}
.y8a{bottom:299.017365px;}
.yf{bottom:299.022600px;}
.y120{bottom:299.041230px;}
.y199{bottom:299.076420px;}
.y145{bottom:299.122650px;}
.y1c0{bottom:307.729650px;}
.yd1{bottom:318.468570px;}
.y105{bottom:318.482850px;}
.yac{bottom:318.493755px;}
.y63{bottom:318.496755px;}
.y16f{bottom:318.499665px;}
.y3f{bottom:318.501000px;}
.y89{bottom:318.510915px;}
.ye{bottom:318.516750px;}
.y11f{bottom:318.534780px;}
.y198{bottom:318.570570px;}
.y31{bottom:318.585765px;}
.yf6{bottom:318.588090px;}
.y144{bottom:318.616800px;}
.y1bf{bottom:322.129650px;}
.y1cd{bottom:336.529650px;}
.y104{bottom:337.977000px;}
.yab{bottom:337.987905px;}
.y62{bottom:337.990905px;}
.y16e{bottom:337.993815px;}
.y3e{bottom:337.995150px;}
.y88{bottom:338.004465px;}
.yd{bottom:338.010900px;}
.y11e{bottom:338.028930px;}
.y197{bottom:338.064720px;}
.y30{bottom:338.079915px;}
.yf5{bottom:338.082240px;}
.y143{bottom:338.110950px;}
.y1be{bottom:350.929650px;}
.y156{bottom:354.282870px;}
.y103{bottom:357.471150px;}
.yaa{bottom:357.481455px;}
.y61{bottom:357.484455px;}
.y16d{bottom:357.487965px;}
.y3d{bottom:357.489300px;}
.y87{bottom:357.498015px;}
.yc{bottom:357.505050px;}
.y11d{bottom:357.523080px;}
.yd0{bottom:357.528960px;}
.y196{bottom:357.558270px;}
.y2f{bottom:357.574065px;}
.yf4{bottom:357.576390px;}
.y142{bottom:357.605100px;}
.y1bd{bottom:365.329650px;}
.y155{bottom:366.882870px;}
.ya9{bottom:376.975605px;}
.y60{bottom:376.978605px;}
.y16c{bottom:376.981515px;}
.y3c{bottom:376.982850px;}
.y86{bottom:376.992165px;}
.yb{bottom:376.999200px;}
.y11c{bottom:377.017230px;}
.ycf{bottom:377.022510px;}
.y195{bottom:377.052420px;}
.y2e{bottom:377.068215px;}
.yf3{bottom:377.070540px;}
.y141{bottom:377.099250px;}
.y154{bottom:379.482870px;}
.y1bc{bottom:379.729650px;}
.y1cc{bottom:394.129650px;}
.y16b{bottom:396.475665px;}
.y3b{bottom:396.477000px;}
.y85{bottom:396.485715px;}
.ya8{bottom:396.487920px;}
.ya{bottom:396.493350px;}
.y11b{bottom:396.511380px;}
.yce{bottom:396.516660px;}
.y5f{bottom:396.523725px;}
.y194{bottom:396.546570px;}
.y2d{bottom:396.562365px;}
.yf2{bottom:396.564690px;}
.y140{bottom:396.593400px;}
.y102{bottom:407.699370px;}
.y1bb{bottom:408.529650px;}
.ydb{bottom:408.879570px;}
.y12c{bottom:414.609705px;}
.y3a{bottom:415.971150px;}
.y84{bottom:415.979265px;}
.ya7{bottom:415.981470px;}
.y9{bottom:415.987500px;}
.y11a{bottom:416.004930px;}
.ycd{bottom:416.010810px;}
.y5e{bottom:416.017875px;}
.y16a{bottom:416.035440px;}
.y193{bottom:416.040720px;}
.y2c{bottom:416.056515px;}
.yf1{bottom:416.058840px;}
.y13f{bottom:416.087550px;}
.y101{bottom:420.299370px;}
.yda{bottom:421.479570px;}
.y1d3{bottom:422.929650px;}
.y12b{bottom:427.209705px;}
.y100{bottom:432.899370px;}
.yd9{bottom:434.079570px;}
.ya6{bottom:435.475620px;}
.y8{bottom:435.481650px;}
.y119{bottom:435.499080px;}
.ycc{bottom:435.504960px;}
.y83{bottom:435.509160px;}
.y5d{bottom:435.511425px;}
.y169{bottom:435.529590px;}
.y192{bottom:435.534270px;}
.y2b{bottom:435.550665px;}
.yf0{bottom:435.552990px;}
.y13e{bottom:435.581700px;}
.y1ba{bottom:437.329650px;}
.y12a{bottom:439.809705px;}
.y110{bottom:441.142605px;}
.yff{bottom:445.499370px;}
.yd8{bottom:446.679570px;}
.y1d2{bottom:451.729650px;}
.y129{bottom:452.409705px;}
.y10f{bottom:453.742605px;}
.y7{bottom:454.975800px;}
.y118{bottom:454.993230px;}
.ycb{bottom:454.998510px;}
.ya5{bottom:454.999650px;}
.y82{bottom:455.002710px;}
.y5c{bottom:455.004975px;}
.y168{bottom:455.023740px;}
.y191{bottom:455.028420px;}
.y2a{bottom:455.044815px;}
.yef{bottom:455.047140px;}
.y13d{bottom:455.075250px;}
.y128{bottom:465.009120px;}
.y1b9{bottom:466.129650px;}
.y10e{bottom:466.342605px;}
.y6{bottom:474.469350px;}
.y117{bottom:474.487380px;}
.yca{bottom:474.492660px;}
.ya4{bottom:474.493800px;}
.y81{bottom:474.496860px;}
.y5b{bottom:474.498525px;}
.y167{bottom:474.517890px;}
.y190{bottom:474.522570px;}
.y29{bottom:474.538965px;}
.yee{bottom:474.541290px;}
.y13c{bottom:474.569400px;}
.y1d1{bottom:480.529650px;}
.y116{bottom:493.980930px;}
.yc9{bottom:493.986810px;}
.ya3{bottom:493.987950px;}
.y80{bottom:493.991010px;}
.y5a{bottom:493.992075px;}
.y166{bottom:494.012040px;}
.y18f{bottom:494.016720px;}
.y28{bottom:494.032515px;}
.yed{bottom:494.034840px;}
.y13b{bottom:494.063550px;}
.y1b8{bottom:494.929650px;}
.y4c{bottom:503.924400px;}
.y17b{bottom:505.414740px;}
.y1b7{bottom:509.329650px;}
.y5{bottom:513.471150px;}
.y115{bottom:513.475080px;}
.ya2{bottom:513.481500px;}
.y7f{bottom:513.484560px;}
.y59{bottom:513.485625px;}
.y165{bottom:513.506190px;}
.y18e{bottom:513.510870px;}
.y27{bottom:513.526665px;}
.yec{bottom:513.528990px;}
.y13a{bottom:513.557700px;}
.y4b{bottom:516.524400px;}
.y17a{bottom:518.014740px;}
.y1b6{bottom:523.729650px;}
.y4a{bottom:529.124400px;}
.y179{bottom:530.614740px;}
.ya1{bottom:532.975650px;}
.y7e{bottom:532.978710px;}
.y58{bottom:532.979775px;}
.yc8{bottom:532.988610px;}
.y164{bottom:533.000340px;}
.y18d{bottom:533.004420px;}
.y26{bottom:533.020815px;}
.yeb{bottom:533.023140px;}
.y139{bottom:533.051250px;}
.y1d0{bottom:538.129650px;}
.y49{bottom:541.724400px;}
.y178{bottom:543.214740px;}
.y57{bottom:552.473925px;}
.yc7{bottom:552.482160px;}
.y7d{bottom:552.491025px;}
.y163{bottom:552.494490px;}
.y18c{bottom:552.498570px;}
.y25{bottom:552.514965px;}
.yea{bottom:552.517290px;}
.y1b5{bottom:552.529650px;}
.y138{bottom:552.545400px;}
.ya0{bottom:552.557100px;}
.y48{bottom:554.324400px;}
.yc6{bottom:571.976310px;}
.y7c{bottom:571.984575px;}
.y162{bottom:571.988640px;}
.y18b{bottom:571.992720px;}
.ye9{bottom:572.011440px;}
.y137{bottom:572.039550px;}
.y9f{bottom:572.050650px;}
.y1b4{bottom:581.329650px;}
.y56{bottom:591.475725px;}
.y7b{bottom:591.478725px;}
.y161{bottom:591.482190px;}
.y18a{bottom:591.486870px;}
.y114{bottom:591.504990px;}
.ye8{bottom:591.505590px;}
.y24{bottom:591.516165px;}
.yc5{bottom:591.530220px;}
.y9e{bottom:591.544800px;}
.y1cb{bottom:595.729650px;}
.y1b3{bottom:610.129650px;}
.y160{bottom:610.976340px;}
.y189{bottom:610.981020px;}
.y7a{bottom:610.991040px;}
.y113{bottom:610.999140px;}
.ye7{bottom:610.999740px;}
.yc4{bottom:611.024370px;}
.y9d{bottom:611.038950px;}
.y136{bottom:611.041350px;}
.y1b2{bottom:624.529650px;}
.y188{bottom:630.475170px;}
.y79{bottom:630.484590px;}
.y112{bottom:630.493290px;}
.ye6{bottom:630.493890px;}
.yc3{bottom:630.518520px;}
.y15f{bottom:630.518535px;}
.y9c{bottom:630.533100px;}
.y1b1{bottom:638.929650px;}
.y78{bottom:649.978740px;}
.y111{bottom:649.987440px;}
.ye5{bottom:649.988040px;}
.y187{bottom:649.993335px;}
.y55{bottom:650.000955px;}
.y23{bottom:650.012115px;}
.yc2{bottom:650.012670px;}
.y15e{bottom:650.012685px;}
.y9b{bottom:650.027250px;}
.y1b0{bottom:653.329650px;}
.y1af{bottom:667.729650px;}
.ye4{bottom:669.481590px;}
.y186{bottom:669.487485px;}
.y54{bottom:669.495105px;}
.yc1{bottom:669.506220px;}
.y22{bottom:669.506265px;}
.y15d{bottom:669.506835px;}
.y9a{bottom:669.521400px;}
.y77{bottom:669.526800px;}
.y135{bottom:669.536700px;}
.y1ae{bottom:682.129650px;}
.ye3{bottom:688.975740px;}
.y185{bottom:688.981635px;}
.y53{bottom:688.989255px;}
.yc0{bottom:689.000370px;}
.y21{bottom:689.000415px;}
.y15c{bottom:689.000985px;}
.y99{bottom:689.015550px;}
.y76{bottom:689.020950px;}
.y134{bottom:689.030850px;}
.y1ad{bottom:696.529650px;}
.y184{bottom:708.475785px;}
.y52{bottom:708.482805px;}
.ybf{bottom:708.494520px;}
.y20{bottom:708.494565px;}
.y15b{bottom:708.495135px;}
.y98{bottom:708.509700px;}
.y75{bottom:708.514500px;}
.y133{bottom:708.524400px;}
.ye2{bottom:708.536100px;}
.y1ac{bottom:710.929650px;}
.y1ca{bottom:725.329650px;}
.y183{bottom:727.969935px;}
.y51{bottom:727.976955px;}
.ybe{bottom:727.988670px;}
.y1f{bottom:727.988715px;}
.y15a{bottom:727.989285px;}
.y97{bottom:728.003850px;}
.y74{bottom:728.008050px;}
.y132{bottom:728.018550px;}
.ye1{bottom:728.030250px;}
.y1ab{bottom:739.729650px;}
.y1e{bottom:747.482265px;}
.ybd{bottom:747.482820px;}
.y159{bottom:747.482835px;}
.y96{bottom:747.498000px;}
.y73{bottom:747.501600px;}
.y131{bottom:747.512700px;}
.y50{bottom:747.519150px;}
.ye0{bottom:747.524400px;}
.y1a0{bottom:747.525000px;}
.y1aa{bottom:754.129650px;}
.y1d{bottom:766.976415px;}
.ybc{bottom:766.976970px;}
.y158{bottom:766.976985px;}
.y95{bottom:766.992150px;}
.y72{bottom:766.995150px;}
.y130{bottom:767.006850px;}
.y4f{bottom:767.013300px;}
.y182{bottom:767.017950px;}
.ydf{bottom:767.018550px;}
.y1a9{bottom:768.529650px;}
.y1c{bottom:786.470565px;}
.y94{bottom:786.486300px;}
.y71{bottom:786.489300px;}
.y12f{bottom:786.501000px;}
.y157{bottom:786.501600px;}
.y4e{bottom:786.507450px;}
.y181{bottom:786.512100px;}
.yde{bottom:786.512700px;}
.ybb{bottom:786.513300px;}
.y1a8{bottom:797.329650px;}
.y93{bottom:805.979850px;}
.y70{bottom:805.983450px;}
.y12e{bottom:805.995150px;}
.y1b{bottom:806.001000px;}
.y4d{bottom:806.001600px;}
.y180{bottom:806.006250px;}
.ydd{bottom:806.006850px;}
.yba{bottom:806.007450px;}
.y1a7{bottom:811.729650px;}
.y6f{bottom:825.477000px;}
.y12d{bottom:825.489300px;}
.y1a{bottom:825.495150px;}
.y17f{bottom:825.500400px;}
.ydc{bottom:825.501000px;}
.yb9{bottom:825.501600px;}
.y1a6{bottom:840.529650px;}
.y92{bottom:844.981650px;}
.y6e{bottom:844.983450px;}
.y19{bottom:844.989300px;}
.y17e{bottom:844.994550px;}
.yb8{bottom:844.995150px;}
.y1a5{bottom:854.929650px;}
.y4{bottom:864.471150px;}
.y6d{bottom:864.477000px;}
.y18{bottom:864.483450px;}
.y17d{bottom:864.488700px;}
.yb7{bottom:864.489300px;}
.y1a4{bottom:869.329650px;}
.y1c9{bottom:883.729650px;}
.y17{bottom:883.977000px;}
.y17c{bottom:883.982850px;}
.y6c{bottom:883.983450px;}
.y1a3{bottom:898.129650px;}
.y3{bottom:903.477000px;}
.y1a2{bottom:912.529650px;}
.y2{bottom:922.971150px;}
.y1a1{bottom:926.929650px;}
.h2{height:26.748000px;}
.h5{height:31.206000px;}
.h8{height:38.556000px;}
.h7{height:38.976000px;}
.h4{height:39.258000px;}
.h3{height:40.122000px;}
.h9{height:44.544000px;}
.h6{height:50.112000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:63.775350px;}
.x2{left:85.038000px;}
.x5{left:119.055000px;}
.x4{left:140.315100px;}
.x6{left:164.465250px;}
.xc{left:305.469060px;}
.xd{left:348.660450px;}
.x7{left:365.668950px;}
.xe{left:369.918645px;}
.x9{left:372.035565px;}
.x8{left:386.930850px;}
.xa{left:390.511650px;}
.xb{left:433.701840px;}
.x1{left:567.687000px;}
@media print{
.v2{vertical-align:-20.639573pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.389600pt;}
.ls50{letter-spacing:-1.760000pt;}
.ls14{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.597333pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.469333pt;}
.ls2f{letter-spacing:-0.432000pt;}
.ls48{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls3f{letter-spacing:-0.213333pt;}
.ls2a{letter-spacing:-0.156000pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.037333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000107pt;}
.lse{letter-spacing:0.000160pt;}
.ls8{letter-spacing:0.000213pt;}
.ls10{letter-spacing:0.000267pt;}
.ls26{letter-spacing:0.000693pt;}
.ls1f{letter-spacing:0.000747pt;}
.ls3{letter-spacing:0.000907pt;}
.ls1c{letter-spacing:0.001013pt;}
.ls9{letter-spacing:0.001280pt;}
.ls11{letter-spacing:0.048000pt;}
.ls37{letter-spacing:0.085333pt;}
.ls4f{letter-spacing:0.087520pt;}
.ls15{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.124800pt;}
.ls4e{letter-spacing:0.168853pt;}
.ls40{letter-spacing:0.170667pt;}
.ls4c{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.312000pt;}
.ls34{letter-spacing:0.336000pt;}
.ls41{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.561600pt;}
.ls1a{letter-spacing:0.592800pt;}
.ls29{letter-spacing:0.624000pt;}
.ls20{letter-spacing:0.709333pt;}
.ls49{letter-spacing:0.768000pt;}
.ls44{letter-spacing:0.810400pt;}
.ls3a{letter-spacing:0.810667pt;}
.ls4b{letter-spacing:0.847893pt;}
.ls45{letter-spacing:0.856267pt;}
.ls24{letter-spacing:0.864000pt;}
.ls13{letter-spacing:0.904800pt;}
.lsb{letter-spacing:0.912000pt;}
.ls33{letter-spacing:0.967200pt;}
.ls46{letter-spacing:1.066667pt;}
.ls25{letter-spacing:1.082667pt;}
.ls35{letter-spacing:1.092000pt;}
.ls27{letter-spacing:1.123200pt;}
.ls2c{letter-spacing:1.152000pt;}
.ls19{letter-spacing:1.154400pt;}
.ls3d{letter-spacing:1.194667pt;}
.ls22{letter-spacing:1.200000pt;}
.ls36{letter-spacing:1.237333pt;}
.ls16{letter-spacing:1.310400pt;}
.ls4a{letter-spacing:1.322667pt;}
.ls1d{letter-spacing:1.372800pt;}
.lsf{letter-spacing:1.381333pt;}
.ls30{letter-spacing:1.392000pt;}
.ls3e{letter-spacing:1.536000pt;}
.ls21{letter-spacing:1.568000pt;}
.ls52{letter-spacing:1.792000pt;}
.ls3c{letter-spacing:1.920000pt;}
.ls31{letter-spacing:2.016000pt;}
.ls32{letter-spacing:2.121600pt;}
.ls17{letter-spacing:2.277600pt;}
.ls23{letter-spacing:2.776800pt;}
.lsa{letter-spacing:2.981227pt;}
.ls7{letter-spacing:3.200000pt;}
.ls42{letter-spacing:3.329173pt;}
.ls0{letter-spacing:3.360000pt;}
.ls51{letter-spacing:3.413333pt;}
.ls2{letter-spacing:3.600000pt;}
.ls1{letter-spacing:3.733333pt;}
.lsc{letter-spacing:4.272000pt;}
.ls43{letter-spacing:4.518773pt;}
.ls4d{letter-spacing:12.337493pt;}
.ws16{word-spacing:-28.272000pt;}
.wse2{word-spacing:-26.016000pt;}
.wse1{word-spacing:-25.392000pt;}
.ws84{word-spacing:-25.200000pt;}
.ws14{word-spacing:-24.912000pt;}
.ws86{word-spacing:-24.864000pt;}
.ws13d{word-spacing:-24.746667pt;}
.wsb7{word-spacing:-24.624000pt;}
.ws1{word-spacing:-24.000000pt;}
.wsbf{word-spacing:-23.760000pt;}
.wsd6{word-spacing:-23.520000pt;}
.ws107{word-spacing:-23.253333pt;}
.ws13f{word-spacing:-23.125333pt;}
.ws10a{word-spacing:-22.869333pt;}
.ws128{word-spacing:-22.656000pt;}
.ws109{word-spacing:-22.570667pt;}
.ws108{word-spacing:-22.528000pt;}
.ws125{word-spacing:-22.400000pt;}
.ws106{word-spacing:-22.144000pt;}
.ws127{word-spacing:-22.101333pt;}
.ws105{word-spacing:-21.760000pt;}
.ws13e{word-spacing:-21.717333pt;}
.ws141{word-spacing:-21.546667pt;}
.ws10b{word-spacing:-21.504000pt;}
.ws102{word-spacing:-21.418667pt;}
.ws101{word-spacing:-21.333333pt;}
.ws83{word-spacing:-20.234667pt;}
.ws34{word-spacing:-20.048000pt;}
.ws87{word-spacing:-19.749333pt;}
.ws82{word-spacing:-19.376000pt;}
.wse6{word-spacing:-19.002667pt;}
.ws33{word-spacing:-18.666667pt;}
.ws85{word-spacing:-18.376800pt;}
.ws5b{word-spacing:-17.877600pt;}
.wse3{word-spacing:-17.721600pt;}
.ws70{word-spacing:-16.972800pt;}
.ws46{word-spacing:-16.910400pt;}
.ws5d{word-spacing:-16.754400pt;}
.wsa0{word-spacing:-16.723200pt;}
.wsf6{word-spacing:-16.692000pt;}
.wse5{word-spacing:-16.567200pt;}
.ws43{word-spacing:-16.504800pt;}
.wsc1{word-spacing:-16.224000pt;}
.ws5e{word-spacing:-16.192800pt;}
.ws5f{word-spacing:-16.161600pt;}
.ws42{word-spacing:-15.912000pt;}
.ws5c{word-spacing:-15.724800pt;}
.ws17{word-spacing:-15.600000pt;}
.wsb9{word-spacing:-15.444000pt;}
.ws13{word-spacing:-12.096000pt;}
.ws45{word-spacing:-9.696000pt;}
.ws41{word-spacing:-9.648000pt;}
.ws15{word-spacing:-9.600000pt;}
.wsb8{word-spacing:-9.360000pt;}
.wsc0{word-spacing:-8.832000pt;}
.ws140{word-spacing:-8.746667pt;}
.ws44{word-spacing:-8.592000pt;}
.ws103{word-spacing:-8.533333pt;}
.ws0{word-spacing:-8.256000pt;}
.ws126{word-spacing:-8.106667pt;}
.ws104{word-spacing:-8.064000pt;}
.ws81{word-spacing:-7.466667pt;}
.wsc2{word-spacing:-7.429333pt;}
.ws13c{word-spacing:-7.136000pt;}
.wsd4{word-spacing:-3.024000pt;}
.ws146{word-spacing:-2.944000pt;}
.wsf9{word-spacing:-2.640000pt;}
.ws90{word-spacing:-2.544000pt;}
.ws66{word-spacing:-2.256000pt;}
.wsdf{word-spacing:-2.208000pt;}
.ws9b{word-spacing:-2.112000pt;}
.ws7f{word-spacing:-1.872000pt;}
.wsaf{word-spacing:-1.824000pt;}
.wsd1{word-spacing:-1.776000pt;}
.ws4b{word-spacing:-1.728000pt;}
.ws79{word-spacing:-1.680000pt;}
.ws4c{word-spacing:-1.632000pt;}
.ws47{word-spacing:-1.536000pt;}
.wsb3{word-spacing:-1.440000pt;}
.ws99{word-spacing:-1.392000pt;}
.ws10c{word-spacing:-1.365333pt;}
.wsf{word-spacing:-1.344000pt;}
.ws96{word-spacing:-1.296000pt;}
.wsb{word-spacing:-1.248000pt;}
.ws48{word-spacing:-1.200000pt;}
.ws57{word-spacing:-1.152000pt;}
.ws37{word-spacing:-1.104000pt;}
.wsf5{word-spacing:-1.056000pt;}
.ws135{word-spacing:-1.024000pt;}
.wsd{word-spacing:-1.008000pt;}
.ws121{word-spacing:-0.938667pt;}
.ws36{word-spacing:-0.912000pt;}
.ws134{word-spacing:-0.896000pt;}
.ws110{word-spacing:-0.853333pt;}
.wsb6{word-spacing:-0.816000pt;}
.ws2d{word-spacing:-0.768000pt;}
.ws14a{word-spacing:-0.725333pt;}
.wsff{word-spacing:-0.720000pt;}
.ws124{word-spacing:-0.682667pt;}
.ws54{word-spacing:-0.672000pt;}
.ws28{word-spacing:-0.624000pt;}
.ws11b{word-spacing:-0.597333pt;}
.wse{word-spacing:-0.528000pt;}
.ws138{word-spacing:-0.512000pt;}
.ws3{word-spacing:-0.480000pt;}
.ws74{word-spacing:-0.432000pt;}
.wsc{word-spacing:-0.384000pt;}
.ws7e{word-spacing:-0.336000pt;}
.ws116{word-spacing:-0.298667pt;}
.ws65{word-spacing:-0.288000pt;}
.ws32{word-spacing:-0.240000pt;}
.ws120{word-spacing:-0.213333pt;}
.wsf8{word-spacing:-0.192000pt;}
.ws11c{word-spacing:-0.170667pt;}
.wsb5{word-spacing:-0.144000pt;}
.wsee{word-spacing:-0.096000pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws12c{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws14c{word-spacing:0.042667pt;}
.wsf7{word-spacing:0.048000pt;}
.wsb0{word-spacing:0.096000pt;}
.ws131{word-spacing:0.128000pt;}
.ws10{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.240000pt;}
.ws136{word-spacing:0.298667pt;}
.ws3d{word-spacing:0.336000pt;}
.wsba{word-spacing:0.384000pt;}
.ws71{word-spacing:0.432000pt;}
.ws12f{word-spacing:0.469333pt;}
.wse4{word-spacing:0.480000pt;}
.wsfb{word-spacing:0.576000pt;}
.ws2c{word-spacing:0.672000pt;}
.ws137{word-spacing:0.682667pt;}
.ws67{word-spacing:0.720000pt;}
.ws8f{word-spacing:0.816000pt;}
.ws10e{word-spacing:0.853333pt;}
.wsde{word-spacing:0.864000pt;}
.ws2a{word-spacing:0.912000pt;}
.ws72{word-spacing:0.960000pt;}
.ws118{word-spacing:0.981333pt;}
.ws12{word-spacing:1.008000pt;}
.ws1d{word-spacing:1.056000pt;}
.ws11f{word-spacing:1.066667pt;}
.ws30{word-spacing:1.104000pt;}
.ws50{word-spacing:1.152000pt;}
.wsf3{word-spacing:1.200000pt;}
.wsfd{word-spacing:1.248000pt;}
.wsdc{word-spacing:1.296000pt;}
.ws148{word-spacing:1.322667pt;}
.ws4d{word-spacing:1.344000pt;}
.ws95{word-spacing:1.392000pt;}
.wsdd{word-spacing:1.440000pt;}
.ws9{word-spacing:1.488000pt;}
.ws4a{word-spacing:1.536000pt;}
.ws6f{word-spacing:1.584000pt;}
.wsdb{word-spacing:1.632000pt;}
.ws7c{word-spacing:1.680000pt;}
.ws4e{word-spacing:1.728000pt;}
.wsf1{word-spacing:1.776000pt;}
.ws31{word-spacing:1.824000pt;}
.ws7b{word-spacing:1.872000pt;}
.ws132{word-spacing:1.877333pt;}
.wsb4{word-spacing:1.920000pt;}
.ws1f{word-spacing:1.968000pt;}
.ws7a{word-spacing:2.016000pt;}
.ws62{word-spacing:2.112000pt;}
.wse0{word-spacing:2.160000pt;}
.ws14b{word-spacing:2.176000pt;}
.wsd2{word-spacing:2.208000pt;}
.wsfc{word-spacing:2.256000pt;}
.ws23{word-spacing:2.304000pt;}
.wsbc{word-spacing:2.352000pt;}
.ws69{word-spacing:2.400000pt;}
.ws3f{word-spacing:2.448000pt;}
.ws80{word-spacing:2.544000pt;}
.wsf4{word-spacing:2.592000pt;}
.ws58{word-spacing:2.640000pt;}
.ws19{word-spacing:2.688000pt;}
.ws5{word-spacing:2.736000pt;}
.ws8{word-spacing:2.784000pt;}
.wse9{word-spacing:2.832000pt;}
.ws78{word-spacing:2.880000pt;}
.wsa3{word-spacing:2.928000pt;}
.ws21{word-spacing:2.976000pt;}
.ws22{word-spacing:3.024000pt;}
.ws2f{word-spacing:3.072000pt;}
.ws3a{word-spacing:3.120000pt;}
.ws149{word-spacing:3.157333pt;}
.ws97{word-spacing:3.216000pt;}
.ws7d{word-spacing:3.264000pt;}
.ws2b{word-spacing:3.312000pt;}
.ws12e{word-spacing:3.328000pt;}
.ws35{word-spacing:3.360000pt;}
.ws147{word-spacing:3.370667pt;}
.wsca{word-spacing:3.408000pt;}
.ws24{word-spacing:3.504000pt;}
.ws1a{word-spacing:3.552000pt;}
.ws5a{word-spacing:3.600000pt;}
.ws56{word-spacing:3.648000pt;}
.ws9f{word-spacing:3.744000pt;}
.wsc6{word-spacing:3.792000pt;}
.wsb2{word-spacing:3.840000pt;}
.ws14f{word-spacing:3.882667pt;}
.wsec{word-spacing:3.888000pt;}
.ws39{word-spacing:3.936000pt;}
.ws8d{word-spacing:3.984000pt;}
.wsac{word-spacing:4.032000pt;}
.wsb1{word-spacing:4.080000pt;}
.wsfa{word-spacing:4.128000pt;}
.wsbb{word-spacing:4.176000pt;}
.ws1b{word-spacing:4.224000pt;}
.wsa{word-spacing:4.272000pt;}
.ws73{word-spacing:4.320000pt;}
.ws38{word-spacing:4.368000pt;}
.ws27{word-spacing:4.416000pt;}
.ws55{word-spacing:4.464000pt;}
.ws76{word-spacing:4.512000pt;}
.ws130{word-spacing:4.522667pt;}
.ws7{word-spacing:4.560000pt;}
.ws11e{word-spacing:4.565333pt;}
.ws53{word-spacing:4.608000pt;}
.ws14e{word-spacing:4.650667pt;}
.ws6b{word-spacing:4.704000pt;}
.ws6e{word-spacing:4.752000pt;}
.ws52{word-spacing:4.800000pt;}
.ws12d{word-spacing:4.864000pt;}
.ws40{word-spacing:4.896000pt;}
.wse7{word-spacing:4.944000pt;}
.ws61{word-spacing:4.992000pt;}
.wsd7{word-spacing:5.040000pt;}
.ws60{word-spacing:5.088000pt;}
.ws26{word-spacing:5.136000pt;}
.ws25{word-spacing:5.280000pt;}
.ws139{word-spacing:5.290667pt;}
.ws75{word-spacing:5.328000pt;}
.ws115{word-spacing:5.333333pt;}
.ws9d{word-spacing:5.376000pt;}
.ws51{word-spacing:5.424000pt;}
.ws11{word-spacing:5.472000pt;}
.ws3c{word-spacing:5.568000pt;}
.ws64{word-spacing:5.616000pt;}
.wsd9{word-spacing:5.664000pt;}
.ws77{word-spacing:5.760000pt;}
.ws142{word-spacing:5.802667pt;}
.ws145{word-spacing:5.845333pt;}
.ws6d{word-spacing:5.856000pt;}
.ws113{word-spacing:5.930667pt;}
.ws12a{word-spacing:5.973333pt;}
.ws4f{word-spacing:6.000000pt;}
.ws100{word-spacing:6.048000pt;}
.ws49{word-spacing:6.096000pt;}
.wsef{word-spacing:6.144000pt;}
.ws3b{word-spacing:6.240000pt;}
.ws59{word-spacing:6.288000pt;}
.ws119{word-spacing:6.400000pt;}
.wsc8{word-spacing:6.432000pt;}
.ws29{word-spacing:6.480000pt;}
.ws1e{word-spacing:6.528000pt;}
.wsc5{word-spacing:6.576000pt;}
.ws8c{word-spacing:6.624000pt;}
.ws9c{word-spacing:6.672000pt;}
.ws93{word-spacing:6.768000pt;}
.wsd3{word-spacing:6.816000pt;}
.wsd5{word-spacing:6.912000pt;}
.ws11a{word-spacing:6.997333pt;}
.ws63{word-spacing:7.008000pt;}
.ws123{word-spacing:7.082667pt;}
.ws18{word-spacing:7.104000pt;}
.ws10d{word-spacing:7.125333pt;}
.ws112{word-spacing:7.168000pt;}
.wsbe{word-spacing:7.248000pt;}
.wsbd{word-spacing:7.296000pt;}
.wsda{word-spacing:7.392000pt;}
.ws6a{word-spacing:7.488000pt;}
.wsc7{word-spacing:7.536000pt;}
.ws4{word-spacing:7.632000pt;}
.ws129{word-spacing:7.637333pt;}
.ws8b{word-spacing:7.728000pt;}
.ws13b{word-spacing:8.064000pt;}
.ws20{word-spacing:8.208000pt;}
.wscd{word-spacing:8.304000pt;}
.wsf2{word-spacing:8.352000pt;}
.wsfe{word-spacing:8.400000pt;}
.ws9e{word-spacing:8.544000pt;}
.ws111{word-spacing:8.576000pt;}
.wsa4{word-spacing:8.592000pt;}
.ws6{word-spacing:8.736000pt;}
.wsa6{word-spacing:8.784000pt;}
.wsa2{word-spacing:8.832000pt;}
.ws117{word-spacing:9.216000pt;}
.ws11d{word-spacing:9.429333pt;}
.ws8e{word-spacing:9.504000pt;}
.ws2e{word-spacing:9.552000pt;}
.ws10f{word-spacing:9.557333pt;}
.wsd8{word-spacing:9.600000pt;}
.ws144{word-spacing:9.642667pt;}
.ws98{word-spacing:9.792000pt;}
.wse8{word-spacing:9.888000pt;}
.ws133{word-spacing:9.941333pt;}
.ws13a{word-spacing:10.325333pt;}
.wsc3{word-spacing:10.512000pt;}
.ws8a{word-spacing:10.608000pt;}
.ws143{word-spacing:10.709333pt;}
.wsab{word-spacing:10.944000pt;}
.ws6c{word-spacing:11.184000pt;}
.wsd0{word-spacing:11.280000pt;}
.wsae{word-spacing:11.424000pt;}
.wsa1{word-spacing:11.568000pt;}
.ws114{word-spacing:11.605333pt;}
.wscc{word-spacing:11.712000pt;}
.ws94{word-spacing:11.952000pt;}
.wsce{word-spacing:12.096000pt;}
.ws68{word-spacing:12.144000pt;}
.ws122{word-spacing:12.160000pt;}
.wsea{word-spacing:12.240000pt;}
.ws92{word-spacing:12.432000pt;}
.wsa9{word-spacing:12.624000pt;}
.wsed{word-spacing:12.672000pt;}
.wsc4{word-spacing:12.720000pt;}
.ws89{word-spacing:12.768000pt;}
.ws14d{word-spacing:12.800000pt;}
.wsa7{word-spacing:13.104000pt;}
.wsf0{word-spacing:13.200000pt;}
.wseb{word-spacing:13.824000pt;}
.ws12b{word-spacing:14.592000pt;}
.wsad{word-spacing:15.072000pt;}
.ws88{word-spacing:15.504000pt;}
.ws91{word-spacing:16.224000pt;}
.wsa8{word-spacing:16.416000pt;}
.wscf{word-spacing:16.848000pt;}
.wsaa{word-spacing:16.992000pt;}
.ws9a{word-spacing:18.048000pt;}
.wsc9{word-spacing:19.296000pt;}
.wscb{word-spacing:21.072000pt;}
.wsa5{word-spacing:24.864000pt;}
._8{margin-left:-1767.552000pt;}
._f{margin-left:-1766.416437pt;}
._a{margin-left:-19.194960pt;}
._3{margin-left:-8.640096pt;}
._1{margin-left:-5.280576pt;}
._4{margin-left:-4.108832pt;}
._0{margin-left:-2.639194pt;}
._2{margin-left:-0.960840pt;}
._5{width:1.104437pt;}
._6{width:2.007966pt;}
._7{width:3.459662pt;}
._d{width:6.186667pt;}
._c{width:7.146973pt;}
._e{width:10.169463pt;}
._9{width:11.200000pt;}
._b{width:12.800000pt;}
.fs3{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:92.418800pt;}
.y153{bottom:144.423440pt;}
.y6b{bottom:144.425907pt;}
.y39{bottom:144.432613pt;}
.y16{bottom:144.438973pt;}
.y10d{bottom:144.440093pt;}
.y127{bottom:144.453440pt;}
.yb4{bottom:144.454467pt;}
.y91{bottom:144.456773pt;}
.yfe{bottom:144.458107pt;}
.yd7{bottom:144.459173pt;}
.y177{bottom:144.486813pt;}
.y47{bottom:144.487467pt;}
.y14c{bottom:144.590400pt;}
.yb6{bottom:145.664667pt;}
.yb5{bottom:156.864667pt;}
.y1c8{bottom:158.336947pt;}
.y38{bottom:161.760747pt;}
.y15{bottom:161.767107pt;}
.y10c{bottom:161.768227pt;}
.y152{bottom:161.778133pt;}
.y126{bottom:161.781573pt;}
.yb3{bottom:161.782600pt;}
.y90{bottom:161.784373pt;}
.yfd{bottom:161.785707pt;}
.yd6{bottom:161.787307pt;}
.y6a{bottom:161.791013pt;}
.y176{bottom:161.814947pt;}
.y46{bottom:161.815600pt;}
.y19f{bottom:161.876907pt;}
.y14b{bottom:161.918533pt;}
.y1c7{bottom:171.136947pt;}
.y37{bottom:179.088880pt;}
.y14{bottom:179.095240pt;}
.y10b{bottom:179.095827pt;}
.y151{bottom:179.106267pt;}
.y125{bottom:179.109707pt;}
.yb2{bottom:179.110733pt;}
.y8f{bottom:179.111973pt;}
.yfc{bottom:179.113840pt;}
.yd5{bottom:179.115440pt;}
.y69{bottom:179.119147pt;}
.y175{bottom:179.142547pt;}
.y45{bottom:179.143733pt;}
.y19e{bottom:179.205040pt;}
.y14a{bottom:179.246667pt;}
.y1c6{bottom:183.936947pt;}
.y13{bottom:196.423373pt;}
.y10a{bottom:196.423960pt;}
.y150{bottom:196.434400pt;}
.y124{bottom:196.437840pt;}
.yb1{bottom:196.438867pt;}
.y8e{bottom:196.439573pt;}
.yfb{bottom:196.441973pt;}
.yd4{bottom:196.443040pt;}
.y36{bottom:196.443573pt;}
.y68{bottom:196.447280pt;}
.y174{bottom:196.470680pt;}
.y44{bottom:196.471867pt;}
.y19d{bottom:196.533173pt;}
.y149{bottom:196.574800pt;}
.y1c5{bottom:196.736947pt;}
.y1c4{bottom:209.536947pt;}
.y14f{bottom:213.762533pt;}
.y123{bottom:213.765973pt;}
.yb0{bottom:213.767000pt;}
.y8d{bottom:213.767173pt;}
.yfa{bottom:213.770107pt;}
.yd3{bottom:213.771173pt;}
.y35{bottom:213.771707pt;}
.y67{bottom:213.775413pt;}
.y109{bottom:213.783867pt;}
.y173{bottom:213.798813pt;}
.y43{bottom:213.800000pt;}
.y12{bottom:213.814000pt;}
.y19c{bottom:213.861307pt;}
.y148{bottom:213.902933pt;}
.y1cf{bottom:222.336947pt;}
.y14e{bottom:231.090667pt;}
.y122{bottom:231.094107pt;}
.yaf{bottom:231.094600pt;}
.y8c{bottom:231.094773pt;}
.yf9{bottom:231.098240pt;}
.yd2{bottom:231.099307pt;}
.y34{bottom:231.099840pt;}
.y66{bottom:231.103013pt;}
.y108{bottom:231.112000pt;}
.y172{bottom:231.126947pt;}
.y42{bottom:231.128133pt;}
.y11{bottom:231.142133pt;}
.y19b{bottom:231.189440pt;}
.y147{bottom:231.231067pt;}
.y1c3{bottom:235.136947pt;}
.y1c2{bottom:247.936947pt;}
.y1ce{bottom:247.937467pt;}
.y14d{bottom:248.418800pt;}
.y121{bottom:248.422240pt;}
.yae{bottom:248.422733pt;}
.yf8{bottom:248.426373pt;}
.y33{bottom:248.427440pt;}
.y65{bottom:248.430613pt;}
.y107{bottom:248.440133pt;}
.y171{bottom:248.454547pt;}
.y41{bottom:248.455733pt;}
.y8b{bottom:248.465613pt;}
.y10{bottom:248.470267pt;}
.y19a{bottom:248.517573pt;}
.y146{bottom:248.558667pt;}
.y1c1{bottom:260.736947pt;}
.yf7{bottom:265.754507pt;}
.y32{bottom:265.755573pt;}
.y64{bottom:265.758747pt;}
.y106{bottom:265.768267pt;}
.yad{bottom:265.777427pt;}
.y170{bottom:265.782680pt;}
.y40{bottom:265.783867pt;}
.y8a{bottom:265.793213pt;}
.yf{bottom:265.797867pt;}
.y120{bottom:265.814427pt;}
.y199{bottom:265.845707pt;}
.y145{bottom:265.886800pt;}
.y1c0{bottom:273.537467pt;}
.yd1{bottom:283.083173pt;}
.y105{bottom:283.095867pt;}
.yac{bottom:283.105560pt;}
.y63{bottom:283.108227pt;}
.y16f{bottom:283.110813pt;}
.y3f{bottom:283.112000pt;}
.y89{bottom:283.120813pt;}
.ye{bottom:283.126000pt;}
.y11f{bottom:283.142027pt;}
.y198{bottom:283.173840pt;}
.y31{bottom:283.187347pt;}
.yf6{bottom:283.189413pt;}
.y144{bottom:283.214933pt;}
.y1bf{bottom:286.337467pt;}
.y1cd{bottom:299.137467pt;}
.y104{bottom:300.424000pt;}
.yab{bottom:300.433693pt;}
.y62{bottom:300.436360pt;}
.y16e{bottom:300.438947pt;}
.y3e{bottom:300.440133pt;}
.y88{bottom:300.448413pt;}
.yd{bottom:300.454133pt;}
.y11e{bottom:300.470160pt;}
.y197{bottom:300.501973pt;}
.y30{bottom:300.515480pt;}
.yf5{bottom:300.517547pt;}
.y143{bottom:300.543067pt;}
.y1be{bottom:311.937467pt;}
.y156{bottom:314.918107pt;}
.y103{bottom:317.752133pt;}
.yaa{bottom:317.761293pt;}
.y61{bottom:317.763960pt;}
.y16d{bottom:317.767080pt;}
.y3d{bottom:317.768267pt;}
.y87{bottom:317.776013pt;}
.yc{bottom:317.782267pt;}
.y11d{bottom:317.798293pt;}
.yd0{bottom:317.803520pt;}
.y196{bottom:317.829573pt;}
.y2f{bottom:317.843613pt;}
.yf4{bottom:317.845680pt;}
.y142{bottom:317.871200pt;}
.y1bd{bottom:324.737467pt;}
.y155{bottom:326.118107pt;}
.ya9{bottom:335.089427pt;}
.y60{bottom:335.092093pt;}
.y16c{bottom:335.094680pt;}
.y3c{bottom:335.095867pt;}
.y86{bottom:335.104147pt;}
.yb{bottom:335.110400pt;}
.y11c{bottom:335.126427pt;}
.ycf{bottom:335.131120pt;}
.y195{bottom:335.157707pt;}
.y2e{bottom:335.171747pt;}
.yf3{bottom:335.173813pt;}
.y141{bottom:335.199333pt;}
.y154{bottom:337.318107pt;}
.y1bc{bottom:337.537467pt;}
.y1cc{bottom:350.337467pt;}
.y16b{bottom:352.422813pt;}
.y3b{bottom:352.424000pt;}
.y85{bottom:352.431747pt;}
.ya8{bottom:352.433707pt;}
.ya{bottom:352.438533pt;}
.y11b{bottom:352.454560pt;}
.yce{bottom:352.459253pt;}
.y5f{bottom:352.465533pt;}
.y194{bottom:352.485840pt;}
.y2d{bottom:352.499880pt;}
.yf2{bottom:352.501947pt;}
.y140{bottom:352.527467pt;}
.y102{bottom:362.399440pt;}
.y1bb{bottom:363.137467pt;}
.ydb{bottom:363.448507pt;}
.y12c{bottom:368.541960pt;}
.y3a{bottom:369.752133pt;}
.y84{bottom:369.759347pt;}
.ya7{bottom:369.761307pt;}
.y9{bottom:369.766667pt;}
.y11a{bottom:369.782160pt;}
.ycd{bottom:369.787387pt;}
.y5e{bottom:369.793667pt;}
.y16a{bottom:369.809280pt;}
.y193{bottom:369.813973pt;}
.y2c{bottom:369.828013pt;}
.yf1{bottom:369.830080pt;}
.y13f{bottom:369.855600pt;}
.y101{bottom:373.599440pt;}
.yda{bottom:374.648507pt;}
.y1d3{bottom:375.937467pt;}
.y12b{bottom:379.741960pt;}
.y100{bottom:384.799440pt;}
.yd9{bottom:385.848507pt;}
.ya6{bottom:387.089440pt;}
.y8{bottom:387.094800pt;}
.y119{bottom:387.110293pt;}
.ycc{bottom:387.115520pt;}
.y83{bottom:387.119253pt;}
.y5d{bottom:387.121267pt;}
.y169{bottom:387.137413pt;}
.y192{bottom:387.141573pt;}
.y2b{bottom:387.156147pt;}
.yf0{bottom:387.158213pt;}
.y13e{bottom:387.183733pt;}
.y1ba{bottom:388.737467pt;}
.y12a{bottom:390.941960pt;}
.y110{bottom:392.126760pt;}
.yff{bottom:395.999440pt;}
.yd8{bottom:397.048507pt;}
.y1d2{bottom:401.537467pt;}
.y129{bottom:402.141960pt;}
.y10f{bottom:403.326760pt;}
.y7{bottom:404.422933pt;}
.y118{bottom:404.438427pt;}
.ycb{bottom:404.443120pt;}
.ya5{bottom:404.444133pt;}
.y82{bottom:404.446853pt;}
.y5c{bottom:404.448867pt;}
.y168{bottom:404.465547pt;}
.y191{bottom:404.469707pt;}
.y2a{bottom:404.484280pt;}
.yef{bottom:404.486347pt;}
.y13d{bottom:404.511333pt;}
.y128{bottom:413.341440pt;}
.y1b9{bottom:414.337467pt;}
.y10e{bottom:414.526760pt;}
.y6{bottom:421.750533pt;}
.y117{bottom:421.766560pt;}
.yca{bottom:421.771253pt;}
.ya4{bottom:421.772267pt;}
.y81{bottom:421.774987pt;}
.y5b{bottom:421.776467pt;}
.y167{bottom:421.793680pt;}
.y190{bottom:421.797840pt;}
.y29{bottom:421.812413pt;}
.yee{bottom:421.814480pt;}
.y13c{bottom:421.839467pt;}
.y1d1{bottom:427.137467pt;}
.y116{bottom:439.094160pt;}
.yc9{bottom:439.099387pt;}
.ya3{bottom:439.100400pt;}
.y80{bottom:439.103120pt;}
.y5a{bottom:439.104067pt;}
.y166{bottom:439.121813pt;}
.y18f{bottom:439.125973pt;}
.y28{bottom:439.140013pt;}
.yed{bottom:439.142080pt;}
.y13b{bottom:439.167600pt;}
.y1b8{bottom:439.937467pt;}
.y4c{bottom:447.932800pt;}
.y17b{bottom:449.257547pt;}
.y1b7{bottom:452.737467pt;}
.y5{bottom:456.418800pt;}
.y115{bottom:456.422293pt;}
.ya2{bottom:456.428000pt;}
.y7f{bottom:456.430720pt;}
.y59{bottom:456.431667pt;}
.y165{bottom:456.449947pt;}
.y18e{bottom:456.454107pt;}
.y27{bottom:456.468147pt;}
.yec{bottom:456.470213pt;}
.y13a{bottom:456.495733pt;}
.y4b{bottom:459.132800pt;}
.y17a{bottom:460.457547pt;}
.y1b6{bottom:465.537467pt;}
.y4a{bottom:470.332800pt;}
.y179{bottom:471.657547pt;}
.ya1{bottom:473.756133pt;}
.y7e{bottom:473.758853pt;}
.y58{bottom:473.759800pt;}
.yc8{bottom:473.767653pt;}
.y164{bottom:473.778080pt;}
.y18d{bottom:473.781707pt;}
.y26{bottom:473.796280pt;}
.yeb{bottom:473.798347pt;}
.y139{bottom:473.823333pt;}
.y1d0{bottom:478.337467pt;}
.y49{bottom:481.532800pt;}
.y178{bottom:482.857547pt;}
.y57{bottom:491.087933pt;}
.yc7{bottom:491.095253pt;}
.y7d{bottom:491.103133pt;}
.y163{bottom:491.106213pt;}
.y18c{bottom:491.109840pt;}
.y25{bottom:491.124413pt;}
.yea{bottom:491.126480pt;}
.y1b5{bottom:491.137467pt;}
.y138{bottom:491.151467pt;}
.ya0{bottom:491.161867pt;}
.y48{bottom:492.732800pt;}
.yc6{bottom:508.423387pt;}
.y7c{bottom:508.430733pt;}
.y162{bottom:508.434347pt;}
.y18b{bottom:508.437973pt;}
.ye9{bottom:508.454613pt;}
.y137{bottom:508.479600pt;}
.y9f{bottom:508.489467pt;}
.y1b4{bottom:516.737467pt;}
.y56{bottom:525.756200pt;}
.y7b{bottom:525.758867pt;}
.y161{bottom:525.761947pt;}
.y18a{bottom:525.766107pt;}
.y114{bottom:525.782213pt;}
.ye8{bottom:525.782747pt;}
.y24{bottom:525.792147pt;}
.yc5{bottom:525.804640pt;}
.y9e{bottom:525.817600pt;}
.y1cb{bottom:529.537467pt;}
.y1b3{bottom:542.337467pt;}
.y160{bottom:543.090080pt;}
.y189{bottom:543.094240pt;}
.y7a{bottom:543.103147pt;}
.y113{bottom:543.110347pt;}
.ye7{bottom:543.110880pt;}
.yc4{bottom:543.132773pt;}
.y9d{bottom:543.145733pt;}
.y136{bottom:543.147867pt;}
.y1b2{bottom:555.137467pt;}
.y188{bottom:560.422373pt;}
.y79{bottom:560.430747pt;}
.y112{bottom:560.438480pt;}
.ye6{bottom:560.439013pt;}
.yc3{bottom:560.460907pt;}
.y15f{bottom:560.460920pt;}
.y9c{bottom:560.473867pt;}
.y1b1{bottom:567.937467pt;}
.y78{bottom:577.758880pt;}
.y111{bottom:577.766613pt;}
.ye5{bottom:577.767147pt;}
.y187{bottom:577.771853pt;}
.y55{bottom:577.778627pt;}
.y23{bottom:577.788547pt;}
.yc2{bottom:577.789040pt;}
.y15e{bottom:577.789053pt;}
.y9b{bottom:577.802000pt;}
.y1b0{bottom:580.737467pt;}
.y1af{bottom:593.537467pt;}
.ye4{bottom:595.094747pt;}
.y186{bottom:595.099987pt;}
.y54{bottom:595.106760pt;}
.yc1{bottom:595.116640pt;}
.y22{bottom:595.116680pt;}
.y15d{bottom:595.117187pt;}
.y9a{bottom:595.130133pt;}
.y77{bottom:595.134933pt;}
.y135{bottom:595.143733pt;}
.y1ae{bottom:606.337467pt;}
.ye3{bottom:612.422880pt;}
.y185{bottom:612.428120pt;}
.y53{bottom:612.434893pt;}
.yc0{bottom:612.444773pt;}
.y21{bottom:612.444813pt;}
.y15c{bottom:612.445320pt;}
.y99{bottom:612.458267pt;}
.y76{bottom:612.463067pt;}
.y134{bottom:612.471867pt;}
.y1ad{bottom:619.137467pt;}
.y184{bottom:629.756253pt;}
.y52{bottom:629.762493pt;}
.ybf{bottom:629.772907pt;}
.y20{bottom:629.772947pt;}
.y15b{bottom:629.773453pt;}
.y98{bottom:629.786400pt;}
.y75{bottom:629.790667pt;}
.y133{bottom:629.799467pt;}
.ye2{bottom:629.809867pt;}
.y1ac{bottom:631.937467pt;}
.y1ca{bottom:644.737467pt;}
.y183{bottom:647.084387pt;}
.y51{bottom:647.090627pt;}
.ybe{bottom:647.101040pt;}
.y1f{bottom:647.101080pt;}
.y15a{bottom:647.101587pt;}
.y97{bottom:647.114533pt;}
.y74{bottom:647.118267pt;}
.y132{bottom:647.127600pt;}
.ye1{bottom:647.138000pt;}
.y1ab{bottom:657.537467pt;}
.y1e{bottom:664.428680pt;}
.ybd{bottom:664.429173pt;}
.y159{bottom:664.429187pt;}
.y96{bottom:664.442667pt;}
.y73{bottom:664.445867pt;}
.y131{bottom:664.455733pt;}
.y50{bottom:664.461467pt;}
.ye0{bottom:664.466133pt;}
.y1a0{bottom:664.466667pt;}
.y1aa{bottom:670.337467pt;}
.y1d{bottom:681.756813pt;}
.ybc{bottom:681.757307pt;}
.y158{bottom:681.757320pt;}
.y95{bottom:681.770800pt;}
.y72{bottom:681.773467pt;}
.y130{bottom:681.783867pt;}
.y4f{bottom:681.789600pt;}
.y182{bottom:681.793733pt;}
.ydf{bottom:681.794267pt;}
.y1a9{bottom:683.137467pt;}
.y1c{bottom:699.084947pt;}
.y94{bottom:699.098933pt;}
.y71{bottom:699.101600pt;}
.y12f{bottom:699.112000pt;}
.y157{bottom:699.112533pt;}
.y4e{bottom:699.117733pt;}
.y181{bottom:699.121867pt;}
.yde{bottom:699.122400pt;}
.ybb{bottom:699.122933pt;}
.y1a8{bottom:708.737467pt;}
.y93{bottom:716.426533pt;}
.y70{bottom:716.429733pt;}
.y12e{bottom:716.440133pt;}
.y1b{bottom:716.445333pt;}
.y4d{bottom:716.445867pt;}
.y180{bottom:716.450000pt;}
.ydd{bottom:716.450533pt;}
.yba{bottom:716.451067pt;}
.y1a7{bottom:721.537467pt;}
.y6f{bottom:733.757333pt;}
.y12d{bottom:733.768267pt;}
.y1a{bottom:733.773467pt;}
.y17f{bottom:733.778133pt;}
.ydc{bottom:733.778667pt;}
.yb9{bottom:733.779200pt;}
.y1a6{bottom:747.137467pt;}
.y92{bottom:751.094800pt;}
.y6e{bottom:751.096400pt;}
.y19{bottom:751.101600pt;}
.y17e{bottom:751.106267pt;}
.yb8{bottom:751.106800pt;}
.y1a5{bottom:759.937467pt;}
.y4{bottom:768.418800pt;}
.y6d{bottom:768.424000pt;}
.y18{bottom:768.429733pt;}
.y17d{bottom:768.434400pt;}
.yb7{bottom:768.434933pt;}
.y1a4{bottom:772.737467pt;}
.y1c9{bottom:785.537467pt;}
.y17{bottom:785.757333pt;}
.y17c{bottom:785.762533pt;}
.y6c{bottom:785.763067pt;}
.y1a3{bottom:798.337467pt;}
.y3{bottom:803.090667pt;}
.y1a2{bottom:811.137467pt;}
.y2{bottom:820.418800pt;}
.y1a1{bottom:823.937467pt;}
.h2{height:23.776000pt;}
.h5{height:27.738667pt;}
.h8{height:34.272000pt;}
.h7{height:34.645333pt;}
.h4{height:34.896000pt;}
.h3{height:35.664000pt;}
.h9{height:39.594667pt;}
.h6{height:44.544000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:56.689200pt;}
.x2{left:75.589333pt;}
.x5{left:105.826667pt;}
.x4{left:124.724533pt;}
.x6{left:146.191333pt;}
.xc{left:271.528053pt;}
.xd{left:309.920400pt;}
.x7{left:325.039067pt;}
.xe{left:328.816573pt;}
.x9{left:330.698280pt;}
.x8{left:343.938533pt;}
.xa{left:347.121467pt;}
.xb{left:385.512747pt;}
.x1{left:504.610667pt;}
}




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