
    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_91e66cf35cab5a794908803c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_97c6bc60f1c32fff1e5e4415.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3b8c42d6fbb4fad604d385aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_6dcebab9b94814e4a90ebdfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984863;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_e6076c6732218d478ce27422.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_21173136e1e4039c0fe8679e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.707031;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_51cb6ca92120423e234040e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_463272f3c39f98abbd4e4b04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983887;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_a9fbcd206b266431cbed773a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983887;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_109cf832661986cb87003601.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ab1865cf8fba03c78f127ed7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.v3{vertical-align:-21.600600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.239400px;}
.v2{vertical-align:35.100000px;}
.ls5{letter-spacing:-1.776000px;}
.ls13{letter-spacing:-0.021600px;}
.ls15{letter-spacing:-0.010800px;}
.ls12{letter-spacing:-0.007160px;}
.ls6{letter-spacing:-0.005400px;}
.ls11{letter-spacing:-0.003580px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002088px;}
.ls17{letter-spacing:0.005088px;}
.ls10{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.008088px;}
.ls14{letter-spacing:0.010800px;}
.ls19{letter-spacing:0.016200px;}
.ls18{letter-spacing:0.016800px;}
.lsd{letter-spacing:0.171850px;}
.lsf{letter-spacing:0.175430px;}
.lsc{letter-spacing:0.179010px;}
.ls9{letter-spacing:0.182088px;}
.lsb{letter-spacing:0.188088px;}
.lsa{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.225000px;}
.ls1a{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.259200px;}
.lse{letter-spacing:0.264600px;}
.ls8{letter-spacing:0.270000px;}
.ls0{letter-spacing:1.425000px;}
.ls2{letter-spacing:3.696000px;}
.ls3{letter-spacing:24.492000px;}
.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;}
}
.ws87{word-spacing:-44.982000px;}
.ws0{word-spacing:-16.245000px;}
.ws1d{word-spacing:-15.282000px;}
.ws20{word-spacing:-15.276600px;}
.ws88{word-spacing:-15.017400px;}
.ws5{word-spacing:-15.012000px;}
.ws86{word-spacing:-15.006600px;}
.ws4{word-spacing:-13.680000px;}
.ws1b{word-spacing:-12.480000px;}
.ws1{word-spacing:-12.411360px;}
.ws3{word-spacing:-11.520000px;}
.ws142{word-spacing:-11.025000px;}
.ws141{word-spacing:-10.800000px;}
.ws1e{word-spacing:-10.131966px;}
.ws21{word-spacing:-10.128386px;}
.ws1f{word-spacing:-10.124806px;}
.ws1c{word-spacing:-9.949376px;}
.ws22{word-spacing:-9.945796px;}
.ws120{word-spacing:-8.245800px;}
.ws2{word-spacing:-7.637760px;}
.ws8c{word-spacing:-4.822200px;}
.ws91{word-spacing:-4.665600px;}
.ws33{word-spacing:-4.573800px;}
.ws149{word-spacing:-4.428000px;}
.ws14a{word-spacing:-4.422600px;}
.ws18{word-spacing:-4.290000px;}
.ws39{word-spacing:-3.979800px;}
.ws23{word-spacing:-3.553200px;}
.wsc5{word-spacing:-3.288600px;}
.wsc4{word-spacing:-3.229200px;}
.ws5f{word-spacing:-3.218400px;}
.ws66{word-spacing:-3.135000px;}
.ws7c{word-spacing:-3.067200px;}
.ws2f{word-spacing:-2.948400px;}
.wsac{word-spacing:-2.748600px;}
.ws75{word-spacing:-2.700000px;}
.ws8b{word-spacing:-2.678400px;}
.ws19{word-spacing:-2.640000px;}
.wsbc{word-spacing:-2.608200px;}
.ws114{word-spacing:-2.494800px;}
.ws162{word-spacing:-2.475000px;}
.ws14{word-spacing:-2.376000px;}
.ws9c{word-spacing:-2.311200px;}
.ws99{word-spacing:-2.257200px;}
.wsda{word-spacing:-2.214000px;}
.wsa{word-spacing:-2.208600px;}
.wsce{word-spacing:-2.203200px;}
.ws28{word-spacing:-2.149200px;}
.wsd{word-spacing:-2.095200px;}
.ws78{word-spacing:-2.089800px;}
.ws112{word-spacing:-2.062800px;}
.ws102{word-spacing:-2.041200px;}
.wsea{word-spacing:-2.035800px;}
.ws161{word-spacing:-2.029500px;}
.ws14f{word-spacing:-1.987200px;}
.ws8e{word-spacing:-1.960200px;}
.ws11d{word-spacing:-1.825200px;}
.ws98{word-spacing:-1.684800px;}
.ws15{word-spacing:-1.668600px;}
.ws13a{word-spacing:-1.555200px;}
.ws14c{word-spacing:-1.528200px;}
.ws3b{word-spacing:-1.495800px;}
.ws11e{word-spacing:-1.463400px;}
.wsc9{word-spacing:-1.404000px;}
.ws146{word-spacing:-1.360800px;}
.ws90{word-spacing:-1.080000px;}
.ws123{word-spacing:-0.993600px;}
.ws51{word-spacing:-0.853200px;}
.wsf3{word-spacing:-0.815400px;}
.ws15d{word-spacing:-0.810000px;}
.ws42{word-spacing:-0.691200px;}
.ws11f{word-spacing:-0.583200px;}
.ws52{word-spacing:-0.565672px;}
.wsad{word-spacing:-0.502200px;}
.ws116{word-spacing:-0.459000px;}
.ws118{word-spacing:-0.453600px;}
.ws43{word-spacing:-0.451105px;}
.ws117{word-spacing:-0.410400px;}
.ws124{word-spacing:-0.372600px;}
.ws72{word-spacing:-0.361800px;}
.ws15c{word-spacing:-0.288000px;}
.wscc{word-spacing:-0.275400px;}
.wsc7{word-spacing:-0.237600px;}
.ws6b{word-spacing:-0.210600px;}
.ws92{word-spacing:-0.091800px;}
.ws139{word-spacing:-0.048600px;}
.ws160{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.ws15f{word-spacing:0.004500px;}
.ws15b{word-spacing:0.004800px;}
.ws7d{word-spacing:0.005400px;}
.ws15e{word-spacing:0.009000px;}
.ws17{word-spacing:0.010800px;}
.wsde{word-spacing:0.014321px;}
.ws6f{word-spacing:0.016200px;}
.ws134{word-spacing:0.032400px;}
.ws155{word-spacing:0.081000px;}
.wsc8{word-spacing:0.113400px;}
.ws100{word-spacing:0.210600px;}
.ws156{word-spacing:0.280800px;}
.ws9e{word-spacing:0.334800px;}
.wsf9{word-spacing:0.336539px;}
.wsbd{word-spacing:0.388800px;}
.wsbe{word-spacing:0.399600px;}
.ws73{word-spacing:0.442800px;}
.ws26{word-spacing:0.459000px;}
.wsf8{word-spacing:0.496800px;}
.wsfa{word-spacing:0.507600px;}
.ws60{word-spacing:0.523800px;}
.ws9{word-spacing:0.540000px;}
.ws12c{word-spacing:0.577800px;}
.wsc{word-spacing:0.712800px;}
.ws24{word-spacing:0.756000px;}
.wsd0{word-spacing:0.842400px;}
.wse9{word-spacing:0.923400px;}
.ws6c{word-spacing:1.074600px;}
.ws6d{word-spacing:1.112400px;}
.ws5c{word-spacing:1.198800px;}
.ws4f{word-spacing:1.204200px;}
.ws8d{word-spacing:1.252800px;}
.wsfe{word-spacing:1.335415px;}
.ws121{word-spacing:1.382400px;}
.wsc0{word-spacing:1.404000px;}
.ws10b{word-spacing:1.431000px;}
.ws10a{word-spacing:1.436400px;}
.ws3e{word-spacing:1.441800px;}
.ws14b{word-spacing:1.576800px;}
.ws70{word-spacing:1.674000px;}
.ws13b{word-spacing:1.684800px;}
.ws2d{word-spacing:1.706400px;}
.ws5a{word-spacing:1.765800px;}
.ws2b{word-spacing:1.787400px;}
.ws13f{word-spacing:1.998000px;}
.wsff{word-spacing:2.003400px;}
.ws13e{word-spacing:2.008800px;}
.wsfd{word-spacing:2.014200px;}
.ws32{word-spacing:2.062800px;}
.wsbb{word-spacing:2.106000px;}
.wse6{word-spacing:2.111400px;}
.ws93{word-spacing:2.116800px;}
.ws5b{word-spacing:2.170800px;}
.wse{word-spacing:2.311200px;}
.ws40{word-spacing:2.343600px;}
.wsd8{word-spacing:2.381400px;}
.ws9b{word-spacing:2.532600px;}
.ws11b{word-spacing:2.608200px;}
.wsee{word-spacing:2.705400px;}
.ws95{word-spacing:2.748600px;}
.ws96{word-spacing:2.759400px;}
.ws154{word-spacing:2.813400px;}
.ws59{word-spacing:2.829600px;}
.ws150{word-spacing:2.840400px;}
.ws108{word-spacing:2.910703px;}
.wsb1{word-spacing:2.980800px;}
.wsdb{word-spacing:3.034800px;}
.wsd1{word-spacing:3.061800px;}
.wsbf{word-spacing:3.169800px;}
.wsb5{word-spacing:3.412800px;}
.ws4d{word-spacing:3.418200px;}
.ws14d{word-spacing:3.456000px;}
.ws14e{word-spacing:3.466800px;}
.ws29{word-spacing:3.547800px;}
.ws2a{word-spacing:3.574800px;}
.wsd9{word-spacing:3.601800px;}
.ws4e{word-spacing:3.623400px;}
.ws16{word-spacing:3.628800px;}
.ws41{word-spacing:3.639600px;}
.ws77{word-spacing:3.731400px;}
.ws97{word-spacing:3.753000px;}
.ws135{word-spacing:3.790800px;}
.ws143{word-spacing:3.834000px;}
.ws61{word-spacing:3.985200px;}
.ws12b{word-spacing:3.990600px;}
.wscd{word-spacing:3.996000px;}
.ws115{word-spacing:4.044600px;}
.wsab{word-spacing:4.125600px;}
.wse8{word-spacing:4.244400px;}
.ws37{word-spacing:4.249800px;}
.ws13{word-spacing:4.287600px;}
.ws8f{word-spacing:4.374000px;}
.wsf2{word-spacing:4.384800px;}
.ws109{word-spacing:4.390200px;}
.ws107{word-spacing:4.406400px;}
.ws34{word-spacing:4.438800px;}
.ws35{word-spacing:4.492800px;}
.ws89{word-spacing:4.568400px;}
.ws145{word-spacing:4.617000px;}
.ws74{word-spacing:4.698000px;}
.wsfc{word-spacing:4.765246px;}
.ws94{word-spacing:4.876200px;}
.ws62{word-spacing:4.978800px;}
.ws4c{word-spacing:5.054400px;}
.wsdc{word-spacing:5.124600px;}
.ws46{word-spacing:5.211000px;}
.ws47{word-spacing:5.216400px;}
.wsa8{word-spacing:5.275800px;}
.ws157{word-spacing:5.281200px;}
.ws153{word-spacing:5.394600px;}
.wseb{word-spacing:5.410800px;}
.ws7b{word-spacing:5.502600px;}
.ws10d{word-spacing:5.675400px;}
.ws44{word-spacing:5.697000px;}
.wsa3{word-spacing:6.058800px;}
.ws3a{word-spacing:6.112800px;}
.ws152{word-spacing:6.118200px;}
.wsa1{word-spacing:6.172265px;}
.ws136{word-spacing:6.264000px;}
.wsd4{word-spacing:6.480000px;}
.ws15a{word-spacing:6.528600px;}
.wsd6{word-spacing:6.604200px;}
.ws144{word-spacing:6.620400px;}
.wsb7{word-spacing:6.631200px;}
.ws9d{word-spacing:6.647400px;}
.wsaf{word-spacing:6.658200px;}
.wsca{word-spacing:6.706800px;}
.ws6e{word-spacing:6.750000px;}
.ws76{word-spacing:6.804000px;}
.ws4a{word-spacing:6.814800px;}
.ws151{word-spacing:6.987600px;}
.ws158{word-spacing:7.030800px;}
.wsa7{word-spacing:7.171200px;}
.wsfb{word-spacing:7.187400px;}
.ws45{word-spacing:7.300800px;}
.ws130{word-spacing:7.403400px;}
.ws36{word-spacing:7.473600px;}
.wsd7{word-spacing:7.576200px;}
.wsaa{word-spacing:7.781400px;}
.ws128{word-spacing:7.829897px;}
.ws13d{word-spacing:7.948800px;}
.ws11a{word-spacing:7.954200px;}
.ws12{word-spacing:7.992000px;}
.wse4{word-spacing:8.105573px;}
.wsa5{word-spacing:8.127000px;}
.ws113{word-spacing:8.137800px;}
.wsb6{word-spacing:8.229600px;}
.ws132{word-spacing:8.240400px;}
.ws7a{word-spacing:8.245800px;}
.ws133{word-spacing:8.256600px;}
.ws126{word-spacing:8.272800px;}
.ws68{word-spacing:8.310600px;}
.ws79{word-spacing:8.332200px;}
.ws49{word-spacing:8.337600px;}
.ws67{word-spacing:8.375400px;}
.ws69{word-spacing:8.380800px;}
.wse7{word-spacing:8.494200px;}
.ws48{word-spacing:8.575200px;}
.ws2c{word-spacing:8.613000px;}
.wsdd{word-spacing:8.623800px;}
.ws10f{word-spacing:8.645400px;}
.ws10c{word-spacing:8.650800px;}
.ws10e{word-spacing:8.661600px;}
.ws12e{word-spacing:8.704800px;}
.wsba{word-spacing:8.758800px;}
.ws5e{word-spacing:8.764200px;}
.ws131{word-spacing:8.883000px;}
.wse5{word-spacing:8.953200px;}
.ws3c{word-spacing:9.028800px;}
.ws5d{word-spacing:9.039600px;}
.ws3d{word-spacing:9.082800px;}
.ws4b{word-spacing:9.201600px;}
.wsa2{word-spacing:9.298800px;}
.wsa0{word-spacing:9.309600px;}
.ws63{word-spacing:9.374400px;}
.ws30{word-spacing:9.417600px;}
.ws9f{word-spacing:9.482400px;}
.ws148{word-spacing:9.487800px;}
.wsef{word-spacing:9.585000px;}
.ws31{word-spacing:9.622800px;}
.wscb{word-spacing:9.714600px;}
.wsed{word-spacing:9.774000px;}
.ws105{word-spacing:9.806168px;}
.ws71{word-spacing:10.103400px;}
.ws25{word-spacing:10.157400px;}
.wsf1{word-spacing:10.162800px;}
.ws111{word-spacing:10.216800px;}
.ws65{word-spacing:10.303200px;}
.wsb8{word-spacing:10.351800px;}
.wsa4{word-spacing:10.751400px;}
.ws38{word-spacing:10.875600px;}
.ws27{word-spacing:10.918800px;}
.wsb0{word-spacing:10.972800px;}
.wsd3{word-spacing:11.080800px;}
.ws53{word-spacing:11.140200px;}
.ws138{word-spacing:11.148743px;}
.ws64{word-spacing:11.199600px;}
.wsf0{word-spacing:11.215800px;}
.wsc2{word-spacing:11.242800px;}
.ws2e{word-spacing:11.307600px;}
.ws9a{word-spacing:11.345400px;}
.ws127{word-spacing:11.793600px;}
.ws129{word-spacing:11.799000px;}
.ws6a{word-spacing:12.096000px;}
.ws13c{word-spacing:12.117600px;}
.ws110{word-spacing:12.155400px;}
.wse3{word-spacing:12.214800px;}
.ws125{word-spacing:12.241800px;}
.ws147{word-spacing:12.490200px;}
.ws11c{word-spacing:12.700800px;}
.wsc1{word-spacing:12.706200px;}
.wsc6{word-spacing:12.754800px;}
.wscf{word-spacing:12.808800px;}
.ws122{word-spacing:12.862800px;}
.ws55{word-spacing:13.192200px;}
.wsa9{word-spacing:13.435200px;}
.ws10{word-spacing:13.500000px;}
.ws11{word-spacing:13.510800px;}
.ws57{word-spacing:13.635000px;}
.ws140{word-spacing:14.536800px;}
.ws12f{word-spacing:14.585400px;}
.ws106{word-spacing:14.774400px;}
.ws104{word-spacing:14.779800px;}
.ws159{word-spacing:14.947200px;}
.wsae{word-spacing:15.076800px;}
.wse0{word-spacing:15.130800px;}
.wsd2{word-spacing:15.136200px;}
.wsb9{word-spacing:15.282000px;}
.wsc3{word-spacing:15.292800px;}
.wse2{word-spacing:15.881400px;}
.wsf4{word-spacing:16.615800px;}
.ws137{word-spacing:16.804800px;}
.ws54{word-spacing:17.425800px;}
.ws56{word-spacing:17.695800px;}
.ws12d{word-spacing:17.760600px;}
.wsec{word-spacing:18.203400px;}
.wse1{word-spacing:18.473400px;}
.ws101{word-spacing:18.505800px;}
.ws12a{word-spacing:18.608400px;}
.ws103{word-spacing:19.148400px;}
.ws7e{word-spacing:19.288800px;}
.wsf6{word-spacing:19.308019px;}
.wsa6{word-spacing:19.791000px;}
.wsd5{word-spacing:20.098800px;}
.ws8a{word-spacing:20.152800px;}
.ws3f{word-spacing:20.703600px;}
.ws58{word-spacing:21.459600px;}
.wsb{word-spacing:21.886200px;}
.wsb4{word-spacing:22.593600px;}
.ws8{word-spacing:24.256800px;}
.ws50{word-spacing:25.158600px;}
.ws7{word-spacing:25.552800px;}
.ws119{word-spacing:25.704000px;}
.wsb3{word-spacing:28.225800px;}
.wsf{word-spacing:28.339200px;}
.wsdf{word-spacing:28.765800px;}
.wsf5{word-spacing:29.100600px;}
.wsf7{word-spacing:29.116800px;}
.wsb2{word-spacing:31.644000px;}
.ws7f{word-spacing:169.470000px;}
.ws80{word-spacing:191.070000px;}
.ws82{word-spacing:191.925000px;}
.ws83{word-spacing:202.680000px;}
.ws84{word-spacing:235.980000px;}
.ws81{word-spacing:245.205000px;}
.ws85{word-spacing:249.345000px;}
.ws1a{word-spacing:1365.172800px;}
._c{margin-left:-2788.290000px;}
._b{margin-left:-1647.756000px;}
._a{margin-left:-59.040000px;}
._1b{margin-left:-23.490000px;}
._19{margin-left:-21.019200px;}
._1a{margin-left:-19.494000px;}
._15{margin-left:-16.009200px;}
._14{margin-left:-14.445900px;}
._e{margin-left:-13.030200px;}
._17{margin-left:-11.716200px;}
._18{margin-left:-9.693000px;}
._16{margin-left:-8.262000px;}
._5{margin-left:-6.549300px;}
._4{margin-left:-5.209800px;}
._3{margin-left:-4.001400px;}
._6{margin-left:-2.811000px;}
._0{margin-left:-1.780800px;}
._1{width:1.785600px;}
._9{width:3.281400px;}
._8{width:4.286160px;}
._33{width:11.044800px;}
._7{width:14.332200px;}
._34{width:21.600000px;}
._31{width:31.725000px;}
._25{width:34.200000px;}
._d{width:39.420000px;}
._10{width:73.464300px;}
._f{width:193.296000px;}
._2e{width:329.364000px;}
._20{width:335.970000px;}
._32{width:352.422300px;}
._21{width:356.350500px;}
._30{width:357.570000px;}
._24{width:372.559500px;}
._2b{width:379.170000px;}
._27{width:399.550500px;}
._23{width:400.770000px;}
._12{width:406.800000px;}
._29{width:421.150500px;}
._13{width:428.400000px;}
._11{width:450.000000px;}
._1e{width:474.925500px;}
._1d{width:492.750000px;}
._22{width:585.042300px;}
._2d{width:618.901200px;}
._2c{width:631.276200px;}
._2a{width:642.980700px;}
._28{width:653.735700px;}
._1f{width:663.195300px;}
._2{width:665.283000px;}
._2f{width:694.640700px;}
._26{width:698.780700px;}
._1c{width:727.315500px;}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(22,22,22);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(22,22,22);}
.fs8{font-size:31.824000px;}
.fs3{font-size:35.802000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.714000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:78.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:96.701700px;}
.y94{bottom:96.731700px;}
.y95{bottom:123.119700px;}
.y190{bottom:123.137700px;}
.y2f{bottom:123.155850px;}
.y15f{bottom:123.161850px;}
.y36{bottom:123.163500px;}
.y126{bottom:123.165150px;}
.y1ea{bottom:123.321975px;}
.y40{bottom:128.369850px;}
.y1e9{bottom:136.924725px;}
.y234{bottom:136.946850px;}
.y2e{bottom:139.652850px;}
.y18f{bottom:139.656000px;}
.y15e{bottom:139.658850px;}
.y35{bottom:139.660500px;}
.y125{bottom:139.662150px;}
.y3f{bottom:141.869850px;}
.y1e8{bottom:150.524850px;}
.y233{bottom:150.569475px;}
.y3e{bottom:155.369850px;}
.y2d{bottom:156.149850px;}
.y18e{bottom:156.153000px;}
.y15d{bottom:156.155850px;}
.y34{bottom:156.157500px;}
.y124{bottom:156.159150px;}
.y1e7{bottom:164.129850px;}
.y232{bottom:164.194875px;}
.y3d{bottom:168.869850px;}
.y18d{bottom:172.650000px;}
.y15c{bottom:172.652850px;}
.y33{bottom:172.654500px;}
.y123{bottom:172.656150px;}
.y2c{bottom:172.662000px;}
.y231{bottom:177.817500px;}
.y18c{bottom:189.147000px;}
.y15b{bottom:189.149850px;}
.y32{bottom:189.151500px;}
.y122{bottom:189.153150px;}
.y2b{bottom:189.159000px;}
.y230{bottom:191.442375px;}
.y22f{bottom:205.064850px;}
.y18b{bottom:205.644000px;}
.y31{bottom:205.648500px;}
.y121{bottom:205.650150px;}
.y2a{bottom:205.656000px;}
.y15a{bottom:205.692450px;}
.y1e6{bottom:210.189750px;}
.y22e{bottom:218.689725px;}
.y18a{bottom:222.141000px;}
.y120{bottom:222.147150px;}
.y30{bottom:222.151350px;}
.y29{bottom:222.153000px;}
.y159{bottom:222.189450px;}
.y1e5{bottom:223.797750px;}
.y22d{bottom:232.312125px;}
.y1e4{bottom:237.405750px;}
.y189{bottom:238.638000px;}
.y11f{bottom:238.644150px;}
.y28{bottom:238.650000px;}
.y158{bottom:238.686450px;}
.y22c{bottom:245.937000px;}
.y11e{bottom:255.141150px;}
.y188{bottom:255.144150px;}
.y27{bottom:255.147000px;}
.y1ae{bottom:255.147150px;}
.y157{bottom:255.183450px;}
.y1e3{bottom:257.013750px;}
.y22b{bottom:259.559625px;}
.y92{bottom:261.868650px;}
.y1e2{bottom:270.621750px;}
.y26{bottom:271.594950px;}
.y11d{bottom:271.638150px;}
.y187{bottom:271.641150px;}
.y1ad{bottom:271.644150px;}
.y156{bottom:271.680450px;}
.y22a{bottom:273.184875px;}
.y91{bottom:278.370150px;}
.y1e1{bottom:284.229750px;}
.y229{bottom:286.807650px;}
.y11c{bottom:288.135150px;}
.y186{bottom:288.138150px;}
.y1ac{bottom:288.141150px;}
.y155{bottom:288.177450px;}
.y90{bottom:294.871650px;}
.y1e0{bottom:297.837750px;}
.y228{bottom:300.432525px;}
.y11b{bottom:304.635150px;}
.y185{bottom:304.638150px;}
.y154{bottom:304.674450px;}
.y8f{bottom:311.373150px;}
.y1df{bottom:311.445750px;}
.y227{bottom:314.054775px;}
.y6c{bottom:314.345100px;}
.y184{bottom:321.138150px;}
.y1ab{bottom:321.169800px;}
.y153{bottom:321.171450px;}
.y1de{bottom:325.053750px;}
.y226{bottom:327.679800px;}
.y6b{bottom:327.845100px;}
.y8e{bottom:327.874650px;}
.y25{bottom:328.352700px;}
.y183{bottom:337.650300px;}
.y1aa{bottom:337.666800px;}
.y152{bottom:337.668450px;}
.y11a{bottom:339.888150px;}
.y225{bottom:341.302425px;}
.y6a{bottom:341.345100px;}
.y8d{bottom:344.376150px;}
.y1dd{bottom:344.661750px;}
.y24{bottom:344.854200px;}
.y182{bottom:354.147300px;}
.y1a9{bottom:354.162450px;}
.y151{bottom:354.165450px;}
.y69{bottom:354.845100px;}
.y224{bottom:354.927300px;}
.y119{bottom:356.394300px;}
.y8c{bottom:360.877650px;}
.y1dc{bottom:364.269750px;}
.y68{bottom:368.345100px;}
.y223{bottom:368.550300px;}
.y181{bottom:370.644300px;}
.y1a8{bottom:370.660800px;}
.y150{bottom:370.662450px;}
.y118{bottom:372.891300px;}
.y8b{bottom:377.369550px;}
.y23{bottom:380.108700px;}
.y222{bottom:382.175175px;}
.y1db{bottom:383.877750px;}
.y180{bottom:387.141300px;}
.y1a7{bottom:387.157800px;}
.y14f{bottom:387.159450px;}
.y117{bottom:389.388300px;}
.y8a{bottom:394.626300px;}
.y67{bottom:395.345100px;}
.y221{bottom:395.797425px;}
.y22{bottom:396.610200px;}
.y1da{bottom:403.485750px;}
.y17f{bottom:403.638300px;}
.y1a6{bottom:403.654800px;}
.yc3{bottom:403.656450px;}
.yee{bottom:403.837950px;}
.y116{bottom:405.900450px;}
.y66{bottom:408.845100px;}
.y220{bottom:409.422450px;}
.y21{bottom:413.111700px;}
.y17e{bottom:420.138450px;}
.y1a5{bottom:420.151800px;}
.yc2{bottom:420.153450px;}
.yed{bottom:420.402450px;}
.y89{bottom:420.874800px;}
.y65{bottom:422.345100px;}
.y115{bottom:422.397450px;}
.y21f{bottom:423.045075px;}
.y1d9{bottom:423.093750px;}
.y20{bottom:429.613200px;}
.y93{bottom:433.540800px;}
.y64{bottom:435.845100px;}
.y17d{bottom:436.639800px;}
.y1a4{bottom:436.647450px;}
.y14e{bottom:436.650450px;}
.yc1{bottom:436.665450px;}
.y21e{bottom:436.669950px;}
.y1d8{bottom:436.701750px;}
.yec{bottom:436.966950px;}
.y88{bottom:437.376300px;}
.y114{bottom:438.894450px;}
.y1f{bottom:446.114700px;}
.y63{bottom:449.345100px;}
.y21d{bottom:450.292575px;}
.y1d7{bottom:450.309750px;}
.y17c{bottom:453.139800px;}
.y1a3{bottom:453.145800px;}
.y14d{bottom:453.150450px;}
.yc0{bottom:453.162450px;}
.yeb{bottom:453.531450px;}
.y87{bottom:453.877800px;}
.y113{bottom:455.391450px;}
.y1e{bottom:462.616200px;}
.y62{bottom:462.845100px;}
.y21c{bottom:463.917450px;}
.y1d6{bottom:463.917750px;}
.y1a2{bottom:469.641450px;}
.ybf{bottom:469.659450px;}
.y17b{bottom:469.688250px;}
.yea{bottom:470.096250px;}
.y86{bottom:470.373450px;}
.y112{bottom:471.888450px;}
.y61{bottom:476.345100px;}
.y1d5{bottom:477.525750px;}
.y21b{bottom:477.540075px;}
.y1d{bottom:479.117700px;}
.y1a1{bottom:486.139800px;}
.ybe{bottom:486.156450px;}
.y17a{bottom:486.186600px;}
.ye9{bottom:486.660750px;}
.y85{bottom:486.874950px;}
.y111{bottom:488.433900px;}
.y60{bottom:489.845100px;}
.y1d4{bottom:491.133750px;}
.y21a{bottom:491.164950px;}
.y14c{bottom:494.502900px;}
.y1c{bottom:495.619200px;}
.y1a0{bottom:502.641600px;}
.ybd{bottom:502.653450px;}
.y179{bottom:502.682250px;}
.ye8{bottom:503.225250px;}
.y84{bottom:503.376450px;}
.y219{bottom:504.787575px;}
.y110{bottom:504.930900px;}
.y1d3{bottom:510.741750px;}
.y14b{bottom:510.999900px;}
.y1b{bottom:512.120700px;}
.y218{bottom:518.412975px;}
.y19f{bottom:519.138600px;}
.ybc{bottom:519.165750px;}
.y178{bottom:519.179250px;}
.ye7{bottom:519.789750px;}
.y83{bottom:519.877950px;}
.y5f{bottom:521.345100px;}
.y10f{bottom:521.427900px;}
.y1d2{bottom:524.349750px;}
.y14a{bottom:527.496900px;}
.y1a{bottom:528.622200px;}
.y217{bottom:532.035600px;}
.ybb{bottom:535.662750px;}
.y19e{bottom:535.672050px;}
.y177{bottom:535.677600px;}
.ye6{bottom:536.354250px;}
.y82{bottom:536.372100px;}
.y10e{bottom:537.924900px;}
.y1d1{bottom:537.957750px;}
.y5e{bottom:540.245100px;}
.y149{bottom:543.993900px;}
.y19{bottom:545.123700px;}
.y216{bottom:545.660475px;}
.y5d{bottom:548.345100px;}
.y1d0{bottom:551.565750px;}
.yba{bottom:552.159750px;}
.y19d{bottom:552.169050px;}
.y176{bottom:552.174600px;}
.y81{bottom:552.873600px;}
.ye5{bottom:552.918750px;}
.y10d{bottom:554.421900px;}
.y215{bottom:559.282875px;}
.y148{bottom:560.490900px;}
.y18{bottom:561.625200px;}
.y5c{bottom:561.845100px;}
.y1cf{bottom:565.173750px;}
.yb9{bottom:568.656750px;}
.y19c{bottom:568.666050px;}
.y175{bottom:568.671600px;}
.y80{bottom:569.375100px;}
.ye4{bottom:569.483250px;}
.y10c{bottom:570.918900px;}
.y214{bottom:572.907750px;}
.y147{bottom:576.987900px;}
.y17{bottom:578.126700px;}
.y5b{bottom:580.745250px;}
.y1ce{bottom:584.781750px;}
.yb8{bottom:585.153750px;}
.y19b{bottom:585.163050px;}
.y174{bottom:585.168600px;}
.y7f{bottom:585.876600px;}
.ye3{bottom:586.047750px;}
.y213{bottom:586.530375px;}
.y10b{bottom:587.415900px;}
.y5a{bottom:588.845250px;}
.y146{bottom:593.484900px;}
.y16{bottom:594.628200px;}
.y1cd{bottom:598.389750px;}
.y212{bottom:600.155250px;}
.yb7{bottom:601.659750px;}
.y19a{bottom:601.660050px;}
.y173{bottom:601.665600px;}
.y59{bottom:602.345250px;}
.y7e{bottom:602.378100px;}
.ye2{bottom:602.612250px;}
.y10a{bottom:603.912900px;}
.y145{bottom:609.981900px;}
.y15{bottom:611.129700px;}
.y1cc{bottom:611.997750px;}
.y211{bottom:613.777875px;}
.y58{bottom:615.845250px;}
.y199{bottom:618.155700px;}
.yb6{bottom:618.156750px;}
.y172{bottom:618.162600px;}
.ye1{bottom:619.176750px;}
.y7d{bottom:620.372400px;}
.y109{bottom:620.409900px;}
.y144{bottom:626.478900px;}
.y210{bottom:627.402750px;}
.y14{bottom:627.631200px;}
.y198{bottom:634.652700px;}
.yb5{bottom:634.653750px;}
.y171{bottom:634.659600px;}
.y57{bottom:634.745250px;}
.ye0{bottom:635.741250px;}
.y108{bottom:636.906900px;}
.y20f{bottom:641.025375px;}
.y56{bottom:642.845400px;}
.y143{bottom:642.975900px;}
.y1cb{bottom:643.605750px;}
.y13{bottom:644.132700px;}
.y7c{bottom:646.620900px;}
.y197{bottom:651.149700px;}
.y170{bottom:651.156600px;}
.yb4{bottom:651.156900px;}
.ydf{bottom:652.296900px;}
.y107{bottom:653.403900px;}
.y20e{bottom:654.650250px;}
.y55{bottom:656.345400px;}
.y142{bottom:659.472900px;}
.y12{bottom:660.634200px;}
.y7b{bottom:663.122400px;}
.y1ca{bottom:664.711200px;}
.y196{bottom:667.648050px;}
.y16f{bottom:667.653600px;}
.yb3{bottom:667.653900px;}
.y20d{bottom:668.272875px;}
.yde{bottom:668.861400px;}
.y54{bottom:669.845400px;}
.y106{bottom:669.900900px;}
.y141{bottom:675.969900px;}
.y11{bottom:677.135700px;}
.y7a{bottom:679.623900px;}
.y1c9{bottom:681.316200px;}
.y20c{bottom:681.898275px;}
.y195{bottom:684.145050px;}
.y16e{bottom:684.150600px;}
.yb2{bottom:684.159900px;}
.ydd{bottom:685.412400px;}
.y105{bottom:686.397900px;}
.y53{bottom:688.745250px;}
.y140{bottom:692.466900px;}
.y10{bottom:693.637200px;}
.y20b{bottom:695.520900px;}
.y79{bottom:696.125400px;}
.y52{bottom:696.845400px;}
.y1c8{bottom:697.921200px;}
.y194{bottom:700.640700px;}
.y16d{bottom:700.646250px;}
.yb1{bottom:700.656900px;}
.ydc{bottom:701.976900px;}
.y104{bottom:702.894900px;}
.y13f{bottom:708.963900px;}
.y20a{bottom:709.145775px;}
.yf{bottom:710.138700px;}
.y51{bottom:710.345400px;}
.y78{bottom:712.626900px;}
.y1c7{bottom:714.526200px;}
.y193{bottom:717.137700px;}
.y16c{bottom:717.141900px;}
.yb0{bottom:717.153900px;}
.ydb{bottom:718.541400px;}
.y103{bottom:719.391900px;}
.y209{bottom:722.768400px;}
.y50{bottom:723.845400px;}
.y13e{bottom:725.460900px;}
.ye{bottom:726.640200px;}
.y77{bottom:729.128400px;}
.y1c6{bottom:731.131200px;}
.y192{bottom:733.634700px;}
.y16b{bottom:733.638900px;}
.yaf{bottom:733.672200px;}
.yda{bottom:735.097050px;}
.y102{bottom:735.888900px;}
.y208{bottom:736.393275px;}
.y13d{bottom:741.958200px;}
.y4f{bottom:742.745400px;}
.yd{bottom:743.141700px;}
.y76{bottom:745.624050px;}
.y1c5{bottom:747.736200px;}
.y207{bottom:750.015675px;}
.y191{bottom:750.131700px;}
.y16a{bottom:750.135900px;}
.yae{bottom:750.169200px;}
.y4e{bottom:750.845550px;}
.yd9{bottom:751.661550px;}
.y101{bottom:752.385900px;}
.y13c{bottom:758.455200px;}
.yc{bottom:759.643200px;}
.y75{bottom:762.125550px;}
.y206{bottom:763.640550px;}
.y1c4{bottom:764.341200px;}
.y4d{bottom:764.345550px;}
.yad{bottom:766.666200px;}
.yd8{bottom:768.226050px;}
.y100{bottom:768.885900px;}
.y13b{bottom:774.952200px;}
.yb{bottom:776.144700px;}
.y205{bottom:777.263175px;}
.y4c{bottom:777.845550px;}
.y74{bottom:778.627050px;}
.y1c3{bottom:780.946200px;}
.yac{bottom:783.163200px;}
.yd7{bottom:784.782300px;}
.y169{bottom:788.150550px;}
.y204{bottom:790.888200px;}
.y13a{bottom:791.449200px;}
.ya{bottom:792.646200px;}
.y73{bottom:795.128550px;}
.y4b{bottom:796.745550px;}
.y1c2{bottom:797.551200px;}
.yab{bottom:799.660200px;}
.yd6{bottom:802.096050px;}
.y168{bottom:802.405425px;}
.yff{bottom:804.155550px;}
.y203{bottom:804.510825px;}
.y4a{bottom:804.845550px;}
.y139{bottom:807.946200px;}
.y9{bottom:809.147700px;}
.y72{bottom:811.624200px;}
.y1c1{bottom:814.156200px;}
.yaa{bottom:816.157200px;}
.y167{bottom:816.658050px;}
.y202{bottom:818.135700px;}
.yfe{bottom:820.652550px;}
.y49{bottom:823.745700px;}
.y138{bottom:824.443200px;}
.y8{bottom:825.649200px;}
.y71{bottom:828.125700px;}
.y1c0{bottom:830.761200px;}
.y201{bottom:831.758700px;}
.y48{bottom:831.845700px;}
.ya9{bottom:832.654200px;}
.y166{bottom:837.093525px;}
.yfd{bottom:837.148200px;}
.y137{bottom:840.940650px;}
.y7{bottom:842.150700px;}
.y70{bottom:844.627200px;}
.y47{bottom:845.345700px;}
.y200{bottom:845.383575px;}
.y1bf{bottom:847.366200px;}
.yd5{bottom:848.117700px;}
.ya8{bottom:849.184500px;}
.yfc{bottom:853.645200px;}
.y165{bottom:854.531025px;}
.y136{bottom:857.437650px;}
.y6{bottom:858.652200px;}
.y46{bottom:858.845700px;}
.y1ff{bottom:859.005825px;}
.y6f{bottom:861.128700px;}
.y1be{bottom:863.971200px;}
.yd4{bottom:864.682200px;}
.ya7{bottom:865.681500px;}
.yfb{bottom:870.142200px;}
.y164{bottom:871.968525px;}
.y1fe{bottom:872.630700px;}
.y135{bottom:873.934650px;}
.y5{bottom:875.153700px;}
.y45{bottom:877.745700px;}
.y6e{bottom:879.128700px;}
.y1bd{bottom:880.576200px;}
.yd3{bottom:881.246700px;}
.ya6{bottom:882.178500px;}
.y44{bottom:885.845700px;}
.y1fd{bottom:886.253325px;}
.yfa{bottom:886.639200px;}
.y163{bottom:889.406025px;}
.y134{bottom:890.431650px;}
.y4{bottom:891.655200px;}
.y1bc{bottom:897.181350px;}
.yd2{bottom:897.775500px;}
.ya5{bottom:898.675500px;}
.y43{bottom:899.345700px;}
.y1fc{bottom:899.878725px;}
.yf9{bottom:903.136200px;}
.y162{bottom:906.843525px;}
.y133{bottom:906.928650px;}
.y3{bottom:908.156700px;}
.y42{bottom:912.845700px;}
.y1fb{bottom:913.501350px;}
.y1bb{bottom:913.786350px;}
.y6d{bottom:914.158200px;}
.yd1{bottom:914.340000px;}
.ya4{bottom:915.172500px;}
.y132{bottom:923.425650px;}
.y161{bottom:924.281025px;}
.y2{bottom:924.658200px;}
.y1fa{bottom:927.126225px;}
.y1ba{bottom:930.391350px;}
.yd0{bottom:930.904500px;}
.ya3{bottom:931.669500px;}
.y41{bottom:931.745850px;}
.y131{bottom:939.922650px;}
.y1f9{bottom:940.749000px;}
.y160{bottom:941.718525px;}
.y1b9{bottom:946.996350px;}
.ycf{bottom:947.469000px;}
.ya2{bottom:948.166500px;}
.y1f8{bottom:954.373875px;}
.y130{bottom:956.419650px;}
.yf8{bottom:959.156025px;}
.y1b8{bottom:963.601500px;}
.yce{bottom:964.033500px;}
.ya1{bottom:964.663500px;}
.y1f7{bottom:967.996500px;}
.y12f{bottom:972.916650px;}
.yf7{bottom:976.593525px;}
.y1b7{bottom:980.206500px;}
.ycd{bottom:980.598000px;}
.ya0{bottom:981.160500px;}
.y1f6{bottom:981.621375px;}
.y3c{bottom:983.905500px;}
.y12e{bottom:989.413650px;}
.yf6{bottom:994.031025px;}
.y1f5{bottom:995.244000px;}
.y1b6{bottom:996.811500px;}
.ycc{bottom:997.162500px;}
.y9f{bottom:997.657500px;}
.y12d{bottom:1005.910650px;}
.y3b{bottom:1006.408500px;}
.y1f4{bottom:1008.868875px;}
.yf5{bottom:1011.468525px;}
.y1b5{bottom:1013.416500px;}
.ycb{bottom:1013.727000px;}
.y9e{bottom:1014.154500px;}
.y12c{bottom:1022.407650px;}
.y1f3{bottom:1022.491275px;}
.y240{bottom:1023.471000px;}
.yf4{bottom:1028.906025px;}
.y1b4{bottom:1030.022100px;}
.yca{bottom:1030.272450px;}
.y9d{bottom:1030.670100px;}
.y1f2{bottom:1036.116150px;}
.y23c{bottom:1036.971150px;}
.y12b{bottom:1038.904650px;}
.y3a{bottom:1045.408800px;}
.yf3{bottom:1046.343525px;}
.y1b3{bottom:1046.627100px;}
.yc9{bottom:1046.836950px;}
.y9c{bottom:1047.167100px;}
.y1f1{bottom:1049.738775px;}
.y23b{bottom:1050.471150px;}
.y12a{bottom:1055.401650px;}
.y1b2{bottom:1063.232100px;}
.y1f0{bottom:1063.364625px;}
.yc8{bottom:1063.401450px;}
.y9b{bottom:1063.664100px;}
.yf2{bottom:1063.781025px;}
.y23a{bottom:1063.971150px;}
.y129{bottom:1071.901650px;}
.y1ef{bottom:1076.987250px;}
.y239{bottom:1077.471150px;}
.y1b1{bottom:1079.837100px;}
.yc7{bottom:1079.965950px;}
.y9a{bottom:1080.161100px;}
.y39{bottom:1081.408800px;}
.yf1{bottom:1084.221150px;}
.y1ee{bottom:1090.612125px;}
.y238{bottom:1090.971150px;}
.y1b0{bottom:1096.442100px;}
.yc6{bottom:1096.530450px;}
.y99{bottom:1096.658100px;}
.y1ed{bottom:1104.234750px;}
.y23f{bottom:1104.471000px;}
.y237{bottom:1104.471300px;}
.yf0{bottom:1105.037250px;}
.y1af{bottom:1113.047100px;}
.yc5{bottom:1113.094950px;}
.y98{bottom:1113.155100px;}
.y128{bottom:1113.187650px;}
.y38{bottom:1117.408800px;}
.y1ec{bottom:1117.856850px;}
.y23e{bottom:1117.971000px;}
.y236{bottom:1117.971300px;}
.yef{bottom:1121.534250px;}
.y97{bottom:1129.652100px;}
.yc4{bottom:1129.659450px;}
.y127{bottom:1129.684650px;}
.y23d{bottom:1131.471000px;}
.y235{bottom:1131.471300px;}
.y1eb{bottom:1131.480600px;}
.y37{bottom:1162.221450px;}
.y96{bottom:1162.221750px;}
.hc{height:27.145872px;}
.h1b{height:34.290000px;}
.hd{height:36.576000px;}
.h30{height:38.383500px;}
.h2c{height:38.385000px;}
.h31{height:38.385600px;}
.h2e{height:38.385900px;}
.h2f{height:38.386500px;}
.h2d{height:38.391600px;}
.he{height:39.313477px;}
.h2b{height:40.356000px;}
.h4{height:40.869141px;}
.hb{height:40.944000px;}
.h1{height:41.064000px;}
.hf{height:41.148000px;}
.h2{height:43.434000px;}
.h3{height:48.621000px;}
.h7{height:50.292000px;}
.h21{height:51.185040px;}
.h1c{height:51.202440px;}
.h1f{height:51.226440px;}
.h26{height:51.250440px;}
.h28{height:51.257640px;}
.h11{height:51.263040px;}
.h12{height:51.311040px;}
.h10{height:51.321840px;}
.h5{height:51.335640px;}
.h15{height:51.336240px;}
.h20{height:51.347640px;}
.h1d{height:51.359640px;}
.h13{height:51.360240px;}
.h14{height:51.371640px;}
.h27{height:51.372240px;}
.h6{height:51.372840px;}
.h22{height:51.378240px;}
.h23{height:51.378840px;}
.h24{height:51.383640px;}
.h1e{height:51.384240px;}
.h29{height:51.393840px;}
.h2a{height:51.395640px;}
.h1a{height:51.431640px;}
.h18{height:51.432240px;}
.h19{height:51.450240px;}
.h16{height:51.472440px;}
.h17{height:51.539040px;}
.h25{height:58.536000px;}
.h9{height:79.212042px;}
.ha{height:79.223442px;}
.h8{height:91.440000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x6{left:90.581400px;}
.x5{left:95.831400px;}
.xb{left:104.081400px;}
.xf{left:109.481400px;}
.x2{left:234.582450px;}
.x1{left:268.425450px;}
.xc{left:459.987750px;}
.xd{left:473.471700px;}
.x10{left:478.876125px;}
.x3{left:527.777250px;}
.x7{left:538.277550px;}
.x8{left:550.154550px;}
.x9{left:556.277550px;}
.x4{left:664.058850px;}
.xe{left:790.701000px;}
.xa{left:839.083650px;}
@media print{
.v3{vertical-align:-19.200533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.546133pt;}
.v2{vertical-align:31.200000pt;}
.ls5{letter-spacing:-1.578667pt;}
.ls13{letter-spacing:-0.019200pt;}
.ls15{letter-spacing:-0.009600pt;}
.ls12{letter-spacing:-0.006365pt;}
.ls6{letter-spacing:-0.004800pt;}
.ls11{letter-spacing:-0.003182pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001856pt;}
.ls17{letter-spacing:0.004523pt;}
.ls10{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.007189pt;}
.ls14{letter-spacing:0.009600pt;}
.ls19{letter-spacing:0.014400pt;}
.ls18{letter-spacing:0.014933pt;}
.lsd{letter-spacing:0.152755pt;}
.lsf{letter-spacing:0.155938pt;}
.lsc{letter-spacing:0.159120pt;}
.ls9{letter-spacing:0.161856pt;}
.lsb{letter-spacing:0.167189pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.200000pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.230400pt;}
.lse{letter-spacing:0.235200pt;}
.ls8{letter-spacing:0.240000pt;}
.ls0{letter-spacing:1.266667pt;}
.ls2{letter-spacing:3.285333pt;}
.ls3{letter-spacing:21.770667pt;}
.ws87{word-spacing:-39.984000pt;}
.ws0{word-spacing:-14.440000pt;}
.ws1d{word-spacing:-13.584000pt;}
.ws20{word-spacing:-13.579200pt;}
.ws88{word-spacing:-13.348800pt;}
.ws5{word-spacing:-13.344000pt;}
.ws86{word-spacing:-13.339200pt;}
.ws4{word-spacing:-12.160000pt;}
.ws1b{word-spacing:-11.093333pt;}
.ws1{word-spacing:-11.032320pt;}
.ws3{word-spacing:-10.240000pt;}
.ws142{word-spacing:-9.800000pt;}
.ws141{word-spacing:-9.600000pt;}
.ws1e{word-spacing:-9.006192pt;}
.ws21{word-spacing:-9.003010pt;}
.ws1f{word-spacing:-8.999827pt;}
.ws1c{word-spacing:-8.843890pt;}
.ws22{word-spacing:-8.840707pt;}
.ws120{word-spacing:-7.329600pt;}
.ws2{word-spacing:-6.789120pt;}
.ws8c{word-spacing:-4.286400pt;}
.ws91{word-spacing:-4.147200pt;}
.ws33{word-spacing:-4.065600pt;}
.ws149{word-spacing:-3.936000pt;}
.ws14a{word-spacing:-3.931200pt;}
.ws18{word-spacing:-3.813333pt;}
.ws39{word-spacing:-3.537600pt;}
.ws23{word-spacing:-3.158400pt;}
.wsc5{word-spacing:-2.923200pt;}
.wsc4{word-spacing:-2.870400pt;}
.ws5f{word-spacing:-2.860800pt;}
.ws66{word-spacing:-2.786667pt;}
.ws7c{word-spacing:-2.726400pt;}
.ws2f{word-spacing:-2.620800pt;}
.wsac{word-spacing:-2.443200pt;}
.ws75{word-spacing:-2.400000pt;}
.ws8b{word-spacing:-2.380800pt;}
.ws19{word-spacing:-2.346667pt;}
.wsbc{word-spacing:-2.318400pt;}
.ws114{word-spacing:-2.217600pt;}
.ws162{word-spacing:-2.200000pt;}
.ws14{word-spacing:-2.112000pt;}
.ws9c{word-spacing:-2.054400pt;}
.ws99{word-spacing:-2.006400pt;}
.wsda{word-spacing:-1.968000pt;}
.wsa{word-spacing:-1.963200pt;}
.wsce{word-spacing:-1.958400pt;}
.ws28{word-spacing:-1.910400pt;}
.wsd{word-spacing:-1.862400pt;}
.ws78{word-spacing:-1.857600pt;}
.ws112{word-spacing:-1.833600pt;}
.ws102{word-spacing:-1.814400pt;}
.wsea{word-spacing:-1.809600pt;}
.ws161{word-spacing:-1.804000pt;}
.ws14f{word-spacing:-1.766400pt;}
.ws8e{word-spacing:-1.742400pt;}
.ws11d{word-spacing:-1.622400pt;}
.ws98{word-spacing:-1.497600pt;}
.ws15{word-spacing:-1.483200pt;}
.ws13a{word-spacing:-1.382400pt;}
.ws14c{word-spacing:-1.358400pt;}
.ws3b{word-spacing:-1.329600pt;}
.ws11e{word-spacing:-1.300800pt;}
.wsc9{word-spacing:-1.248000pt;}
.ws146{word-spacing:-1.209600pt;}
.ws90{word-spacing:-0.960000pt;}
.ws123{word-spacing:-0.883200pt;}
.ws51{word-spacing:-0.758400pt;}
.wsf3{word-spacing:-0.724800pt;}
.ws15d{word-spacing:-0.720000pt;}
.ws42{word-spacing:-0.614400pt;}
.ws11f{word-spacing:-0.518400pt;}
.ws52{word-spacing:-0.502819pt;}
.wsad{word-spacing:-0.446400pt;}
.ws116{word-spacing:-0.408000pt;}
.ws118{word-spacing:-0.403200pt;}
.ws43{word-spacing:-0.400982pt;}
.ws117{word-spacing:-0.364800pt;}
.ws124{word-spacing:-0.331200pt;}
.ws72{word-spacing:-0.321600pt;}
.ws15c{word-spacing:-0.256000pt;}
.wscc{word-spacing:-0.244800pt;}
.wsc7{word-spacing:-0.211200pt;}
.ws6b{word-spacing:-0.187200pt;}
.ws92{word-spacing:-0.081600pt;}
.ws139{word-spacing:-0.043200pt;}
.ws160{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.ws15f{word-spacing:0.004000pt;}
.ws15b{word-spacing:0.004267pt;}
.ws7d{word-spacing:0.004800pt;}
.ws15e{word-spacing:0.008000pt;}
.ws17{word-spacing:0.009600pt;}
.wsde{word-spacing:0.012730pt;}
.ws6f{word-spacing:0.014400pt;}
.ws134{word-spacing:0.028800pt;}
.ws155{word-spacing:0.072000pt;}
.wsc8{word-spacing:0.100800pt;}
.ws100{word-spacing:0.187200pt;}
.ws156{word-spacing:0.249600pt;}
.ws9e{word-spacing:0.297600pt;}
.wsf9{word-spacing:0.299146pt;}
.wsbd{word-spacing:0.345600pt;}
.wsbe{word-spacing:0.355200pt;}
.ws73{word-spacing:0.393600pt;}
.ws26{word-spacing:0.408000pt;}
.wsf8{word-spacing:0.441600pt;}
.wsfa{word-spacing:0.451200pt;}
.ws60{word-spacing:0.465600pt;}
.ws9{word-spacing:0.480000pt;}
.ws12c{word-spacing:0.513600pt;}
.wsc{word-spacing:0.633600pt;}
.ws24{word-spacing:0.672000pt;}
.wsd0{word-spacing:0.748800pt;}
.wse9{word-spacing:0.820800pt;}
.ws6c{word-spacing:0.955200pt;}
.ws6d{word-spacing:0.988800pt;}
.ws5c{word-spacing:1.065600pt;}
.ws4f{word-spacing:1.070400pt;}
.ws8d{word-spacing:1.113600pt;}
.wsfe{word-spacing:1.187035pt;}
.ws121{word-spacing:1.228800pt;}
.wsc0{word-spacing:1.248000pt;}
.ws10b{word-spacing:1.272000pt;}
.ws10a{word-spacing:1.276800pt;}
.ws3e{word-spacing:1.281600pt;}
.ws14b{word-spacing:1.401600pt;}
.ws70{word-spacing:1.488000pt;}
.ws13b{word-spacing:1.497600pt;}
.ws2d{word-spacing:1.516800pt;}
.ws5a{word-spacing:1.569600pt;}
.ws2b{word-spacing:1.588800pt;}
.ws13f{word-spacing:1.776000pt;}
.wsff{word-spacing:1.780800pt;}
.ws13e{word-spacing:1.785600pt;}
.wsfd{word-spacing:1.790400pt;}
.ws32{word-spacing:1.833600pt;}
.wsbb{word-spacing:1.872000pt;}
.wse6{word-spacing:1.876800pt;}
.ws93{word-spacing:1.881600pt;}
.ws5b{word-spacing:1.929600pt;}
.wse{word-spacing:2.054400pt;}
.ws40{word-spacing:2.083200pt;}
.wsd8{word-spacing:2.116800pt;}
.ws9b{word-spacing:2.251200pt;}
.ws11b{word-spacing:2.318400pt;}
.wsee{word-spacing:2.404800pt;}
.ws95{word-spacing:2.443200pt;}
.ws96{word-spacing:2.452800pt;}
.ws154{word-spacing:2.500800pt;}
.ws59{word-spacing:2.515200pt;}
.ws150{word-spacing:2.524800pt;}
.ws108{word-spacing:2.587291pt;}
.wsb1{word-spacing:2.649600pt;}
.wsdb{word-spacing:2.697600pt;}
.wsd1{word-spacing:2.721600pt;}
.wsbf{word-spacing:2.817600pt;}
.wsb5{word-spacing:3.033600pt;}
.ws4d{word-spacing:3.038400pt;}
.ws14d{word-spacing:3.072000pt;}
.ws14e{word-spacing:3.081600pt;}
.ws29{word-spacing:3.153600pt;}
.ws2a{word-spacing:3.177600pt;}
.wsd9{word-spacing:3.201600pt;}
.ws4e{word-spacing:3.220800pt;}
.ws16{word-spacing:3.225600pt;}
.ws41{word-spacing:3.235200pt;}
.ws77{word-spacing:3.316800pt;}
.ws97{word-spacing:3.336000pt;}
.ws135{word-spacing:3.369600pt;}
.ws143{word-spacing:3.408000pt;}
.ws61{word-spacing:3.542400pt;}
.ws12b{word-spacing:3.547200pt;}
.wscd{word-spacing:3.552000pt;}
.ws115{word-spacing:3.595200pt;}
.wsab{word-spacing:3.667200pt;}
.wse8{word-spacing:3.772800pt;}
.ws37{word-spacing:3.777600pt;}
.ws13{word-spacing:3.811200pt;}
.ws8f{word-spacing:3.888000pt;}
.wsf2{word-spacing:3.897600pt;}
.ws109{word-spacing:3.902400pt;}
.ws107{word-spacing:3.916800pt;}
.ws34{word-spacing:3.945600pt;}
.ws35{word-spacing:3.993600pt;}
.ws89{word-spacing:4.060800pt;}
.ws145{word-spacing:4.104000pt;}
.ws74{word-spacing:4.176000pt;}
.wsfc{word-spacing:4.235774pt;}
.ws94{word-spacing:4.334400pt;}
.ws62{word-spacing:4.425600pt;}
.ws4c{word-spacing:4.492800pt;}
.wsdc{word-spacing:4.555200pt;}
.ws46{word-spacing:4.632000pt;}
.ws47{word-spacing:4.636800pt;}
.wsa8{word-spacing:4.689600pt;}
.ws157{word-spacing:4.694400pt;}
.ws153{word-spacing:4.795200pt;}
.wseb{word-spacing:4.809600pt;}
.ws7b{word-spacing:4.891200pt;}
.ws10d{word-spacing:5.044800pt;}
.ws44{word-spacing:5.064000pt;}
.wsa3{word-spacing:5.385600pt;}
.ws3a{word-spacing:5.433600pt;}
.ws152{word-spacing:5.438400pt;}
.wsa1{word-spacing:5.486458pt;}
.ws136{word-spacing:5.568000pt;}
.wsd4{word-spacing:5.760000pt;}
.ws15a{word-spacing:5.803200pt;}
.wsd6{word-spacing:5.870400pt;}
.ws144{word-spacing:5.884800pt;}
.wsb7{word-spacing:5.894400pt;}
.ws9d{word-spacing:5.908800pt;}
.wsaf{word-spacing:5.918400pt;}
.wsca{word-spacing:5.961600pt;}
.ws6e{word-spacing:6.000000pt;}
.ws76{word-spacing:6.048000pt;}
.ws4a{word-spacing:6.057600pt;}
.ws151{word-spacing:6.211200pt;}
.ws158{word-spacing:6.249600pt;}
.wsa7{word-spacing:6.374400pt;}
.wsfb{word-spacing:6.388800pt;}
.ws45{word-spacing:6.489600pt;}
.ws130{word-spacing:6.580800pt;}
.ws36{word-spacing:6.643200pt;}
.wsd7{word-spacing:6.734400pt;}
.wsaa{word-spacing:6.916800pt;}
.ws128{word-spacing:6.959909pt;}
.ws13d{word-spacing:7.065600pt;}
.ws11a{word-spacing:7.070400pt;}
.ws12{word-spacing:7.104000pt;}
.wse4{word-spacing:7.204954pt;}
.wsa5{word-spacing:7.224000pt;}
.ws113{word-spacing:7.233600pt;}
.wsb6{word-spacing:7.315200pt;}
.ws132{word-spacing:7.324800pt;}
.ws7a{word-spacing:7.329600pt;}
.ws133{word-spacing:7.339200pt;}
.ws126{word-spacing:7.353600pt;}
.ws68{word-spacing:7.387200pt;}
.ws79{word-spacing:7.406400pt;}
.ws49{word-spacing:7.411200pt;}
.ws67{word-spacing:7.444800pt;}
.ws69{word-spacing:7.449600pt;}
.wse7{word-spacing:7.550400pt;}
.ws48{word-spacing:7.622400pt;}
.ws2c{word-spacing:7.656000pt;}
.wsdd{word-spacing:7.665600pt;}
.ws10f{word-spacing:7.684800pt;}
.ws10c{word-spacing:7.689600pt;}
.ws10e{word-spacing:7.699200pt;}
.ws12e{word-spacing:7.737600pt;}
.wsba{word-spacing:7.785600pt;}
.ws5e{word-spacing:7.790400pt;}
.ws131{word-spacing:7.896000pt;}
.wse5{word-spacing:7.958400pt;}
.ws3c{word-spacing:8.025600pt;}
.ws5d{word-spacing:8.035200pt;}
.ws3d{word-spacing:8.073600pt;}
.ws4b{word-spacing:8.179200pt;}
.wsa2{word-spacing:8.265600pt;}
.wsa0{word-spacing:8.275200pt;}
.ws63{word-spacing:8.332800pt;}
.ws30{word-spacing:8.371200pt;}
.ws9f{word-spacing:8.428800pt;}
.ws148{word-spacing:8.433600pt;}
.wsef{word-spacing:8.520000pt;}
.ws31{word-spacing:8.553600pt;}
.wscb{word-spacing:8.635200pt;}
.wsed{word-spacing:8.688000pt;}
.ws105{word-spacing:8.716594pt;}
.ws71{word-spacing:8.980800pt;}
.ws25{word-spacing:9.028800pt;}
.wsf1{word-spacing:9.033600pt;}
.ws111{word-spacing:9.081600pt;}
.ws65{word-spacing:9.158400pt;}
.wsb8{word-spacing:9.201600pt;}
.wsa4{word-spacing:9.556800pt;}
.ws38{word-spacing:9.667200pt;}
.ws27{word-spacing:9.705600pt;}
.wsb0{word-spacing:9.753600pt;}
.wsd3{word-spacing:9.849600pt;}
.ws53{word-spacing:9.902400pt;}
.ws138{word-spacing:9.909994pt;}
.ws64{word-spacing:9.955200pt;}
.wsf0{word-spacing:9.969600pt;}
.wsc2{word-spacing:9.993600pt;}
.ws2e{word-spacing:10.051200pt;}
.ws9a{word-spacing:10.084800pt;}
.ws127{word-spacing:10.483200pt;}
.ws129{word-spacing:10.488000pt;}
.ws6a{word-spacing:10.752000pt;}
.ws13c{word-spacing:10.771200pt;}
.ws110{word-spacing:10.804800pt;}
.wse3{word-spacing:10.857600pt;}
.ws125{word-spacing:10.881600pt;}
.ws147{word-spacing:11.102400pt;}
.ws11c{word-spacing:11.289600pt;}
.wsc1{word-spacing:11.294400pt;}
.wsc6{word-spacing:11.337600pt;}
.wscf{word-spacing:11.385600pt;}
.ws122{word-spacing:11.433600pt;}
.ws55{word-spacing:11.726400pt;}
.wsa9{word-spacing:11.942400pt;}
.ws10{word-spacing:12.000000pt;}
.ws11{word-spacing:12.009600pt;}
.ws57{word-spacing:12.120000pt;}
.ws140{word-spacing:12.921600pt;}
.ws12f{word-spacing:12.964800pt;}
.ws106{word-spacing:13.132800pt;}
.ws104{word-spacing:13.137600pt;}
.ws159{word-spacing:13.286400pt;}
.wsae{word-spacing:13.401600pt;}
.wse0{word-spacing:13.449600pt;}
.wsd2{word-spacing:13.454400pt;}
.wsb9{word-spacing:13.584000pt;}
.wsc3{word-spacing:13.593600pt;}
.wse2{word-spacing:14.116800pt;}
.wsf4{word-spacing:14.769600pt;}
.ws137{word-spacing:14.937600pt;}
.ws54{word-spacing:15.489600pt;}
.ws56{word-spacing:15.729600pt;}
.ws12d{word-spacing:15.787200pt;}
.wsec{word-spacing:16.180800pt;}
.wse1{word-spacing:16.420800pt;}
.ws101{word-spacing:16.449600pt;}
.ws12a{word-spacing:16.540800pt;}
.ws103{word-spacing:17.020800pt;}
.ws7e{word-spacing:17.145600pt;}
.wsf6{word-spacing:17.162683pt;}
.wsa6{word-spacing:17.592000pt;}
.wsd5{word-spacing:17.865600pt;}
.ws8a{word-spacing:17.913600pt;}
.ws3f{word-spacing:18.403200pt;}
.ws58{word-spacing:19.075200pt;}
.wsb{word-spacing:19.454400pt;}
.wsb4{word-spacing:20.083200pt;}
.ws8{word-spacing:21.561600pt;}
.ws50{word-spacing:22.363200pt;}
.ws7{word-spacing:22.713600pt;}
.ws119{word-spacing:22.848000pt;}
.wsb3{word-spacing:25.089600pt;}
.wsf{word-spacing:25.190400pt;}
.wsdf{word-spacing:25.569600pt;}
.wsf5{word-spacing:25.867200pt;}
.wsf7{word-spacing:25.881600pt;}
.wsb2{word-spacing:28.128000pt;}
.ws7f{word-spacing:150.640000pt;}
.ws80{word-spacing:169.840000pt;}
.ws82{word-spacing:170.600000pt;}
.ws83{word-spacing:180.160000pt;}
.ws84{word-spacing:209.760000pt;}
.ws81{word-spacing:217.960000pt;}
.ws85{word-spacing:221.640000pt;}
.ws1a{word-spacing:1213.486933pt;}
._c{margin-left:-2478.480000pt;}
._b{margin-left:-1464.672000pt;}
._a{margin-left:-52.480000pt;}
._1b{margin-left:-20.880000pt;}
._19{margin-left:-18.683733pt;}
._1a{margin-left:-17.328000pt;}
._15{margin-left:-14.230400pt;}
._14{margin-left:-12.840800pt;}
._e{margin-left:-11.582400pt;}
._17{margin-left:-10.414400pt;}
._18{margin-left:-8.616000pt;}
._16{margin-left:-7.344000pt;}
._5{margin-left:-5.821600pt;}
._4{margin-left:-4.630933pt;}
._3{margin-left:-3.556800pt;}
._6{margin-left:-2.498667pt;}
._0{margin-left:-1.582933pt;}
._1{width:1.587200pt;}
._9{width:2.916800pt;}
._8{width:3.809920pt;}
._33{width:9.817600pt;}
._7{width:12.739733pt;}
._34{width:19.200000pt;}
._31{width:28.200000pt;}
._25{width:30.400000pt;}
._d{width:35.040000pt;}
._10{width:65.301600pt;}
._f{width:171.818667pt;}
._2e{width:292.768000pt;}
._20{width:298.640000pt;}
._32{width:313.264267pt;}
._21{width:316.756000pt;}
._30{width:317.840000pt;}
._24{width:331.164000pt;}
._2b{width:337.040000pt;}
._27{width:355.156000pt;}
._23{width:356.240000pt;}
._12{width:361.600000pt;}
._29{width:374.356000pt;}
._13{width:380.800000pt;}
._11{width:400.000000pt;}
._1e{width:422.156000pt;}
._1d{width:438.000000pt;}
._22{width:520.037600pt;}
._2d{width:550.134400pt;}
._2c{width:561.134400pt;}
._2a{width:571.538400pt;}
._28{width:581.098400pt;}
._1f{width:589.506933pt;}
._2{width:591.362667pt;}
._2f{width:617.458400pt;}
._26{width:621.138400pt;}
._1c{width:646.502667pt;}
.fs8{font-size:28.288000pt;}
.fs3{font-size:31.824000pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.968000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:69.333333pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:85.957067pt;}
.y94{bottom:85.983733pt;}
.y95{bottom:109.439733pt;}
.y190{bottom:109.455733pt;}
.y2f{bottom:109.471867pt;}
.y15f{bottom:109.477200pt;}
.y36{bottom:109.478667pt;}
.y126{bottom:109.480133pt;}
.y1ea{bottom:109.619533pt;}
.y40{bottom:114.106533pt;}
.y1e9{bottom:121.710867pt;}
.y234{bottom:121.730533pt;}
.y2e{bottom:124.135867pt;}
.y18f{bottom:124.138667pt;}
.y15e{bottom:124.141200pt;}
.y35{bottom:124.142667pt;}
.y125{bottom:124.144133pt;}
.y3f{bottom:126.106533pt;}
.y1e8{bottom:133.799867pt;}
.y233{bottom:133.839533pt;}
.y3e{bottom:138.106533pt;}
.y2d{bottom:138.799867pt;}
.y18e{bottom:138.802667pt;}
.y15d{bottom:138.805200pt;}
.y34{bottom:138.806667pt;}
.y124{bottom:138.808133pt;}
.y1e7{bottom:145.893200pt;}
.y232{bottom:145.951000pt;}
.y3d{bottom:150.106533pt;}
.y18d{bottom:153.466667pt;}
.y15c{bottom:153.469200pt;}
.y33{bottom:153.470667pt;}
.y123{bottom:153.472133pt;}
.y2c{bottom:153.477333pt;}
.y231{bottom:158.060000pt;}
.y18c{bottom:168.130667pt;}
.y15b{bottom:168.133200pt;}
.y32{bottom:168.134667pt;}
.y122{bottom:168.136133pt;}
.y2b{bottom:168.141333pt;}
.y230{bottom:170.171000pt;}
.y22f{bottom:182.279867pt;}
.y18b{bottom:182.794667pt;}
.y31{bottom:182.798667pt;}
.y121{bottom:182.800133pt;}
.y2a{bottom:182.805333pt;}
.y15a{bottom:182.837733pt;}
.y1e6{bottom:186.835333pt;}
.y22e{bottom:194.390867pt;}
.y18a{bottom:197.458667pt;}
.y120{bottom:197.464133pt;}
.y30{bottom:197.467867pt;}
.y29{bottom:197.469333pt;}
.y159{bottom:197.501733pt;}
.y1e5{bottom:198.931333pt;}
.y22d{bottom:206.499667pt;}
.y1e4{bottom:211.027333pt;}
.y189{bottom:212.122667pt;}
.y11f{bottom:212.128133pt;}
.y28{bottom:212.133333pt;}
.y158{bottom:212.165733pt;}
.y22c{bottom:218.610667pt;}
.y11e{bottom:226.792133pt;}
.y188{bottom:226.794800pt;}
.y27{bottom:226.797333pt;}
.y1ae{bottom:226.797467pt;}
.y157{bottom:226.829733pt;}
.y1e3{bottom:228.456667pt;}
.y22b{bottom:230.719667pt;}
.y92{bottom:232.772133pt;}
.y1e2{bottom:240.552667pt;}
.y26{bottom:241.417733pt;}
.y11d{bottom:241.456133pt;}
.y187{bottom:241.458800pt;}
.y1ad{bottom:241.461467pt;}
.y156{bottom:241.493733pt;}
.y22a{bottom:242.831000pt;}
.y91{bottom:247.440133pt;}
.y1e1{bottom:252.648667pt;}
.y229{bottom:254.940133pt;}
.y11c{bottom:256.120133pt;}
.y186{bottom:256.122800pt;}
.y1ac{bottom:256.125467pt;}
.y155{bottom:256.157733pt;}
.y90{bottom:262.108133pt;}
.y1e0{bottom:264.744667pt;}
.y228{bottom:267.051133pt;}
.y11b{bottom:270.786800pt;}
.y185{bottom:270.789467pt;}
.y154{bottom:270.821733pt;}
.y8f{bottom:276.776133pt;}
.y1df{bottom:276.840667pt;}
.y227{bottom:279.159800pt;}
.y6c{bottom:279.417867pt;}
.y184{bottom:285.456133pt;}
.y1ab{bottom:285.484267pt;}
.y153{bottom:285.485733pt;}
.y1de{bottom:288.936667pt;}
.y226{bottom:291.270933pt;}
.y6b{bottom:291.417867pt;}
.y8e{bottom:291.444133pt;}
.y25{bottom:291.869067pt;}
.y183{bottom:300.133600pt;}
.y1aa{bottom:300.148267pt;}
.y152{bottom:300.149733pt;}
.y11a{bottom:302.122800pt;}
.y225{bottom:303.379933pt;}
.y6a{bottom:303.417867pt;}
.y8d{bottom:306.112133pt;}
.y1dd{bottom:306.366000pt;}
.y24{bottom:306.537067pt;}
.y182{bottom:314.797600pt;}
.y1a9{bottom:314.811067pt;}
.y151{bottom:314.813733pt;}
.y69{bottom:315.417867pt;}
.y224{bottom:315.490933pt;}
.y119{bottom:316.794933pt;}
.y8c{bottom:320.780133pt;}
.y1dc{bottom:323.795333pt;}
.y68{bottom:327.417867pt;}
.y223{bottom:327.600267pt;}
.y181{bottom:329.461600pt;}
.y1a8{bottom:329.476267pt;}
.y150{bottom:329.477733pt;}
.y118{bottom:331.458933pt;}
.y8b{bottom:335.439600pt;}
.y23{bottom:337.874400pt;}
.y222{bottom:339.711267pt;}
.y1db{bottom:341.224667pt;}
.y180{bottom:344.125600pt;}
.y1a7{bottom:344.140267pt;}
.y14f{bottom:344.141733pt;}
.y117{bottom:346.122933pt;}
.y8a{bottom:350.778933pt;}
.y67{bottom:351.417867pt;}
.y221{bottom:351.819933pt;}
.y22{bottom:352.542400pt;}
.y1da{bottom:358.654000pt;}
.y17f{bottom:358.789600pt;}
.y1a6{bottom:358.804267pt;}
.yc3{bottom:358.805733pt;}
.yee{bottom:358.967067pt;}
.y116{bottom:360.800400pt;}
.y66{bottom:363.417867pt;}
.y220{bottom:363.931067pt;}
.y21{bottom:367.210400pt;}
.y17e{bottom:373.456400pt;}
.y1a5{bottom:373.468267pt;}
.yc2{bottom:373.469733pt;}
.yed{bottom:373.691067pt;}
.y89{bottom:374.110933pt;}
.y65{bottom:375.417867pt;}
.y115{bottom:375.464400pt;}
.y21f{bottom:376.040067pt;}
.y1d9{bottom:376.083333pt;}
.y20{bottom:381.878400pt;}
.y93{bottom:385.369600pt;}
.y64{bottom:387.417867pt;}
.y17d{bottom:388.124267pt;}
.y1a4{bottom:388.131067pt;}
.y14e{bottom:388.133733pt;}
.yc1{bottom:388.147067pt;}
.y21e{bottom:388.151067pt;}
.y1d8{bottom:388.179333pt;}
.yec{bottom:388.415067pt;}
.y88{bottom:388.778933pt;}
.y114{bottom:390.128400pt;}
.y1f{bottom:396.546400pt;}
.y63{bottom:399.417867pt;}
.y21d{bottom:400.260067pt;}
.y1d7{bottom:400.275333pt;}
.y17c{bottom:402.790933pt;}
.y1a3{bottom:402.796267pt;}
.y14d{bottom:402.800400pt;}
.yc0{bottom:402.811067pt;}
.yeb{bottom:403.139067pt;}
.y87{bottom:403.446933pt;}
.y113{bottom:404.792400pt;}
.y1e{bottom:411.214400pt;}
.y62{bottom:411.417867pt;}
.y21c{bottom:412.371067pt;}
.y1d6{bottom:412.371333pt;}
.y1a2{bottom:417.459067pt;}
.ybf{bottom:417.475067pt;}
.y17b{bottom:417.500667pt;}
.yea{bottom:417.863333pt;}
.y86{bottom:418.109733pt;}
.y112{bottom:419.456400pt;}
.y61{bottom:423.417867pt;}
.y1d5{bottom:424.467333pt;}
.y21b{bottom:424.480067pt;}
.y1d{bottom:425.882400pt;}
.y1a1{bottom:432.124267pt;}
.ybe{bottom:432.139067pt;}
.y17a{bottom:432.165867pt;}
.ye9{bottom:432.587333pt;}
.y85{bottom:432.777733pt;}
.y111{bottom:434.163467pt;}
.y60{bottom:435.417867pt;}
.y1d4{bottom:436.563333pt;}
.y21a{bottom:436.591067pt;}
.y14c{bottom:439.558133pt;}
.y1c{bottom:440.550400pt;}
.y1a0{bottom:446.792533pt;}
.ybd{bottom:446.803067pt;}
.y179{bottom:446.828667pt;}
.ye8{bottom:447.311333pt;}
.y84{bottom:447.445733pt;}
.y219{bottom:448.700067pt;}
.y110{bottom:448.827467pt;}
.y1d3{bottom:453.992667pt;}
.y14b{bottom:454.222133pt;}
.y1b{bottom:455.218400pt;}
.y218{bottom:460.811533pt;}
.y19f{bottom:461.456533pt;}
.ybc{bottom:461.480667pt;}
.y178{bottom:461.492667pt;}
.ye7{bottom:462.035333pt;}
.y83{bottom:462.113733pt;}
.y5f{bottom:463.417867pt;}
.y10f{bottom:463.491467pt;}
.y1d2{bottom:466.088667pt;}
.y14a{bottom:468.886133pt;}
.y1a{bottom:469.886400pt;}
.y217{bottom:472.920533pt;}
.ybb{bottom:476.144667pt;}
.y19e{bottom:476.152933pt;}
.y177{bottom:476.157867pt;}
.ye6{bottom:476.759333pt;}
.y82{bottom:476.775200pt;}
.y10e{bottom:478.155467pt;}
.y1d1{bottom:478.184667pt;}
.y5e{bottom:480.217867pt;}
.y149{bottom:483.550133pt;}
.y19{bottom:484.554400pt;}
.y216{bottom:485.031533pt;}
.y5d{bottom:487.417867pt;}
.y1d0{bottom:490.280667pt;}
.yba{bottom:490.808667pt;}
.y19d{bottom:490.816933pt;}
.y176{bottom:490.821867pt;}
.y81{bottom:491.443200pt;}
.ye5{bottom:491.483333pt;}
.y10d{bottom:492.819467pt;}
.y215{bottom:497.140333pt;}
.y148{bottom:498.214133pt;}
.y18{bottom:499.222400pt;}
.y5c{bottom:499.417867pt;}
.y1cf{bottom:502.376667pt;}
.yb9{bottom:505.472667pt;}
.y19c{bottom:505.480933pt;}
.y175{bottom:505.485867pt;}
.y80{bottom:506.111200pt;}
.ye4{bottom:506.207333pt;}
.y10c{bottom:507.483467pt;}
.y214{bottom:509.251333pt;}
.y147{bottom:512.878133pt;}
.y17{bottom:513.890400pt;}
.y5b{bottom:516.218000pt;}
.y1ce{bottom:519.806000pt;}
.yb8{bottom:520.136667pt;}
.y19b{bottom:520.144933pt;}
.y174{bottom:520.149867pt;}
.y7f{bottom:520.779200pt;}
.ye3{bottom:520.931333pt;}
.y213{bottom:521.360333pt;}
.y10b{bottom:522.147467pt;}
.y5a{bottom:523.418000pt;}
.y146{bottom:527.542133pt;}
.y16{bottom:528.558400pt;}
.y1cd{bottom:531.902000pt;}
.y212{bottom:533.471333pt;}
.yb7{bottom:534.808667pt;}
.y19a{bottom:534.808933pt;}
.y173{bottom:534.813867pt;}
.y59{bottom:535.418000pt;}
.y7e{bottom:535.447200pt;}
.ye2{bottom:535.655333pt;}
.y10a{bottom:536.811467pt;}
.y145{bottom:542.206133pt;}
.y15{bottom:543.226400pt;}
.y1cc{bottom:543.998000pt;}
.y211{bottom:545.580333pt;}
.y58{bottom:547.418000pt;}
.y199{bottom:549.471733pt;}
.yb6{bottom:549.472667pt;}
.y172{bottom:549.477867pt;}
.ye1{bottom:550.379333pt;}
.y7d{bottom:551.442133pt;}
.y109{bottom:551.475467pt;}
.y144{bottom:556.870133pt;}
.y210{bottom:557.691333pt;}
.y14{bottom:557.894400pt;}
.y198{bottom:564.135733pt;}
.yb5{bottom:564.136667pt;}
.y171{bottom:564.141867pt;}
.y57{bottom:564.218000pt;}
.ye0{bottom:565.103333pt;}
.y108{bottom:566.139467pt;}
.y20f{bottom:569.800333pt;}
.y56{bottom:571.418133pt;}
.y143{bottom:571.534133pt;}
.y1cb{bottom:572.094000pt;}
.y13{bottom:572.562400pt;}
.y7c{bottom:574.774133pt;}
.y197{bottom:578.799733pt;}
.y170{bottom:578.805867pt;}
.yb4{bottom:578.806133pt;}
.ydf{bottom:579.819467pt;}
.y107{bottom:580.803467pt;}
.y20e{bottom:581.911333pt;}
.y55{bottom:583.418133pt;}
.y142{bottom:586.198133pt;}
.y12{bottom:587.230400pt;}
.y7b{bottom:589.442133pt;}
.y1ca{bottom:590.854400pt;}
.y196{bottom:593.464933pt;}
.y16f{bottom:593.469867pt;}
.yb3{bottom:593.470133pt;}
.y20d{bottom:594.020333pt;}
.yde{bottom:594.543467pt;}
.y54{bottom:595.418133pt;}
.y106{bottom:595.467467pt;}
.y141{bottom:600.862133pt;}
.y11{bottom:601.898400pt;}
.y7a{bottom:604.110133pt;}
.y1c9{bottom:605.614400pt;}
.y20c{bottom:606.131800pt;}
.y195{bottom:608.128933pt;}
.y16e{bottom:608.133867pt;}
.yb2{bottom:608.142133pt;}
.ydd{bottom:609.255467pt;}
.y105{bottom:610.131467pt;}
.y53{bottom:612.218000pt;}
.y140{bottom:615.526133pt;}
.y10{bottom:616.566400pt;}
.y20b{bottom:618.240800pt;}
.y79{bottom:618.778133pt;}
.y52{bottom:619.418133pt;}
.y1c8{bottom:620.374400pt;}
.y194{bottom:622.791733pt;}
.y16d{bottom:622.796667pt;}
.yb1{bottom:622.806133pt;}
.ydc{bottom:623.979467pt;}
.y104{bottom:624.795467pt;}
.y13f{bottom:630.190133pt;}
.y20a{bottom:630.351800pt;}
.yf{bottom:631.234400pt;}
.y51{bottom:631.418133pt;}
.y78{bottom:633.446133pt;}
.y1c7{bottom:635.134400pt;}
.y193{bottom:637.455733pt;}
.y16c{bottom:637.459467pt;}
.yb0{bottom:637.470133pt;}
.ydb{bottom:638.703467pt;}
.y103{bottom:639.459467pt;}
.y209{bottom:642.460800pt;}
.y50{bottom:643.418133pt;}
.y13e{bottom:644.854133pt;}
.ye{bottom:645.902400pt;}
.y77{bottom:648.114133pt;}
.y1c6{bottom:649.894400pt;}
.y192{bottom:652.119733pt;}
.y16b{bottom:652.123467pt;}
.yaf{bottom:652.153067pt;}
.yda{bottom:653.419600pt;}
.y102{bottom:654.123467pt;}
.y208{bottom:654.571800pt;}
.y13d{bottom:659.518400pt;}
.y4f{bottom:660.218133pt;}
.yd{bottom:660.570400pt;}
.y76{bottom:662.776933pt;}
.y1c5{bottom:664.654400pt;}
.y207{bottom:666.680600pt;}
.y191{bottom:666.783733pt;}
.y16a{bottom:666.787467pt;}
.yae{bottom:666.817067pt;}
.y4e{bottom:667.418267pt;}
.yd9{bottom:668.143600pt;}
.y101{bottom:668.787467pt;}
.y13c{bottom:674.182400pt;}
.yc{bottom:675.238400pt;}
.y75{bottom:677.444933pt;}
.y206{bottom:678.791600pt;}
.y1c4{bottom:679.414400pt;}
.y4d{bottom:679.418267pt;}
.yad{bottom:681.481067pt;}
.yd8{bottom:682.867600pt;}
.y100{bottom:683.454133pt;}
.y13b{bottom:688.846400pt;}
.yb{bottom:689.906400pt;}
.y205{bottom:690.900600pt;}
.y4c{bottom:691.418267pt;}
.y74{bottom:692.112933pt;}
.y1c3{bottom:694.174400pt;}
.yac{bottom:696.145067pt;}
.yd7{bottom:697.584267pt;}
.y169{bottom:700.578267pt;}
.y204{bottom:703.011733pt;}
.y13a{bottom:703.510400pt;}
.ya{bottom:704.574400pt;}
.y73{bottom:706.780933pt;}
.y4b{bottom:708.218267pt;}
.y1c2{bottom:708.934400pt;}
.yab{bottom:710.809067pt;}
.yd6{bottom:712.974267pt;}
.y168{bottom:713.249267pt;}
.yff{bottom:714.804933pt;}
.y203{bottom:715.120733pt;}
.y4a{bottom:715.418267pt;}
.y139{bottom:718.174400pt;}
.y9{bottom:719.242400pt;}
.y72{bottom:721.443733pt;}
.y1c1{bottom:723.694400pt;}
.yaa{bottom:725.473067pt;}
.y167{bottom:725.918267pt;}
.y202{bottom:727.231733pt;}
.yfe{bottom:729.468933pt;}
.y49{bottom:732.218400pt;}
.y138{bottom:732.838400pt;}
.y8{bottom:733.910400pt;}
.y71{bottom:736.111733pt;}
.y1c0{bottom:738.454400pt;}
.y201{bottom:739.341067pt;}
.y48{bottom:739.418400pt;}
.ya9{bottom:740.137067pt;}
.y166{bottom:744.083133pt;}
.yfd{bottom:744.131733pt;}
.y137{bottom:747.502800pt;}
.y7{bottom:748.578400pt;}
.y70{bottom:750.779733pt;}
.y47{bottom:751.418400pt;}
.y200{bottom:751.452067pt;}
.y1bf{bottom:753.214400pt;}
.yd5{bottom:753.882400pt;}
.ya8{bottom:754.830667pt;}
.yfc{bottom:758.795733pt;}
.y165{bottom:759.583133pt;}
.y136{bottom:762.166800pt;}
.y6{bottom:763.246400pt;}
.y46{bottom:763.418400pt;}
.y1ff{bottom:763.560733pt;}
.y6f{bottom:765.447733pt;}
.y1be{bottom:767.974400pt;}
.yd4{bottom:768.606400pt;}
.ya7{bottom:769.494667pt;}
.yfb{bottom:773.459733pt;}
.y164{bottom:775.083133pt;}
.y1fe{bottom:775.671733pt;}
.y135{bottom:776.830800pt;}
.y5{bottom:777.914400pt;}
.y45{bottom:780.218400pt;}
.y6e{bottom:781.447733pt;}
.y1bd{bottom:782.734400pt;}
.yd3{bottom:783.330400pt;}
.ya6{bottom:784.158667pt;}
.y44{bottom:787.418400pt;}
.y1fd{bottom:787.780733pt;}
.yfa{bottom:788.123733pt;}
.y163{bottom:790.583133pt;}
.y134{bottom:791.494800pt;}
.y4{bottom:792.582400pt;}
.y1bc{bottom:797.494533pt;}
.yd2{bottom:798.022667pt;}
.ya5{bottom:798.822667pt;}
.y43{bottom:799.418400pt;}
.y1fc{bottom:799.892200pt;}
.yf9{bottom:802.787733pt;}
.y162{bottom:806.083133pt;}
.y133{bottom:806.158800pt;}
.y3{bottom:807.250400pt;}
.y42{bottom:811.418400pt;}
.y1fb{bottom:812.001200pt;}
.y1bb{bottom:812.254533pt;}
.y6d{bottom:812.585067pt;}
.yd1{bottom:812.746667pt;}
.ya4{bottom:813.486667pt;}
.y132{bottom:820.822800pt;}
.y161{bottom:821.583133pt;}
.y2{bottom:821.918400pt;}
.y1fa{bottom:824.112200pt;}
.y1ba{bottom:827.014533pt;}
.yd0{bottom:827.470667pt;}
.ya3{bottom:828.150667pt;}
.y41{bottom:828.218533pt;}
.y131{bottom:835.486800pt;}
.y1f9{bottom:836.221333pt;}
.y160{bottom:837.083133pt;}
.y1b9{bottom:841.774533pt;}
.ycf{bottom:842.194667pt;}
.ya2{bottom:842.814667pt;}
.y1f8{bottom:848.332333pt;}
.y130{bottom:850.150800pt;}
.yf8{bottom:852.583133pt;}
.y1b8{bottom:856.534667pt;}
.yce{bottom:856.918667pt;}
.ya1{bottom:857.478667pt;}
.y1f7{bottom:860.441333pt;}
.y12f{bottom:864.814800pt;}
.yf7{bottom:868.083133pt;}
.y1b7{bottom:871.294667pt;}
.ycd{bottom:871.642667pt;}
.ya0{bottom:872.142667pt;}
.y1f6{bottom:872.552333pt;}
.y3c{bottom:874.582667pt;}
.y12e{bottom:879.478800pt;}
.yf6{bottom:883.583133pt;}
.y1f5{bottom:884.661333pt;}
.y1b6{bottom:886.054667pt;}
.ycc{bottom:886.366667pt;}
.y9f{bottom:886.806667pt;}
.y12d{bottom:894.142800pt;}
.y3b{bottom:894.585333pt;}
.y1f4{bottom:896.772333pt;}
.yf5{bottom:899.083133pt;}
.y1b5{bottom:900.814667pt;}
.ycb{bottom:901.090667pt;}
.y9e{bottom:901.470667pt;}
.y12c{bottom:908.806800pt;}
.y1f3{bottom:908.881133pt;}
.y240{bottom:909.752000pt;}
.yf4{bottom:914.583133pt;}
.y1b4{bottom:915.575200pt;}
.yca{bottom:915.797733pt;}
.y9d{bottom:916.151200pt;}
.y1f2{bottom:920.992133pt;}
.y23c{bottom:921.752133pt;}
.y12b{bottom:923.470800pt;}
.y3a{bottom:929.252267pt;}
.yf3{bottom:930.083133pt;}
.y1b3{bottom:930.335200pt;}
.yc9{bottom:930.521733pt;}
.y9c{bottom:930.815200pt;}
.y1f1{bottom:933.101133pt;}
.y23b{bottom:933.752133pt;}
.y12a{bottom:938.134800pt;}
.y1b2{bottom:945.095200pt;}
.y1f0{bottom:945.213000pt;}
.yc8{bottom:945.245733pt;}
.y9b{bottom:945.479200pt;}
.yf2{bottom:945.583133pt;}
.y23a{bottom:945.752133pt;}
.y129{bottom:952.801467pt;}
.y1ef{bottom:957.322000pt;}
.y239{bottom:957.752133pt;}
.y1b1{bottom:959.855200pt;}
.yc7{bottom:959.969733pt;}
.y9a{bottom:960.143200pt;}
.y39{bottom:961.252267pt;}
.yf1{bottom:963.752133pt;}
.y1ee{bottom:969.433000pt;}
.y238{bottom:969.752133pt;}
.y1b0{bottom:974.615200pt;}
.yc6{bottom:974.693733pt;}
.y99{bottom:974.807200pt;}
.y1ed{bottom:981.542000pt;}
.y23f{bottom:981.752000pt;}
.y237{bottom:981.752267pt;}
.yf0{bottom:982.255333pt;}
.y1af{bottom:989.375200pt;}
.yc5{bottom:989.417733pt;}
.y98{bottom:989.471200pt;}
.y128{bottom:989.500133pt;}
.y38{bottom:993.252267pt;}
.y1ec{bottom:993.650533pt;}
.y23e{bottom:993.752000pt;}
.y236{bottom:993.752267pt;}
.yef{bottom:996.919333pt;}
.y97{bottom:1004.135200pt;}
.yc4{bottom:1004.141733pt;}
.y127{bottom:1004.164133pt;}
.y23d{bottom:1005.752000pt;}
.y235{bottom:1005.752267pt;}
.y1eb{bottom:1005.760533pt;}
.y37{bottom:1033.085733pt;}
.y96{bottom:1033.086000pt;}
.hc{height:24.129664pt;}
.h1b{height:30.480000pt;}
.hd{height:32.512000pt;}
.h30{height:34.118667pt;}
.h2c{height:34.120000pt;}
.h31{height:34.120533pt;}
.h2e{height:34.120800pt;}
.h2f{height:34.121333pt;}
.h2d{height:34.125867pt;}
.he{height:34.945312pt;}
.h2b{height:35.872000pt;}
.h4{height:36.328125pt;}
.hb{height:36.394667pt;}
.h1{height:36.501333pt;}
.hf{height:36.576000pt;}
.h2{height:38.608000pt;}
.h3{height:43.218667pt;}
.h7{height:44.704000pt;}
.h21{height:45.497814pt;}
.h1c{height:45.513280pt;}
.h1f{height:45.534614pt;}
.h26{height:45.555947pt;}
.h28{height:45.562347pt;}
.h11{height:45.567147pt;}
.h12{height:45.609814pt;}
.h10{height:45.619414pt;}
.h5{height:45.631680pt;}
.h15{height:45.632214pt;}
.h20{height:45.642347pt;}
.h1d{height:45.653014pt;}
.h13{height:45.653547pt;}
.h14{height:45.663680pt;}
.h27{height:45.664214pt;}
.h6{height:45.664747pt;}
.h22{height:45.669547pt;}
.h23{height:45.670080pt;}
.h24{height:45.674347pt;}
.h1e{height:45.674880pt;}
.h29{height:45.683414pt;}
.h2a{height:45.685014pt;}
.h1a{height:45.717014pt;}
.h18{height:45.717547pt;}
.h19{height:45.733547pt;}
.h16{height:45.753280pt;}
.h17{height:45.812480pt;}
.h25{height:52.032000pt;}
.h9{height:70.410704pt;}
.ha{height:70.420837pt;}
.h8{height:81.280000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x6{left:80.516800pt;}
.x5{left:85.183467pt;}
.xb{left:92.516800pt;}
.xf{left:97.316800pt;}
.x2{left:208.517733pt;}
.x1{left:238.600400pt;}
.xc{left:408.878000pt;}
.xd{left:420.863733pt;}
.x10{left:425.667667pt;}
.x3{left:469.135333pt;}
.x7{left:478.468933pt;}
.x8{left:489.026267pt;}
.x9{left:494.468933pt;}
.x4{left:590.274533pt;}
.xe{left:702.845333pt;}
.xa{left:745.852133pt;}
}




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