
    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_ce71d47a37f756e9cf1682d4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d48efe1c48ad471d0ba9649.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_56b2f24e85d5c669597a4f7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_5b6111afbf0b478c30caef9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_6391b3e1dabd81f628e16c2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_8ad3276ea58bb291538f66df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_882d33da6c00d7206a2a9743.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_f2c6c660eb4843f39d125c19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_8e68733788de4ee7ed77f59d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_7dbf1632ef6f3dc31ecba454.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_dc521263849f416aa3da84dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c81274afc147b1e0d87f67da.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7dbf1632ef6f3dc31ecba454.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8db4a4a80239c2b5ff32400a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6d2349eee1c895e8afd3430a.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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);}
.v3{vertical-align:-17.982000px;}
.v2{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls17{letter-spacing:-4.752000px;}
.ls26{letter-spacing:-4.272000px;}
.ls1e{letter-spacing:-3.792000px;}
.ls29{letter-spacing:-2.784000px;}
.ls15{letter-spacing:-2.640000px;}
.ls21{letter-spacing:-2.112000px;}
.ls24{letter-spacing:-2.064000px;}
.ls1f{letter-spacing:-1.824000px;}
.lsd{letter-spacing:-1.584000px;}
.ls22{letter-spacing:-1.440000px;}
.ls28{letter-spacing:-1.392000px;}
.ls2c{letter-spacing:-1.344000px;}
.ls1a{letter-spacing:-1.104000px;}
.ls25{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.816000px;}
.ls13{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.528000px;}
.lsb{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.450000px;}
.ls2d{letter-spacing:-0.336000px;}
.ls18{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.189000px;}
.lsc{letter-spacing:-0.132000px;}
.lse{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.006000px;}
.ls1c{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.096000px;}
.ls10{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.528000px;}
.ls12{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.624000px;}
.ls23{letter-spacing:0.672000px;}
.ls16{letter-spacing:0.912000px;}
.ls20{letter-spacing:0.960000px;}
.ls1{letter-spacing:1.344000px;}
.ls27{letter-spacing:1.536000px;}
.ls5{letter-spacing:275.456400px;}
.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;}
}
.ws2f{word-spacing:-15.012000px;}
.wsad{word-spacing:-14.304000px;}
.wsaf{word-spacing:-14.016000px;}
.wsb0{word-spacing:-13.968000px;}
.wsa9{word-spacing:-13.920000px;}
.wsa8{word-spacing:-13.824000px;}
.wsae{word-spacing:-13.488000px;}
.wsa7{word-spacing:-13.440000px;}
.wsa6{word-spacing:-13.344000px;}
.wsab{word-spacing:-13.056000px;}
.wsac{word-spacing:-12.528000px;}
.wsaa{word-spacing:-10.704000px;}
.ws1{word-spacing:-10.508400px;}
.wsb2{word-spacing:-4.158000px;}
.ws4f{word-spacing:-3.942000px;}
.ws5a{word-spacing:-2.970000px;}
.ws9a{word-spacing:-2.916000px;}
.wse6{word-spacing:-2.880000px;}
.ws16{word-spacing:-2.862000px;}
.wscd{word-spacing:-2.784000px;}
.ws93{word-spacing:-2.700000px;}
.ws56{word-spacing:-2.646000px;}
.ws91{word-spacing:-2.538000px;}
.wsa4{word-spacing:-2.430000px;}
.ws59{word-spacing:-2.376000px;}
.ws8c{word-spacing:-2.268000px;}
.wse4{word-spacing:-2.208000px;}
.wsdf{word-spacing:-2.160000px;}
.ws9e{word-spacing:-2.106000px;}
.ws8d{word-spacing:-2.064000px;}
.ws65{word-spacing:-1.998000px;}
.ws35{word-spacing:-1.944000px;}
.wscb{word-spacing:-1.920000px;}
.wsa{word-spacing:-1.836000px;}
.ws2b{word-spacing:-1.782000px;}
.wsa0{word-spacing:-1.728000px;}
.ws19{word-spacing:-1.620000px;}
.wsdc{word-spacing:-1.536000px;}
.ws17{word-spacing:-1.458000px;}
.ws7e{word-spacing:-1.404000px;}
.ws62{word-spacing:-1.350000px;}
.ws3c{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.242000px;}
.ws1d{word-spacing:-1.134000px;}
.ws73{word-spacing:-1.080000px;}
.ws23{word-spacing:-0.972000px;}
.ws61{word-spacing:-0.918000px;}
.wsc3{word-spacing:-0.912000px;}
.ws82{word-spacing:-0.816000px;}
.ws7{word-spacing:-0.810000px;}
.wsd2{word-spacing:-0.720000px;}
.ws63{word-spacing:-0.702000px;}
.wsc2{word-spacing:-0.624000px;}
.wsbe{word-spacing:-0.576000px;}
.ws6b{word-spacing:-0.540000px;}
.wsbb{word-spacing:-0.528000px;}
.ws90{word-spacing:-0.486000px;}
.ws2d{word-spacing:-0.480000px;}
.wsc7{word-spacing:-0.432000px;}
.ws36{word-spacing:-0.378000px;}
.ws92{word-spacing:-0.270000px;}
.ws31{word-spacing:-0.216000px;}
.wsbc{word-spacing:-0.144000px;}
.wsc9{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsc0{word-spacing:0.048000px;}
.ws7d{word-spacing:0.054000px;}
.wsa5{word-spacing:0.066000px;}
.wsb9{word-spacing:0.096000px;}
.ws9f{word-spacing:0.189000px;}
.ws76{word-spacing:0.216000px;}
.wsc5{word-spacing:0.240000px;}
.ws30{word-spacing:0.270000px;}
.ws68{word-spacing:0.324000px;}
.wse7{word-spacing:0.336000px;}
.ws7a{word-spacing:0.378000px;}
.ws5e{word-spacing:0.432000px;}
.wsb5{word-spacing:0.450000px;}
.wsb7{word-spacing:0.480000px;}
.ws11{word-spacing:0.486000px;}
.wse0{word-spacing:0.528000px;}
.ws66{word-spacing:0.540000px;}
.wse5{word-spacing:0.576000px;}
.wsd3{word-spacing:0.624000px;}
.ws2a{word-spacing:0.648000px;}
.wsc1{word-spacing:0.672000px;}
.wsbf{word-spacing:0.720000px;}
.wsd1{word-spacing:0.768000px;}
.ws78{word-spacing:0.810000px;}
.wsd5{word-spacing:0.864000px;}
.ws2c{word-spacing:0.912000px;}
.ws58{word-spacing:0.918000px;}
.ws8{word-spacing:1.026000px;}
.wsd6{word-spacing:1.056000px;}
.wsc6{word-spacing:1.104000px;}
.wsb{word-spacing:1.134000px;}
.ws38{word-spacing:1.188000px;}
.ws10{word-spacing:1.242000px;}
.ws12{word-spacing:1.350000px;}
.wsdd{word-spacing:1.392000px;}
.ws5c{word-spacing:1.404000px;}
.wsd0{word-spacing:1.440000px;}
.ws53{word-spacing:1.512000px;}
.ws85{word-spacing:1.566000px;}
.wsb8{word-spacing:1.584000px;}
.ws8a{word-spacing:1.674000px;}
.ws7f{word-spacing:1.728000px;}
.wscc{word-spacing:1.824000px;}
.ws99{word-spacing:1.836000px;}
.ws81{word-spacing:1.920000px;}
.ws57{word-spacing:1.944000px;}
.ws51{word-spacing:2.052000px;}
.wsd4{word-spacing:2.064000px;}
.ws25{word-spacing:2.106000px;}
.wsce{word-spacing:2.112000px;}
.ws4a{word-spacing:2.160000px;}
.ws18{word-spacing:2.214000px;}
.wsd8{word-spacing:2.304000px;}
.ws49{word-spacing:2.376000px;}
.wsdb{word-spacing:2.400000px;}
.ws3a{word-spacing:2.430000px;}
.wse1{word-spacing:2.640000px;}
.ws39{word-spacing:2.646000px;}
.ws8e{word-spacing:2.700000px;}
.ws33{word-spacing:2.754000px;}
.wsde{word-spacing:2.784000px;}
.ws1c{word-spacing:2.916000px;}
.ws32{word-spacing:3.024000px;}
.wse{word-spacing:3.078000px;}
.ws13{word-spacing:3.132000px;}
.ws20{word-spacing:3.240000px;}
.ws42{word-spacing:3.348000px;}
.ws83{word-spacing:3.402000px;}
.ws52{word-spacing:3.564000px;}
.ws5d{word-spacing:3.618000px;}
.ws46{word-spacing:3.672000px;}
.wsc{word-spacing:3.726000px;}
.ws21{word-spacing:3.780000px;}
.wsca{word-spacing:3.792000px;}
.ws84{word-spacing:3.834000px;}
.ws1b{word-spacing:3.888000px;}
.wsbd{word-spacing:3.984000px;}
.wsc4{word-spacing:4.032000px;}
.ws14{word-spacing:4.050000px;}
.ws86{word-spacing:4.104000px;}
.ws22{word-spacing:4.158000px;}
.wsd7{word-spacing:4.272000px;}
.ws80{word-spacing:4.320000px;}
.ws64{word-spacing:4.374000px;}
.ws69{word-spacing:4.422000px;}
.wsd{word-spacing:4.536000px;}
.ws54{word-spacing:4.590000px;}
.ws89{word-spacing:4.698000px;}
.ws9{word-spacing:4.752000px;}
.wsa1{word-spacing:4.806000px;}
.ws77{word-spacing:4.914000px;}
.wsb4{word-spacing:5.022000px;}
.ws3b{word-spacing:5.076000px;}
.ws88{word-spacing:5.130000px;}
.ws94{word-spacing:5.292000px;}
.ws8f{word-spacing:5.400000px;}
.ws72{word-spacing:5.454000px;}
.ws24{word-spacing:5.670000px;}
.wsb6{word-spacing:5.712000px;}
.ws1e{word-spacing:5.778000px;}
.ws71{word-spacing:5.832000px;}
.ws1a{word-spacing:6.048000px;}
.ws55{word-spacing:6.102000px;}
.ws44{word-spacing:6.318000px;}
.ws48{word-spacing:6.372000px;}
.ws47{word-spacing:6.426000px;}
.ws79{word-spacing:6.480000px;}
.ws29{word-spacing:6.588000px;}
.ws45{word-spacing:6.696000px;}
.ws34{word-spacing:6.804000px;}
.ws4c{word-spacing:6.912000px;}
.ws75{word-spacing:7.074000px;}
.ws27{word-spacing:7.128000px;}
.ws15{word-spacing:7.182000px;}
.wsb1{word-spacing:7.236000px;}
.ws6a{word-spacing:7.344000px;}
.ws5b{word-spacing:7.506000px;}
.ws2e{word-spacing:7.536000px;}
.ws6{word-spacing:7.560000px;}
.ws4e{word-spacing:7.722000px;}
.ws95{word-spacing:7.776000px;}
.wsa3{word-spacing:7.884000px;}
.ws3d{word-spacing:7.938000px;}
.ws40{word-spacing:8.046000px;}
.ws5f{word-spacing:8.262000px;}
.ws4b{word-spacing:8.370000px;}
.ws41{word-spacing:8.424000px;}
.ws3e{word-spacing:8.586000px;}
.ws96{word-spacing:8.640000px;}
.ws5{word-spacing:8.694000px;}
.ws9d{word-spacing:8.748000px;}
.ws6c{word-spacing:8.802000px;}
.ws1f{word-spacing:8.910000px;}
.wsba{word-spacing:8.928000px;}
.ws37{word-spacing:9.072000px;}
.ws4d{word-spacing:9.774000px;}
.ws43{word-spacing:9.882000px;}
.ws60{word-spacing:9.990000px;}
.ws98{word-spacing:10.044000px;}
.ws6e{word-spacing:10.098000px;}
.ws74{word-spacing:10.206000px;}
.wse3{word-spacing:10.224000px;}
.wsb3{word-spacing:10.368000px;}
.ws7b{word-spacing:10.908000px;}
.wsda{word-spacing:11.328000px;}
.wsd9{word-spacing:11.424000px;}
.ws3f{word-spacing:11.664000px;}
.ws70{word-spacing:11.772000px;}
.ws28{word-spacing:11.880000px;}
.wse2{word-spacing:12.432000px;}
.wsa2{word-spacing:13.068000px;}
.ws7c{word-spacing:13.770000px;}
.wsc8{word-spacing:13.920000px;}
.ws6f{word-spacing:14.094000px;}
.ws9b{word-spacing:14.310000px;}
.ws97{word-spacing:14.634000px;}
.ws9c{word-spacing:15.012000px;}
.ws87{word-spacing:15.066000px;}
.ws67{word-spacing:15.120000px;}
.ws6d{word-spacing:15.336000px;}
.ws4{word-spacing:16.308000px;}
.wscf{word-spacing:17.280000px;}
.ws26{word-spacing:18.414000px;}
.ws8b{word-spacing:20.574000px;}
.ws50{word-spacing:24.684000px;}
.ws2{word-spacing:105.456000px;}
.ws0{word-spacing:1242.054000px;}
._7{margin-left:-28.722600px;}
._8{margin-left:-19.006200px;}
._4{margin-left:-6.955200px;}
._17{margin-left:-5.545800px;}
._2{margin-left:-4.492800px;}
._0{margin-left:-2.926800px;}
._1{margin-left:-1.506600px;}
._e{width:1.171800px;}
._5{width:2.214000px;}
._c{width:3.246000px;}
._6{width:4.336200px;}
._3{width:5.707800px;}
._a{width:7.497600px;}
._d{width:9.423000px;}
._16{width:10.843200px;}
._9{width:11.988000px;}
._18{width:13.467600px;}
._1d{width:14.545200px;}
._1b{width:17.326800px;}
._19{width:19.596600px;}
._1e{width:21.541800px;}
._1f{width:22.615200px;}
._22{width:25.749000px;}
._21{width:27.094800px;}
._25{width:28.184400px;}
._23{width:30.076200px;}
._24{width:33.804000px;}
._26{width:35.244000px;}
._1c{width:55.584000px;}
._1a{width:56.620200px;}
._20{width:59.791800px;}
._11{width:359.664000px;}
._10{width:397.200000px;}
._13{width:406.176000px;}
._14{width:414.192000px;}
._15{width:427.536000px;}
._12{width:636.000000px;}
._f{width:943.429800px;}
._b{width:1361.538600px;}
.fc8{color:rgb(35,73,74);}
.fc7{color:rgb(109,167,162);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:17.301750px;}
.y3e{bottom:46.967550px;}
.y3f{bottom:47.167950px;}
.y96{bottom:47.171700px;}
.y95{bottom:47.916000px;}
.y34{bottom:59.074650px;}
.y38{bottom:59.194650px;}
.y33{bottom:77.074650px;}
.y37{bottom:77.194650px;}
.y1a1{bottom:82.253700px;}
.y17c{bottom:82.329900px;}
.yee{bottom:88.065450px;}
.yfa{bottom:89.571450px;}
.y70{bottom:92.268750px;}
.y94{bottom:92.270250px;}
.y14f{bottom:92.291250px;}
.y123{bottom:92.292750px;}
.y32{bottom:95.074650px;}
.y36{bottom:95.194650px;}
.ybe{bottom:97.107450px;}
.y1a0{bottom:98.753700px;}
.y17b{bottom:98.829900px;}
.yed{bottom:104.565450px;}
.yf9{bottom:106.071450px;}
.y6f{bottom:111.020250px;}
.y122{bottom:111.044250px;}
.y31{bottom:113.074650px;}
.y35{bottom:113.194650px;}
.ybd{bottom:113.607450px;}
.y19f{bottom:115.253700px;}
.y17a{bottom:115.329900px;}
.yec{bottom:121.065450px;}
.y6e{bottom:129.771750px;}
.y93{bottom:129.773250px;}
.y14e{bottom:129.794250px;}
.y121{bottom:129.795750px;}
.ybc{bottom:130.107450px;}
.y19e{bottom:131.753700px;}
.y179{bottom:131.829900px;}
.y19d{bottom:148.253700px;}
.y178{bottom:148.329900px;}
.y92{bottom:148.524750px;}
.y14d{bottom:148.545750px;}
.y120{bottom:148.547250px;}
.ybb{bottom:150.843450px;}
.y29{bottom:159.373050px;}
.y19c{bottom:164.753700px;}
.y177{bottom:164.829900px;}
.y6d{bottom:167.274750px;}
.y91{bottom:167.276250px;}
.y14c{bottom:167.297250px;}
.y11f{bottom:167.298750px;}
.yba{bottom:167.343450px;}
.y19b{bottom:181.253700px;}
.y176{bottom:181.329900px;}
.y6c{bottom:186.026250px;}
.y90{bottom:186.027750px;}
.y14b{bottom:186.048750px;}
.yb9{bottom:188.079450px;}
.y19a{bottom:197.753700px;}
.y175{bottom:197.829900px;}
.y6b{bottom:204.777750px;}
.y8f{bottom:204.779250px;}
.y14a{bottom:204.800250px;}
.y11e{bottom:204.801750px;}
.yb8{bottom:208.815450px;}
.y199{bottom:214.253700px;}
.y174{bottom:214.329900px;}
.y2d{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.y6a{bottom:223.529250px;}
.y149{bottom:223.551750px;}
.y198{bottom:230.753700px;}
.y173{bottom:230.829900px;}
.y2c{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y69{bottom:242.280750px;}
.y8e{bottom:242.282250px;}
.y197{bottom:247.253700px;}
.y172{bottom:247.329900px;}
.y2b{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y68{bottom:261.032250px;}
.y8d{bottom:261.033750px;}
.y11d{bottom:261.035250px;}
.yb7{bottom:261.045750px;}
.y148{bottom:261.051750px;}
.y196{bottom:263.753700px;}
.y171{bottom:263.829900px;}
.y2a{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y67{bottom:279.783750px;}
.y8c{bottom:279.785250px;}
.y11c{bottom:279.786750px;}
.yb6{bottom:279.797250px;}
.y195{bottom:280.253700px;}
.y170{bottom:280.329900px;}
.y194{bottom:296.753700px;}
.y16f{bottom:296.829900px;}
.y8b{bottom:298.536750px;}
.y11b{bottom:298.538250px;}
.yb5{bottom:298.548750px;}
.y193{bottom:313.253700px;}
.y16e{bottom:313.329900px;}
.y66{bottom:317.286750px;}
.y8a{bottom:317.288250px;}
.y11a{bottom:317.289750px;}
.y147{bottom:317.298750px;}
.yb4{bottom:317.300250px;}
.y30{bottom:325.473450px;}
.y192{bottom:329.753700px;}
.y16d{bottom:329.829900px;}
.y65{bottom:336.038250px;}
.y89{bottom:336.039750px;}
.y119{bottom:336.041250px;}
.ye0{bottom:336.045750px;}
.y146{bottom:336.050250px;}
.yb3{bottom:336.051750px;}
.y191{bottom:346.253700px;}
.y16c{bottom:346.329900px;}
.y64{bottom:354.789750px;}
.y88{bottom:354.791250px;}
.y118{bottom:354.792750px;}
.ydf{bottom:354.797250px;}
.y145{bottom:354.801750px;}
.y190{bottom:362.753700px;}
.y16b{bottom:362.829900px;}
.y63{bottom:373.541250px;}
.y87{bottom:373.542750px;}
.y117{bottom:373.544250px;}
.yde{bottom:373.548750px;}
.yb2{bottom:373.557750px;}
.y18f{bottom:379.253700px;}
.y16a{bottom:379.329900px;}
.y144{bottom:392.282250px;}
.y62{bottom:392.292750px;}
.y116{bottom:392.295750px;}
.ydd{bottom:392.300250px;}
.yb1{bottom:392.301750px;}
.y18e{bottom:395.753700px;}
.y169{bottom:395.829900px;}
.yf8{bottom:402.315450px;}
.y143{bottom:411.033750px;}
.y61{bottom:411.044250px;}
.y86{bottom:411.045750px;}
.y115{bottom:411.047250px;}
.ydc{bottom:411.051750px;}
.y3d{bottom:411.723900px;}
.y18d{bottom:412.253700px;}
.y168{bottom:412.329900px;}
.yeb{bottom:421.065450px;}
.y18c{bottom:428.753700px;}
.y167{bottom:428.829900px;}
.y142{bottom:429.785250px;}
.y60{bottom:429.795750px;}
.y85{bottom:429.797250px;}
.y114{bottom:429.798750px;}
.y3c{bottom:431.217900px;}
.y3b{bottom:441.723900px;}
.y18b{bottom:445.253700px;}
.y166{bottom:445.329900px;}
.ydb{bottom:448.500750px;}
.y141{bottom:448.536750px;}
.yf7{bottom:448.538250px;}
.y5f{bottom:448.547250px;}
.y84{bottom:448.548750px;}
.y113{bottom:448.550250px;}
.y3a{bottom:461.217900px;}
.y18a{bottom:461.753700px;}
.y165{bottom:461.829900px;}
.yda{bottom:467.252250px;}
.y140{bottom:467.288250px;}
.yf6{bottom:467.289750px;}
.yea{bottom:467.294250px;}
.y5e{bottom:467.298750px;}
.y83{bottom:467.300250px;}
.y112{bottom:467.301750px;}
.y189{bottom:478.253700px;}
.y164{bottom:478.329900px;}
.yd9{bottom:486.003750px;}
.y13f{bottom:486.039750px;}
.yf5{bottom:486.041250px;}
.ye9{bottom:486.045750px;}
.y5d{bottom:486.050250px;}
.y82{bottom:486.051750px;}
.y188{bottom:494.753700px;}
.y163{bottom:494.829900px;}
.y20{bottom:498.763950px;}
.yd8{bottom:504.755250px;}
.y111{bottom:504.782250px;}
.y13e{bottom:504.791250px;}
.yf4{bottom:504.792750px;}
.ye8{bottom:504.797250px;}
.y5c{bottom:504.801750px;}
.y187{bottom:511.253700px;}
.y162{bottom:511.329900px;}
.y1f{bottom:513.762450px;}
.yd7{bottom:523.506750px;}
.y110{bottom:523.533750px;}
.y13d{bottom:523.542750px;}
.yf3{bottom:523.544250px;}
.ye7{bottom:523.548750px;}
.y81{bottom:523.557750px;}
.y186{bottom:527.753700px;}
.y161{bottom:527.829900px;}
.y1e{bottom:528.760950px;}
.yd6{bottom:542.258250px;}
.y10f{bottom:542.285250px;}
.y5b{bottom:542.286750px;}
.yb0{bottom:542.288250px;}
.y13c{bottom:542.294250px;}
.yf2{bottom:542.295750px;}
.ye6{bottom:542.300250px;}
.y80{bottom:542.301750px;}
.y1d{bottom:543.759450px;}
.y185{bottom:544.253700px;}
.y160{bottom:544.329900px;}
.y1c{bottom:558.757950px;}
.y184{bottom:560.753700px;}
.y15f{bottom:560.829900px;}
.y10e{bottom:561.036750px;}
.y5a{bottom:561.038250px;}
.yaf{bottom:561.039750px;}
.y13b{bottom:561.045750px;}
.yf1{bottom:561.047250px;}
.ye5{bottom:561.051750px;}
.y1b{bottom:573.756450px;}
.y183{bottom:577.253700px;}
.y15e{bottom:577.329900px;}
.yd5{bottom:579.761250px;}
.y10d{bottom:579.788250px;}
.y59{bottom:579.789750px;}
.yae{bottom:579.791250px;}
.y13a{bottom:579.797250px;}
.y1a{bottom:588.754950px;}
.y182{bottom:593.753700px;}
.y15d{bottom:593.829900px;}
.yd4{bottom:598.512750px;}
.y10c{bottom:598.539750px;}
.y58{bottom:598.541250px;}
.yad{bottom:598.542750px;}
.y139{bottom:598.548750px;}
.yf0{bottom:598.550250px;}
.y19{bottom:603.753450px;}
.y181{bottom:610.253700px;}
.y15c{bottom:610.329900px;}
.yd3{bottom:617.264250px;}
.y10b{bottom:617.291250px;}
.y57{bottom:617.292750px;}
.yef{bottom:617.301750px;}
.y18{bottom:618.751950px;}
.y180{bottom:626.753700px;}
.y15b{bottom:626.829900px;}
.y17{bottom:633.750450px;}
.yd2{bottom:636.015750px;}
.y10a{bottom:636.042750px;}
.y56{bottom:636.044250px;}
.yac{bottom:636.045750px;}
.y138{bottom:636.051750px;}
.y17f{bottom:643.253700px;}
.y15a{bottom:643.329900px;}
.y16{bottom:648.748950px;}
.yd1{bottom:654.767250px;}
.y109{bottom:654.794250px;}
.y55{bottom:654.795750px;}
.yab{bottom:654.797250px;}
.y17e{bottom:659.753700px;}
.y15{bottom:663.747450px;}
.yd0{bottom:673.518750px;}
.y108{bottom:673.545750px;}
.y54{bottom:673.547250px;}
.yaa{bottom:673.548750px;}
.y17d{bottom:676.253700px;}
.y159{bottom:676.329900px;}
.y14{bottom:678.745950px;}
.ycf{bottom:692.270250px;}
.y137{bottom:692.285250px;}
.y107{bottom:692.297250px;}
.y53{bottom:692.298750px;}
.ya9{bottom:692.300250px;}
.y13{bottom:693.744450px;}
.y12{bottom:708.742950px;}
.yce{bottom:711.021750px;}
.y136{bottom:711.036750px;}
.y106{bottom:711.048750px;}
.y52{bottom:711.050250px;}
.ya8{bottom:711.051750px;}
.y11{bottom:723.741450px;}
.ycd{bottom:729.773250px;}
.y135{bottom:729.788250px;}
.y51{bottom:729.801750px;}
.y10{bottom:738.739950px;}
.ycc{bottom:748.524750px;}
.ya7{bottom:748.529250px;}
.y134{bottom:748.539750px;}
.y105{bottom:748.551750px;}
.yf{bottom:753.738450px;}
.y158{bottom:757.297800px;}
.ycb{bottom:767.276250px;}
.ya6{bottom:767.280750px;}
.y50{bottom:767.286750px;}
.y133{bottom:767.291250px;}
.ye4{bottom:767.298750px;}
.y7f{bottom:767.301750px;}
.ye{bottom:768.736950px;}
.y157{bottom:773.797800px;}
.yd{bottom:783.735450px;}
.yca{bottom:786.027750px;}
.ya5{bottom:786.032250px;}
.y4f{bottom:786.038250px;}
.y132{bottom:786.042750px;}
.ye3{bottom:786.050250px;}
.y156{bottom:790.297800px;}
.yc{bottom:798.733950px;}
.yc9{bottom:804.779250px;}
.ya4{bottom:804.783750px;}
.y104{bottom:804.788250px;}
.y4e{bottom:804.789750px;}
.y131{bottom:804.794250px;}
.ye2{bottom:804.801750px;}
.y155{bottom:806.797800px;}
.yb{bottom:813.732450px;}
.yc8{bottom:823.530750px;}
.y7e{bottom:823.532250px;}
.ya3{bottom:823.535250px;}
.y103{bottom:823.539750px;}
.y4d{bottom:823.541250px;}
.y130{bottom:823.545750px;}
.ya{bottom:828.730950px;}
.y1b2{bottom:832.065450px;}
.yc7{bottom:842.282250px;}
.y7d{bottom:842.283750px;}
.ya2{bottom:842.286750px;}
.y102{bottom:842.291250px;}
.y4c{bottom:842.292750px;}
.y12f{bottom:842.297250px;}
.y9{bottom:843.729450px;}
.y1b1{bottom:848.565450px;}
.y8{bottom:858.727950px;}
.yc6{bottom:861.033750px;}
.y7c{bottom:861.035250px;}
.ya1{bottom:861.038250px;}
.y101{bottom:861.042750px;}
.y4b{bottom:861.044250px;}
.y154{bottom:861.045750px;}
.y12e{bottom:861.048750px;}
.y1b0{bottom:865.065450px;}
.y7{bottom:873.726450px;}
.yc5{bottom:879.785250px;}
.y7b{bottom:879.786750px;}
.ya0{bottom:879.789750px;}
.y100{bottom:879.794250px;}
.y4a{bottom:879.795750px;}
.y153{bottom:879.797250px;}
.y12d{bottom:879.800250px;}
.y1af{bottom:881.565450px;}
.y6{bottom:888.724950px;}
.y1ae{bottom:898.065450px;}
.yc4{bottom:898.536750px;}
.y7a{bottom:898.538250px;}
.y9f{bottom:898.541250px;}
.yff{bottom:898.545750px;}
.y49{bottom:898.547250px;}
.y152{bottom:898.548750px;}
.y12c{bottom:898.551750px;}
.y5{bottom:903.723450px;}
.y1ad{bottom:914.565450px;}
.yc3{bottom:917.288250px;}
.y79{bottom:917.289750px;}
.y9e{bottom:917.292750px;}
.yfe{bottom:917.297250px;}
.y48{bottom:917.298750px;}
.y151{bottom:917.300250px;}
.y21{bottom:923.289300px;}
.y1ac{bottom:931.065450px;}
.y12b{bottom:936.029250px;}
.yc2{bottom:936.039750px;}
.y78{bottom:936.041250px;}
.y9d{bottom:936.044250px;}
.yfd{bottom:936.048750px;}
.y47{bottom:936.050250px;}
.y150{bottom:936.051750px;}
.y1ab{bottom:947.565450px;}
.y12a{bottom:954.780750px;}
.yc1{bottom:954.791250px;}
.y77{bottom:954.792750px;}
.y46{bottom:954.794250px;}
.y9c{bottom:954.795750px;}
.yfc{bottom:954.800250px;}
.y1aa{bottom:964.065450px;}
.y129{bottom:973.532250px;}
.ye1{bottom:973.542750px;}
.y76{bottom:973.544250px;}
.y45{bottom:973.545750px;}
.y9b{bottom:973.547250px;}
.yfb{bottom:973.551750px;}
.y1a9{bottom:980.565450px;}
.y28{bottom:982.473300px;}
.y128{bottom:992.283750px;}
.yc0{bottom:992.294250px;}
.y75{bottom:992.295750px;}
.y44{bottom:992.297250px;}
.y9a{bottom:992.298750px;}
.y1a8{bottom:997.065450px;}
.y127{bottom:1011.035250px;}
.ybf{bottom:1011.045750px;}
.y74{bottom:1011.047250px;}
.y43{bottom:1011.048750px;}
.y1a7{bottom:1013.565450px;}
.y2f{bottom:1021.700700px;}
.y99{bottom:1029.797250px;}
.y73{bottom:1029.798750px;}
.y42{bottom:1029.800250px;}
.y1a6{bottom:1030.065450px;}
.y2e{bottom:1043.300700px;}
.y1a5{bottom:1046.565450px;}
.y126{bottom:1048.538250px;}
.y98{bottom:1048.548750px;}
.y41{bottom:1048.551750px;}
.y1a4{bottom:1063.065450px;}
.y72{bottom:1067.265750px;}
.y125{bottom:1067.289750px;}
.y97{bottom:1067.300250px;}
.y24{bottom:1070.702250px;}
.y1a3{bottom:1079.565450px;}
.y27{bottom:1082.937000px;}
.y71{bottom:1086.017250px;}
.y124{bottom:1086.041250px;}
.y40{bottom:1086.051750px;}
.y1a2{bottom:1096.065450px;}
.y26{bottom:1097.937000px;}
.y23{bottom:1103.102250px;}
.y25{bottom:1112.937000px;}
.y22{bottom:1135.502250px;}
.he{height:30.428156px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.hc{height:35.616000px;}
.hb{height:36.336000px;}
.hd{height:37.652344px;}
.h4{height:39.339844px;}
.hf{height:39.385444px;}
.h15{height:42.317044px;}
.h19{height:42.498000px;}
.ha{height:43.031250px;}
.h8{height:44.520000px;}
.h16{height:45.537891px;}
.h1d{height:45.543891px;}
.h11{height:45.549891px;}
.h1b{height:45.561891px;}
.h18{height:45.573891px;}
.h12{height:45.579891px;}
.h1e{height:45.585891px;}
.h1a{height:45.597891px;}
.h17{height:45.609891px;}
.h1c{height:45.651891px;}
.h13{height:45.663891px;}
.h6{height:47.244141px;}
.h5{height:48.410156px;}
.h14{height:51.942000px;}
.h9{height:54.504000px;}
.h10{height:56.664000px;}
.h7{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x13{left:88.365900px;}
.x19{left:91.601850px;}
.x18{left:103.040400px;}
.x14{left:107.291400px;}
.x1f{left:112.039350px;}
.x1d{left:116.291250px;}
.x11{left:139.339200px;}
.xe{left:245.430600px;}
.x6{left:270.660900px;}
.x10{left:276.798600px;}
.xf{left:297.570600px;}
.x9{left:310.668900px;}
.xa{left:319.992900px;}
.xd{left:322.290600px;}
.x8{left:329.340900px;}
.x1a{left:346.721850px;}
.x7{left:356.676900px;}
.xb{left:445.886250px;}
.x17{left:451.325100px;}
.x12{left:455.592300px;}
.x1{left:469.770150px;}
.x15{left:474.099900px;}
.x1c{left:487.837950px;}
.x16{left:492.093150px;}
.x20{left:496.843350px;}
.x1e{left:501.094500px;}
.x3{left:502.788300px;}
.x4{left:522.066300px;}
.x5{left:557.598300px;}
.x1b{left:589.085850px;}
.xc{left:624.734250px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls17{letter-spacing:-4.224000pt;}
.ls26{letter-spacing:-3.797333pt;}
.ls1e{letter-spacing:-3.370667pt;}
.ls29{letter-spacing:-2.474667pt;}
.ls15{letter-spacing:-2.346667pt;}
.ls21{letter-spacing:-1.877333pt;}
.ls24{letter-spacing:-1.834667pt;}
.ls1f{letter-spacing:-1.621333pt;}
.lsd{letter-spacing:-1.408000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls28{letter-spacing:-1.237333pt;}
.ls2c{letter-spacing:-1.194667pt;}
.ls1a{letter-spacing:-0.981333pt;}
.ls25{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.725333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.469333pt;}
.lsb{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.400000pt;}
.ls2d{letter-spacing:-0.298667pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.168000pt;}
.lsc{letter-spacing:-0.117333pt;}
.lse{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.005333pt;}
.ls1c{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.085333pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.469333pt;}
.ls12{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.554667pt;}
.ls23{letter-spacing:0.597333pt;}
.ls16{letter-spacing:0.810667pt;}
.ls20{letter-spacing:0.853333pt;}
.ls1{letter-spacing:1.194667pt;}
.ls27{letter-spacing:1.365333pt;}
.ls5{letter-spacing:244.850133pt;}
.ws2f{word-spacing:-13.344000pt;}
.wsad{word-spacing:-12.714667pt;}
.wsaf{word-spacing:-12.458667pt;}
.wsb0{word-spacing:-12.416000pt;}
.wsa9{word-spacing:-12.373333pt;}
.wsa8{word-spacing:-12.288000pt;}
.wsae{word-spacing:-11.989333pt;}
.wsa7{word-spacing:-11.946667pt;}
.wsa6{word-spacing:-11.861333pt;}
.wsab{word-spacing:-11.605333pt;}
.wsac{word-spacing:-11.136000pt;}
.wsaa{word-spacing:-9.514667pt;}
.ws1{word-spacing:-9.340800pt;}
.wsb2{word-spacing:-3.696000pt;}
.ws4f{word-spacing:-3.504000pt;}
.ws5a{word-spacing:-2.640000pt;}
.ws9a{word-spacing:-2.592000pt;}
.wse6{word-spacing:-2.560000pt;}
.ws16{word-spacing:-2.544000pt;}
.wscd{word-spacing:-2.474667pt;}
.ws93{word-spacing:-2.400000pt;}
.ws56{word-spacing:-2.352000pt;}
.ws91{word-spacing:-2.256000pt;}
.wsa4{word-spacing:-2.160000pt;}
.ws59{word-spacing:-2.112000pt;}
.ws8c{word-spacing:-2.016000pt;}
.wse4{word-spacing:-1.962667pt;}
.wsdf{word-spacing:-1.920000pt;}
.ws9e{word-spacing:-1.872000pt;}
.ws8d{word-spacing:-1.834667pt;}
.ws65{word-spacing:-1.776000pt;}
.ws35{word-spacing:-1.728000pt;}
.wscb{word-spacing:-1.706667pt;}
.wsa{word-spacing:-1.632000pt;}
.ws2b{word-spacing:-1.584000pt;}
.wsa0{word-spacing:-1.536000pt;}
.ws19{word-spacing:-1.440000pt;}
.wsdc{word-spacing:-1.365333pt;}
.ws17{word-spacing:-1.296000pt;}
.ws7e{word-spacing:-1.248000pt;}
.ws62{word-spacing:-1.200000pt;}
.ws3c{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.104000pt;}
.ws1d{word-spacing:-1.008000pt;}
.ws73{word-spacing:-0.960000pt;}
.ws23{word-spacing:-0.864000pt;}
.ws61{word-spacing:-0.816000pt;}
.wsc3{word-spacing:-0.810667pt;}
.ws82{word-spacing:-0.725333pt;}
.ws7{word-spacing:-0.720000pt;}
.wsd2{word-spacing:-0.640000pt;}
.ws63{word-spacing:-0.624000pt;}
.wsc2{word-spacing:-0.554667pt;}
.wsbe{word-spacing:-0.512000pt;}
.ws6b{word-spacing:-0.480000pt;}
.wsbb{word-spacing:-0.469333pt;}
.ws90{word-spacing:-0.432000pt;}
.ws2d{word-spacing:-0.426667pt;}
.wsc7{word-spacing:-0.384000pt;}
.ws36{word-spacing:-0.336000pt;}
.ws92{word-spacing:-0.240000pt;}
.ws31{word-spacing:-0.192000pt;}
.wsbc{word-spacing:-0.128000pt;}
.wsc9{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.042667pt;}
.ws7d{word-spacing:0.048000pt;}
.wsa5{word-spacing:0.058667pt;}
.wsb9{word-spacing:0.085333pt;}
.ws9f{word-spacing:0.168000pt;}
.ws76{word-spacing:0.192000pt;}
.wsc5{word-spacing:0.213333pt;}
.ws30{word-spacing:0.240000pt;}
.ws68{word-spacing:0.288000pt;}
.wse7{word-spacing:0.298667pt;}
.ws7a{word-spacing:0.336000pt;}
.ws5e{word-spacing:0.384000pt;}
.wsb5{word-spacing:0.400000pt;}
.wsb7{word-spacing:0.426667pt;}
.ws11{word-spacing:0.432000pt;}
.wse0{word-spacing:0.469333pt;}
.ws66{word-spacing:0.480000pt;}
.wse5{word-spacing:0.512000pt;}
.wsd3{word-spacing:0.554667pt;}
.ws2a{word-spacing:0.576000pt;}
.wsc1{word-spacing:0.597333pt;}
.wsbf{word-spacing:0.640000pt;}
.wsd1{word-spacing:0.682667pt;}
.ws78{word-spacing:0.720000pt;}
.wsd5{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.810667pt;}
.ws58{word-spacing:0.816000pt;}
.ws8{word-spacing:0.912000pt;}
.wsd6{word-spacing:0.938667pt;}
.wsc6{word-spacing:0.981333pt;}
.wsb{word-spacing:1.008000pt;}
.ws38{word-spacing:1.056000pt;}
.ws10{word-spacing:1.104000pt;}
.ws12{word-spacing:1.200000pt;}
.wsdd{word-spacing:1.237333pt;}
.ws5c{word-spacing:1.248000pt;}
.wsd0{word-spacing:1.280000pt;}
.ws53{word-spacing:1.344000pt;}
.ws85{word-spacing:1.392000pt;}
.wsb8{word-spacing:1.408000pt;}
.ws8a{word-spacing:1.488000pt;}
.ws7f{word-spacing:1.536000pt;}
.wscc{word-spacing:1.621333pt;}
.ws99{word-spacing:1.632000pt;}
.ws81{word-spacing:1.706667pt;}
.ws57{word-spacing:1.728000pt;}
.ws51{word-spacing:1.824000pt;}
.wsd4{word-spacing:1.834667pt;}
.ws25{word-spacing:1.872000pt;}
.wsce{word-spacing:1.877333pt;}
.ws4a{word-spacing:1.920000pt;}
.ws18{word-spacing:1.968000pt;}
.wsd8{word-spacing:2.048000pt;}
.ws49{word-spacing:2.112000pt;}
.wsdb{word-spacing:2.133333pt;}
.ws3a{word-spacing:2.160000pt;}
.wse1{word-spacing:2.346667pt;}
.ws39{word-spacing:2.352000pt;}
.ws8e{word-spacing:2.400000pt;}
.ws33{word-spacing:2.448000pt;}
.wsde{word-spacing:2.474667pt;}
.ws1c{word-spacing:2.592000pt;}
.ws32{word-spacing:2.688000pt;}
.wse{word-spacing:2.736000pt;}
.ws13{word-spacing:2.784000pt;}
.ws20{word-spacing:2.880000pt;}
.ws42{word-spacing:2.976000pt;}
.ws83{word-spacing:3.024000pt;}
.ws52{word-spacing:3.168000pt;}
.ws5d{word-spacing:3.216000pt;}
.ws46{word-spacing:3.264000pt;}
.wsc{word-spacing:3.312000pt;}
.ws21{word-spacing:3.360000pt;}
.wsca{word-spacing:3.370667pt;}
.ws84{word-spacing:3.408000pt;}
.ws1b{word-spacing:3.456000pt;}
.wsbd{word-spacing:3.541333pt;}
.wsc4{word-spacing:3.584000pt;}
.ws14{word-spacing:3.600000pt;}
.ws86{word-spacing:3.648000pt;}
.ws22{word-spacing:3.696000pt;}
.wsd7{word-spacing:3.797333pt;}
.ws80{word-spacing:3.840000pt;}
.ws64{word-spacing:3.888000pt;}
.ws69{word-spacing:3.930667pt;}
.wsd{word-spacing:4.032000pt;}
.ws54{word-spacing:4.080000pt;}
.ws89{word-spacing:4.176000pt;}
.ws9{word-spacing:4.224000pt;}
.wsa1{word-spacing:4.272000pt;}
.ws77{word-spacing:4.368000pt;}
.wsb4{word-spacing:4.464000pt;}
.ws3b{word-spacing:4.512000pt;}
.ws88{word-spacing:4.560000pt;}
.ws94{word-spacing:4.704000pt;}
.ws8f{word-spacing:4.800000pt;}
.ws72{word-spacing:4.848000pt;}
.ws24{word-spacing:5.040000pt;}
.wsb6{word-spacing:5.077333pt;}
.ws1e{word-spacing:5.136000pt;}
.ws71{word-spacing:5.184000pt;}
.ws1a{word-spacing:5.376000pt;}
.ws55{word-spacing:5.424000pt;}
.ws44{word-spacing:5.616000pt;}
.ws48{word-spacing:5.664000pt;}
.ws47{word-spacing:5.712000pt;}
.ws79{word-spacing:5.760000pt;}
.ws29{word-spacing:5.856000pt;}
.ws45{word-spacing:5.952000pt;}
.ws34{word-spacing:6.048000pt;}
.ws4c{word-spacing:6.144000pt;}
.ws75{word-spacing:6.288000pt;}
.ws27{word-spacing:6.336000pt;}
.ws15{word-spacing:6.384000pt;}
.wsb1{word-spacing:6.432000pt;}
.ws6a{word-spacing:6.528000pt;}
.ws5b{word-spacing:6.672000pt;}
.ws2e{word-spacing:6.698667pt;}
.ws6{word-spacing:6.720000pt;}
.ws4e{word-spacing:6.864000pt;}
.ws95{word-spacing:6.912000pt;}
.wsa3{word-spacing:7.008000pt;}
.ws3d{word-spacing:7.056000pt;}
.ws40{word-spacing:7.152000pt;}
.ws5f{word-spacing:7.344000pt;}
.ws4b{word-spacing:7.440000pt;}
.ws41{word-spacing:7.488000pt;}
.ws3e{word-spacing:7.632000pt;}
.ws96{word-spacing:7.680000pt;}
.ws5{word-spacing:7.728000pt;}
.ws9d{word-spacing:7.776000pt;}
.ws6c{word-spacing:7.824000pt;}
.ws1f{word-spacing:7.920000pt;}
.wsba{word-spacing:7.936000pt;}
.ws37{word-spacing:8.064000pt;}
.ws4d{word-spacing:8.688000pt;}
.ws43{word-spacing:8.784000pt;}
.ws60{word-spacing:8.880000pt;}
.ws98{word-spacing:8.928000pt;}
.ws6e{word-spacing:8.976000pt;}
.ws74{word-spacing:9.072000pt;}
.wse3{word-spacing:9.088000pt;}
.wsb3{word-spacing:9.216000pt;}
.ws7b{word-spacing:9.696000pt;}
.wsda{word-spacing:10.069333pt;}
.wsd9{word-spacing:10.154667pt;}
.ws3f{word-spacing:10.368000pt;}
.ws70{word-spacing:10.464000pt;}
.ws28{word-spacing:10.560000pt;}
.wse2{word-spacing:11.050667pt;}
.wsa2{word-spacing:11.616000pt;}
.ws7c{word-spacing:12.240000pt;}
.wsc8{word-spacing:12.373333pt;}
.ws6f{word-spacing:12.528000pt;}
.ws9b{word-spacing:12.720000pt;}
.ws97{word-spacing:13.008000pt;}
.ws9c{word-spacing:13.344000pt;}
.ws87{word-spacing:13.392000pt;}
.ws67{word-spacing:13.440000pt;}
.ws6d{word-spacing:13.632000pt;}
.ws4{word-spacing:14.496000pt;}
.wscf{word-spacing:15.360000pt;}
.ws26{word-spacing:16.368000pt;}
.ws8b{word-spacing:18.288000pt;}
.ws50{word-spacing:21.941333pt;}
.ws2{word-spacing:93.738667pt;}
.ws0{word-spacing:1104.048000pt;}
._7{margin-left:-25.531200pt;}
._8{margin-left:-16.894400pt;}
._4{margin-left:-6.182400pt;}
._17{margin-left:-4.929600pt;}
._2{margin-left:-3.993600pt;}
._0{margin-left:-2.601600pt;}
._1{margin-left:-1.339200pt;}
._e{width:1.041600pt;}
._5{width:1.968000pt;}
._c{width:2.885333pt;}
._6{width:3.854400pt;}
._3{width:5.073600pt;}
._a{width:6.664533pt;}
._d{width:8.376000pt;}
._16{width:9.638400pt;}
._9{width:10.656000pt;}
._18{width:11.971200pt;}
._1d{width:12.929067pt;}
._1b{width:15.401600pt;}
._19{width:17.419200pt;}
._1e{width:19.148267pt;}
._1f{width:20.102400pt;}
._22{width:22.888000pt;}
._21{width:24.084267pt;}
._25{width:25.052800pt;}
._23{width:26.734400pt;}
._24{width:30.048000pt;}
._26{width:31.328000pt;}
._1c{width:49.408000pt;}
._1a{width:50.329067pt;}
._20{width:53.148267pt;}
._11{width:319.701333pt;}
._10{width:353.066667pt;}
._13{width:361.045333pt;}
._14{width:368.170667pt;}
._15{width:380.032000pt;}
._12{width:565.333333pt;}
._f{width:838.604267pt;}
._b{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:15.379333pt;}
.y3e{bottom:41.748933pt;}
.y3f{bottom:41.927067pt;}
.y96{bottom:41.930400pt;}
.y95{bottom:42.592000pt;}
.y34{bottom:52.510800pt;}
.y38{bottom:52.617467pt;}
.y33{bottom:68.510800pt;}
.y37{bottom:68.617467pt;}
.y1a1{bottom:73.114400pt;}
.y17c{bottom:73.182133pt;}
.yee{bottom:78.280400pt;}
.yfa{bottom:79.619067pt;}
.y70{bottom:82.016667pt;}
.y94{bottom:82.018000pt;}
.y14f{bottom:82.036667pt;}
.y123{bottom:82.038000pt;}
.y32{bottom:84.510800pt;}
.y36{bottom:84.617467pt;}
.ybe{bottom:86.317733pt;}
.y1a0{bottom:87.781067pt;}
.y17b{bottom:87.848800pt;}
.yed{bottom:92.947067pt;}
.yf9{bottom:94.285733pt;}
.y6f{bottom:98.684667pt;}
.y122{bottom:98.706000pt;}
.y31{bottom:100.510800pt;}
.y35{bottom:100.617467pt;}
.ybd{bottom:100.984400pt;}
.y19f{bottom:102.447733pt;}
.y17a{bottom:102.515467pt;}
.yec{bottom:107.613733pt;}
.y6e{bottom:115.352667pt;}
.y93{bottom:115.354000pt;}
.y14e{bottom:115.372667pt;}
.y121{bottom:115.374000pt;}
.ybc{bottom:115.651067pt;}
.y19e{bottom:117.114400pt;}
.y179{bottom:117.182133pt;}
.y19d{bottom:131.781067pt;}
.y178{bottom:131.848800pt;}
.y92{bottom:132.022000pt;}
.y14d{bottom:132.040667pt;}
.y120{bottom:132.042000pt;}
.ybb{bottom:134.083067pt;}
.y29{bottom:141.664933pt;}
.y19c{bottom:146.447733pt;}
.y177{bottom:146.515467pt;}
.y6d{bottom:148.688667pt;}
.y91{bottom:148.690000pt;}
.y14c{bottom:148.708667pt;}
.y11f{bottom:148.710000pt;}
.yba{bottom:148.749733pt;}
.y19b{bottom:161.114400pt;}
.y176{bottom:161.182133pt;}
.y6c{bottom:165.356667pt;}
.y90{bottom:165.358000pt;}
.y14b{bottom:165.376667pt;}
.yb9{bottom:167.181733pt;}
.y19a{bottom:175.781067pt;}
.y175{bottom:175.848800pt;}
.y6b{bottom:182.024667pt;}
.y8f{bottom:182.026000pt;}
.y14a{bottom:182.044667pt;}
.y11e{bottom:182.046000pt;}
.yb8{bottom:185.613733pt;}
.y199{bottom:190.447733pt;}
.y174{bottom:190.515467pt;}
.y2d{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.y6a{bottom:198.692667pt;}
.y149{bottom:198.712667pt;}
.y198{bottom:205.114400pt;}
.y173{bottom:205.182133pt;}
.y2c{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y69{bottom:215.360667pt;}
.y8e{bottom:215.362000pt;}
.y197{bottom:219.781067pt;}
.y172{bottom:219.848800pt;}
.y2b{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y68{bottom:232.028667pt;}
.y8d{bottom:232.030000pt;}
.y11d{bottom:232.031333pt;}
.yb7{bottom:232.040667pt;}
.y148{bottom:232.046000pt;}
.y196{bottom:234.447733pt;}
.y171{bottom:234.515467pt;}
.y2a{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y67{bottom:248.696667pt;}
.y8c{bottom:248.698000pt;}
.y11c{bottom:248.699333pt;}
.yb6{bottom:248.708667pt;}
.y195{bottom:249.114400pt;}
.y170{bottom:249.182133pt;}
.y194{bottom:263.781067pt;}
.y16f{bottom:263.848800pt;}
.y8b{bottom:265.366000pt;}
.y11b{bottom:265.367333pt;}
.yb5{bottom:265.376667pt;}
.y193{bottom:278.447733pt;}
.y16e{bottom:278.515467pt;}
.y66{bottom:282.032667pt;}
.y8a{bottom:282.034000pt;}
.y11a{bottom:282.035333pt;}
.y147{bottom:282.043333pt;}
.yb4{bottom:282.044667pt;}
.y30{bottom:289.309733pt;}
.y192{bottom:293.114400pt;}
.y16d{bottom:293.182133pt;}
.y65{bottom:298.700667pt;}
.y89{bottom:298.702000pt;}
.y119{bottom:298.703333pt;}
.ye0{bottom:298.707333pt;}
.y146{bottom:298.711333pt;}
.yb3{bottom:298.712667pt;}
.y191{bottom:307.781067pt;}
.y16c{bottom:307.848800pt;}
.y64{bottom:315.368667pt;}
.y88{bottom:315.370000pt;}
.y118{bottom:315.371333pt;}
.ydf{bottom:315.375333pt;}
.y145{bottom:315.379333pt;}
.y190{bottom:322.447733pt;}
.y16b{bottom:322.515467pt;}
.y63{bottom:332.036667pt;}
.y87{bottom:332.038000pt;}
.y117{bottom:332.039333pt;}
.yde{bottom:332.043333pt;}
.yb2{bottom:332.051333pt;}
.y18f{bottom:337.114400pt;}
.y16a{bottom:337.182133pt;}
.y144{bottom:348.695333pt;}
.y62{bottom:348.704667pt;}
.y116{bottom:348.707333pt;}
.ydd{bottom:348.711333pt;}
.yb1{bottom:348.712667pt;}
.y18e{bottom:351.781067pt;}
.y169{bottom:351.848800pt;}
.yf8{bottom:357.613733pt;}
.y143{bottom:365.363333pt;}
.y61{bottom:365.372667pt;}
.y86{bottom:365.374000pt;}
.y115{bottom:365.375333pt;}
.ydc{bottom:365.379333pt;}
.y3d{bottom:365.976800pt;}
.y18d{bottom:366.447733pt;}
.y168{bottom:366.515467pt;}
.yeb{bottom:374.280400pt;}
.y18c{bottom:381.114400pt;}
.y167{bottom:381.182133pt;}
.y142{bottom:382.031333pt;}
.y60{bottom:382.040667pt;}
.y85{bottom:382.042000pt;}
.y114{bottom:382.043333pt;}
.y3c{bottom:383.304800pt;}
.y3b{bottom:392.643467pt;}
.y18b{bottom:395.781067pt;}
.y166{bottom:395.848800pt;}
.ydb{bottom:398.667333pt;}
.y141{bottom:398.699333pt;}
.yf7{bottom:398.700667pt;}
.y5f{bottom:398.708667pt;}
.y84{bottom:398.710000pt;}
.y113{bottom:398.711333pt;}
.y3a{bottom:409.971467pt;}
.y18a{bottom:410.447733pt;}
.y165{bottom:410.515467pt;}
.yda{bottom:415.335333pt;}
.y140{bottom:415.367333pt;}
.yf6{bottom:415.368667pt;}
.yea{bottom:415.372667pt;}
.y5e{bottom:415.376667pt;}
.y83{bottom:415.378000pt;}
.y112{bottom:415.379333pt;}
.y189{bottom:425.114400pt;}
.y164{bottom:425.182133pt;}
.yd9{bottom:432.003333pt;}
.y13f{bottom:432.035333pt;}
.yf5{bottom:432.036667pt;}
.ye9{bottom:432.040667pt;}
.y5d{bottom:432.044667pt;}
.y82{bottom:432.046000pt;}
.y188{bottom:439.781067pt;}
.y163{bottom:439.848800pt;}
.y20{bottom:443.345733pt;}
.yd8{bottom:448.671333pt;}
.y111{bottom:448.695333pt;}
.y13e{bottom:448.703333pt;}
.yf4{bottom:448.704667pt;}
.ye8{bottom:448.708667pt;}
.y5c{bottom:448.712667pt;}
.y187{bottom:454.447733pt;}
.y162{bottom:454.515467pt;}
.y1f{bottom:456.677733pt;}
.yd7{bottom:465.339333pt;}
.y110{bottom:465.363333pt;}
.y13d{bottom:465.371333pt;}
.yf3{bottom:465.372667pt;}
.ye7{bottom:465.376667pt;}
.y81{bottom:465.384667pt;}
.y186{bottom:469.114400pt;}
.y161{bottom:469.182133pt;}
.y1e{bottom:470.009733pt;}
.yd6{bottom:482.007333pt;}
.y10f{bottom:482.031333pt;}
.y5b{bottom:482.032667pt;}
.yb0{bottom:482.034000pt;}
.y13c{bottom:482.039333pt;}
.yf2{bottom:482.040667pt;}
.ye6{bottom:482.044667pt;}
.y80{bottom:482.046000pt;}
.y1d{bottom:483.341733pt;}
.y185{bottom:483.781067pt;}
.y160{bottom:483.848800pt;}
.y1c{bottom:496.673733pt;}
.y184{bottom:498.447733pt;}
.y15f{bottom:498.515467pt;}
.y10e{bottom:498.699333pt;}
.y5a{bottom:498.700667pt;}
.yaf{bottom:498.702000pt;}
.y13b{bottom:498.707333pt;}
.yf1{bottom:498.708667pt;}
.ye5{bottom:498.712667pt;}
.y1b{bottom:510.005733pt;}
.y183{bottom:513.114400pt;}
.y15e{bottom:513.182133pt;}
.yd5{bottom:515.343333pt;}
.y10d{bottom:515.367333pt;}
.y59{bottom:515.368667pt;}
.yae{bottom:515.370000pt;}
.y13a{bottom:515.375333pt;}
.y1a{bottom:523.337733pt;}
.y182{bottom:527.781067pt;}
.y15d{bottom:527.848800pt;}
.yd4{bottom:532.011333pt;}
.y10c{bottom:532.035333pt;}
.y58{bottom:532.036667pt;}
.yad{bottom:532.038000pt;}
.y139{bottom:532.043333pt;}
.yf0{bottom:532.044667pt;}
.y19{bottom:536.669733pt;}
.y181{bottom:542.447733pt;}
.y15c{bottom:542.515467pt;}
.yd3{bottom:548.679333pt;}
.y10b{bottom:548.703333pt;}
.y57{bottom:548.704667pt;}
.yef{bottom:548.712667pt;}
.y18{bottom:550.001733pt;}
.y180{bottom:557.114400pt;}
.y15b{bottom:557.182133pt;}
.y17{bottom:563.333733pt;}
.yd2{bottom:565.347333pt;}
.y10a{bottom:565.371333pt;}
.y56{bottom:565.372667pt;}
.yac{bottom:565.374000pt;}
.y138{bottom:565.379333pt;}
.y17f{bottom:571.781067pt;}
.y15a{bottom:571.848800pt;}
.y16{bottom:576.665733pt;}
.yd1{bottom:582.015333pt;}
.y109{bottom:582.039333pt;}
.y55{bottom:582.040667pt;}
.yab{bottom:582.042000pt;}
.y17e{bottom:586.447733pt;}
.y15{bottom:589.997733pt;}
.yd0{bottom:598.683333pt;}
.y108{bottom:598.707333pt;}
.y54{bottom:598.708667pt;}
.yaa{bottom:598.710000pt;}
.y17d{bottom:601.114400pt;}
.y159{bottom:601.182133pt;}
.y14{bottom:603.329733pt;}
.ycf{bottom:615.351333pt;}
.y137{bottom:615.364667pt;}
.y107{bottom:615.375333pt;}
.y53{bottom:615.376667pt;}
.ya9{bottom:615.378000pt;}
.y13{bottom:616.661733pt;}
.y12{bottom:629.993733pt;}
.yce{bottom:632.019333pt;}
.y136{bottom:632.032667pt;}
.y106{bottom:632.043333pt;}
.y52{bottom:632.044667pt;}
.ya8{bottom:632.046000pt;}
.y11{bottom:643.325733pt;}
.ycd{bottom:648.687333pt;}
.y135{bottom:648.700667pt;}
.y51{bottom:648.712667pt;}
.y10{bottom:656.657733pt;}
.ycc{bottom:665.355333pt;}
.ya7{bottom:665.359333pt;}
.y134{bottom:665.368667pt;}
.y105{bottom:665.379333pt;}
.yf{bottom:669.989733pt;}
.y158{bottom:673.153600pt;}
.ycb{bottom:682.023333pt;}
.ya6{bottom:682.027333pt;}
.y50{bottom:682.032667pt;}
.y133{bottom:682.036667pt;}
.ye4{bottom:682.043333pt;}
.y7f{bottom:682.046000pt;}
.ye{bottom:683.321733pt;}
.y157{bottom:687.820267pt;}
.yd{bottom:696.653733pt;}
.yca{bottom:698.691333pt;}
.ya5{bottom:698.695333pt;}
.y4f{bottom:698.700667pt;}
.y132{bottom:698.704667pt;}
.ye3{bottom:698.711333pt;}
.y156{bottom:702.486933pt;}
.yc{bottom:709.985733pt;}
.yc9{bottom:715.359333pt;}
.ya4{bottom:715.363333pt;}
.y104{bottom:715.367333pt;}
.y4e{bottom:715.368667pt;}
.y131{bottom:715.372667pt;}
.ye2{bottom:715.379333pt;}
.y155{bottom:717.153600pt;}
.yb{bottom:723.317733pt;}
.yc8{bottom:732.027333pt;}
.y7e{bottom:732.028667pt;}
.ya3{bottom:732.031333pt;}
.y103{bottom:732.035333pt;}
.y4d{bottom:732.036667pt;}
.y130{bottom:732.040667pt;}
.ya{bottom:736.649733pt;}
.y1b2{bottom:739.613733pt;}
.yc7{bottom:748.695333pt;}
.y7d{bottom:748.696667pt;}
.ya2{bottom:748.699333pt;}
.y102{bottom:748.703333pt;}
.y4c{bottom:748.704667pt;}
.y12f{bottom:748.708667pt;}
.y9{bottom:749.981733pt;}
.y1b1{bottom:754.280400pt;}
.y8{bottom:763.313733pt;}
.yc6{bottom:765.363333pt;}
.y7c{bottom:765.364667pt;}
.ya1{bottom:765.367333pt;}
.y101{bottom:765.371333pt;}
.y4b{bottom:765.372667pt;}
.y154{bottom:765.374000pt;}
.y12e{bottom:765.376667pt;}
.y1b0{bottom:768.947067pt;}
.y7{bottom:776.645733pt;}
.yc5{bottom:782.031333pt;}
.y7b{bottom:782.032667pt;}
.ya0{bottom:782.035333pt;}
.y100{bottom:782.039333pt;}
.y4a{bottom:782.040667pt;}
.y153{bottom:782.042000pt;}
.y12d{bottom:782.044667pt;}
.y1af{bottom:783.613733pt;}
.y6{bottom:789.977733pt;}
.y1ae{bottom:798.280400pt;}
.yc4{bottom:798.699333pt;}
.y7a{bottom:798.700667pt;}
.y9f{bottom:798.703333pt;}
.yff{bottom:798.707333pt;}
.y49{bottom:798.708667pt;}
.y152{bottom:798.710000pt;}
.y12c{bottom:798.712667pt;}
.y5{bottom:803.309733pt;}
.y1ad{bottom:812.947067pt;}
.yc3{bottom:815.367333pt;}
.y79{bottom:815.368667pt;}
.y9e{bottom:815.371333pt;}
.yfe{bottom:815.375333pt;}
.y48{bottom:815.376667pt;}
.y151{bottom:815.378000pt;}
.y21{bottom:820.701600pt;}
.y1ac{bottom:827.613733pt;}
.y12b{bottom:832.026000pt;}
.yc2{bottom:832.035333pt;}
.y78{bottom:832.036667pt;}
.y9d{bottom:832.039333pt;}
.yfd{bottom:832.043333pt;}
.y47{bottom:832.044667pt;}
.y150{bottom:832.046000pt;}
.y1ab{bottom:842.280400pt;}
.y12a{bottom:848.694000pt;}
.yc1{bottom:848.703333pt;}
.y77{bottom:848.704667pt;}
.y46{bottom:848.706000pt;}
.y9c{bottom:848.707333pt;}
.yfc{bottom:848.711333pt;}
.y1aa{bottom:856.947067pt;}
.y129{bottom:865.362000pt;}
.ye1{bottom:865.371333pt;}
.y76{bottom:865.372667pt;}
.y45{bottom:865.374000pt;}
.y9b{bottom:865.375333pt;}
.yfb{bottom:865.379333pt;}
.y1a9{bottom:871.613733pt;}
.y28{bottom:873.309600pt;}
.y128{bottom:882.030000pt;}
.yc0{bottom:882.039333pt;}
.y75{bottom:882.040667pt;}
.y44{bottom:882.042000pt;}
.y9a{bottom:882.043333pt;}
.y1a8{bottom:886.280400pt;}
.y127{bottom:898.698000pt;}
.ybf{bottom:898.707333pt;}
.y74{bottom:898.708667pt;}
.y43{bottom:898.710000pt;}
.y1a7{bottom:900.947067pt;}
.y2f{bottom:908.178400pt;}
.y99{bottom:915.375333pt;}
.y73{bottom:915.376667pt;}
.y42{bottom:915.378000pt;}
.y1a6{bottom:915.613733pt;}
.y2e{bottom:927.378400pt;}
.y1a5{bottom:930.280400pt;}
.y126{bottom:932.034000pt;}
.y98{bottom:932.043333pt;}
.y41{bottom:932.046000pt;}
.y1a4{bottom:944.947067pt;}
.y72{bottom:948.680667pt;}
.y125{bottom:948.702000pt;}
.y97{bottom:948.711333pt;}
.y24{bottom:951.735333pt;}
.y1a3{bottom:959.613733pt;}
.y27{bottom:962.610667pt;}
.y71{bottom:965.348667pt;}
.y124{bottom:965.370000pt;}
.y40{bottom:965.379333pt;}
.y1a2{bottom:974.280400pt;}
.y26{bottom:975.944000pt;}
.y23{bottom:980.535333pt;}
.y25{bottom:989.277333pt;}
.y22{bottom:1009.335333pt;}
.he{height:27.047250pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.hc{height:31.658667pt;}
.hb{height:32.298667pt;}
.hd{height:33.468750pt;}
.h4{height:34.968750pt;}
.hf{height:35.009283pt;}
.h15{height:37.615150pt;}
.h19{height:37.776000pt;}
.ha{height:38.250000pt;}
.h8{height:39.573333pt;}
.h16{height:40.478125pt;}
.h1d{height:40.483458pt;}
.h11{height:40.488792pt;}
.h1b{height:40.499458pt;}
.h18{height:40.510125pt;}
.h12{height:40.515458pt;}
.h1e{height:40.520792pt;}
.h1a{height:40.531458pt;}
.h17{height:40.542125pt;}
.h1c{height:40.579458pt;}
.h13{height:40.590125pt;}
.h6{height:41.994792pt;}
.h5{height:43.031250pt;}
.h14{height:46.170667pt;}
.h9{height:48.448000pt;}
.h10{height:50.368000pt;}
.h7{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x13{left:78.547467pt;}
.x19{left:81.423867pt;}
.x18{left:91.591467pt;}
.x14{left:95.370133pt;}
.x1f{left:99.590533pt;}
.x1d{left:103.370000pt;}
.x11{left:123.857067pt;}
.xe{left:218.160533pt;}
.x6{left:240.587467pt;}
.x10{left:246.043200pt;}
.xf{left:264.507200pt;}
.x9{left:276.150133pt;}
.xa{left:284.438133pt;}
.xd{left:286.480533pt;}
.x8{left:292.747467pt;}
.x1a{left:308.197200pt;}
.x7{left:317.046133pt;}
.xb{left:396.343333pt;}
.x17{left:401.177867pt;}
.x12{left:404.970933pt;}
.x1{left:417.573467pt;}
.x15{left:421.422133pt;}
.x1c{left:433.633733pt;}
.x16{left:437.416133pt;}
.x20{left:441.638533pt;}
.x1e{left:445.417333pt;}
.x3{left:446.922933pt;}
.x4{left:464.058933pt;}
.x5{left:495.642933pt;}
.x1b{left:523.631867pt;}
.xc{left:555.319333pt;}
}




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