
    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_2dacbb694936ea911dbb0e8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_09e7810d3af0dcbf4925247f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_768f4ce40e80a072e5bf572a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_1293ba0cb5be280a168a04bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1515f8cf6cd112ac6825b92f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_c7119c075b5322f75f49b67d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.192871;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_673a80adcdf2477d3b136194.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_91bd6bf79ecdc9a0d554297a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_fd50c210b1cfd845e077b936.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.192871;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_ad3ea765b0535b50d352517e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913086;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_1aeb89b4347952933484f20c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_ec000c4353fcbf8feb485eb5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.103027;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:-23.976000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls9{letter-spacing:-10.008000px;}
.ls5{letter-spacing:-1.553112px;}
.ls1{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.294260px;}
.lsd{letter-spacing:-0.839520px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.419760px;}
.ls3{letter-spacing:-0.336000px;}
.ls2{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.009600px;}
.lsb{letter-spacing:0.016200px;}
.lsa{letter-spacing:0.060600px;}
.lsf{letter-spacing:12.744000px;}
.lsc{letter-spacing:22.536000px;}
.ls4{letter-spacing:25.600200px;}
.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;}
}
.ws3d{word-spacing:-18.000000px;}
.wsa1{word-spacing:-17.424000px;}
.ws60{word-spacing:-17.280000px;}
.ws76{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.000000px;}
.ws13{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.494000px;}
.wsa2{word-spacing:-10.158192px;}
.ws3c{word-spacing:-10.074240px;}
.ws77{word-spacing:-9.654480px;}
.ws6a{word-spacing:-9.288000px;}
.ws2d{word-spacing:-8.940888px;}
.ws5a{word-spacing:-8.712000px;}
.ws2e{word-spacing:-7.450740px;}
.wsb1{word-spacing:-6.912000px;}
.wsc{word-spacing:-5.760000px;}
.ws34{word-spacing:-5.544000px;}
.wsaa{word-spacing:-5.400000px;}
.ws67{word-spacing:-5.040000px;}
.ws47{word-spacing:-4.680000px;}
.ws16{word-spacing:-4.392000px;}
.ws5b{word-spacing:-4.320000px;}
.wsa3{word-spacing:-4.176000px;}
.ws4{word-spacing:-3.960000px;}
.ws27{word-spacing:-3.816000px;}
.wsac{word-spacing:-3.672000px;}
.ws63{word-spacing:-3.600000px;}
.ws91{word-spacing:-3.528000px;}
.ws7b{word-spacing:-3.456000px;}
.ws8{word-spacing:-3.420000px;}
.ws99{word-spacing:-3.384000px;}
.ws7{word-spacing:-3.360000px;}
.ws53{word-spacing:-3.300000px;}
.ws59{word-spacing:-3.240000px;}
.ws5c{word-spacing:-3.096000px;}
.wsa9{word-spacing:-3.024000px;}
.ws8e{word-spacing:-2.952000px;}
.ws90{word-spacing:-2.808000px;}
.wsb4{word-spacing:-2.760000px;}
.ws69{word-spacing:-2.736000px;}
.ws12{word-spacing:-2.592000px;}
.ws9f{word-spacing:-2.580000px;}
.ws97{word-spacing:-2.520000px;}
.ws64{word-spacing:-2.448000px;}
.ws56{word-spacing:-2.376000px;}
.ws11{word-spacing:-2.304000px;}
.ws2a{word-spacing:-2.280000px;}
.ws51{word-spacing:-2.160000px;}
.ws6e{word-spacing:-2.088000px;}
.ws7a{word-spacing:-2.016000px;}
.ws8c{word-spacing:-1.944000px;}
.ws71{word-spacing:-1.920000px;}
.ws38{word-spacing:-1.728000px;}
.ws93{word-spacing:-1.656000px;}
.ws7e{word-spacing:-1.584000px;}
.ws72{word-spacing:-1.560000px;}
.ws8d{word-spacing:-1.512000px;}
.ws39{word-spacing:-1.440000px;}
.wsbc{word-spacing:-1.200000px;}
.ws4e{word-spacing:-1.152000px;}
.ws4c{word-spacing:-1.080000px;}
.ws68{word-spacing:-0.792000px;}
.wsb3{word-spacing:-0.504000px;}
.wsae{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.240000px;}
.ws75{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.ws2c{word-spacing:0.060000px;}
.wsb0{word-spacing:0.072000px;}
.ws5e{word-spacing:0.144000px;}
.ws15{word-spacing:0.288000px;}
.ws6{word-spacing:0.300000px;}
.ws25{word-spacing:0.432000px;}
.wsb6{word-spacing:0.480000px;}
.ws9{word-spacing:0.600000px;}
.ws61{word-spacing:0.648000px;}
.ws84{word-spacing:0.660000px;}
.ws3f{word-spacing:0.720000px;}
.ws24{word-spacing:0.792000px;}
.ws6c{word-spacing:0.864000px;}
.ws80{word-spacing:1.008000px;}
.ws29{word-spacing:1.080000px;}
.ws74{word-spacing:1.200000px;}
.wsb2{word-spacing:1.224000px;}
.ws2{word-spacing:1.440000px;}
.ws95{word-spacing:1.584000px;}
.ws43{word-spacing:1.728000px;}
.ws73{word-spacing:1.920000px;}
.ws66{word-spacing:1.944000px;}
.ws65{word-spacing:2.016000px;}
.ws10{word-spacing:2.160000px;}
.ws9d{word-spacing:2.232000px;}
.ws8b{word-spacing:2.376000px;}
.ws6b{word-spacing:2.520000px;}
.ws20{word-spacing:2.592000px;}
.ws48{word-spacing:2.664000px;}
.ws7c{word-spacing:2.808000px;}
.ws9b{word-spacing:2.880000px;}
.ws55{word-spacing:2.952000px;}
.ws6f{word-spacing:3.096000px;}
.ws44{word-spacing:3.384000px;}
.ws28{word-spacing:3.456000px;}
.ws22{word-spacing:3.528000px;}
.ws89{word-spacing:3.600000px;}
.ws7f{word-spacing:3.672000px;}
.wsaf{word-spacing:3.816000px;}
.ws45{word-spacing:3.888000px;}
.ws88{word-spacing:4.032000px;}
.ws83{word-spacing:4.080000px;}
.ws8a{word-spacing:4.104000px;}
.wsd{word-spacing:4.176000px;}
.wse{word-spacing:4.248000px;}
.wsf{word-spacing:4.392000px;}
.ws19{word-spacing:4.464000px;}
.ws3{word-spacing:4.500000px;}
.wsa0{word-spacing:4.560000px;}
.ws9e{word-spacing:4.608000px;}
.ws18{word-spacing:4.752000px;}
.wsa4{word-spacing:4.824000px;}
.ws1f{word-spacing:4.956000px;}
.ws6d{word-spacing:4.968000px;}
.ws85{word-spacing:5.040000px;}
.ws81{word-spacing:5.112000px;}
.ws7d{word-spacing:5.184000px;}
.ws87{word-spacing:5.256000px;}
.ws32{word-spacing:5.328000px;}
.ws98{word-spacing:5.400000px;}
.ws42{word-spacing:5.544000px;}
.ws37{word-spacing:5.760000px;}
.ws33{word-spacing:5.976000px;}
.ws30{word-spacing:6.048000px;}
.ws79{word-spacing:6.120000px;}
.ws4d{word-spacing:6.192000px;}
.ws70{word-spacing:6.264000px;}
.ws3b{word-spacing:6.300000px;}
.ws4a{word-spacing:6.408000px;}
.ws8f{word-spacing:6.480000px;}
.ws92{word-spacing:6.552000px;}
.ws5d{word-spacing:6.624000px;}
.ws21{word-spacing:6.912000px;}
.ws96{word-spacing:6.984000px;}
.ws1b{word-spacing:7.056000px;}
.ws4b{word-spacing:7.128000px;}
.wsb7{word-spacing:7.320000px;}
.ws41{word-spacing:7.344000px;}
.ws35{word-spacing:7.416000px;}
.ws3a{word-spacing:7.680000px;}
.ws36{word-spacing:7.704000px;}
.ws57{word-spacing:7.776000px;}
.ws50{word-spacing:7.848000px;}
.ws9c{word-spacing:7.920000px;}
.ws5f{word-spacing:7.992000px;}
.wsb5{word-spacing:8.100000px;}
.ws3e{word-spacing:8.208000px;}
.ws49{word-spacing:8.424000px;}
.ws26{word-spacing:8.496000px;}
.ws23{word-spacing:8.640000px;}
.ws62{word-spacing:8.928000px;}
.ws1e{word-spacing:9.072000px;}
.ws1d{word-spacing:9.288000px;}
.wsb9{word-spacing:9.300000px;}
.ws52{word-spacing:9.432000px;}
.wsab{word-spacing:9.792000px;}
.ws4f{word-spacing:9.864000px;}
.wsa8{word-spacing:10.008000px;}
.ws2f{word-spacing:10.296000px;}
.ws46{word-spacing:10.440000px;}
.wsa5{word-spacing:10.944000px;}
.ws58{word-spacing:11.016000px;}
.ws1c{word-spacing:11.160000px;}
.ws1a{word-spacing:11.232000px;}
.ws78{word-spacing:11.304000px;}
.wsa7{word-spacing:11.520000px;}
.ws86{word-spacing:11.808000px;}
.ws31{word-spacing:12.168000px;}
.ws54{word-spacing:12.312000px;}
.wsb{word-spacing:12.816000px;}
.wsbb{word-spacing:13.080000px;}
.wsad{word-spacing:13.392000px;}
.wsb8{word-spacing:13.620000px;}
.ws17{word-spacing:13.968000px;}
.ws9a{word-spacing:14.256000px;}
.wsa6{word-spacing:14.688000px;}
.ws5{word-spacing:14.700000px;}
.wsba{word-spacing:15.720000px;}
.ws40{word-spacing:15.912000px;}
.wsa{word-spacing:16.848000px;}
.ws94{word-spacing:17.640000px;}
.ws82{word-spacing:22.536000px;}
._16{margin-left:-12.839400px;}
._4{margin-left:-9.288000px;}
._11{margin-left:-8.136000px;}
._6{margin-left:-6.756000px;}
._3{margin-left:-5.328000px;}
._0{margin-left:-3.960000px;}
._1{margin-left:-2.664000px;}
._5{margin-left:-1.296000px;}
._2{width:1.440000px;}
._7{width:2.880000px;}
._8{width:4.032000px;}
._9{width:5.184000px;}
._b{width:7.164000px;}
._c{width:8.676000px;}
._d{width:9.720000px;}
._10{width:11.016000px;}
._e{width:12.240000px;}
._13{width:13.392000px;}
._f{width:15.120000px;}
._19{width:17.640000px;}
._1b{width:19.440000px;}
._14{width:22.536000px;}
._12{width:24.306000px;}
._a{width:41.796600px;}
._18{width:166.105200px;}
._1a{width:279.196200px;}
._15{width:417.799200px;}
._17{width:566.632200px;}
.fc1{color:rgb(238,37,43);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:34.980000px;}
.fs2{font-size:41.976000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:60.705300px;}
.y2{bottom:62.033400px;}
.y2f{bottom:106.299150px;}
.y10b{bottom:106.299300px;}
.yaf{bottom:111.294150px;}
.y13e{bottom:111.294300px;}
.y2e{bottom:124.299150px;}
.y19f{bottom:124.299300px;}
.y13d{bottom:124.299450px;}
.y60{bottom:129.294150px;}
.y10a{bottom:129.294450px;}
.y2d{bottom:142.299150px;}
.y13c{bottom:142.299450px;}
.y8c{bottom:147.294150px;}
.y109{bottom:147.294600px;}
.y19e{bottom:148.224300px;}
.y1d7{bottom:156.135000px;}
.y8b{bottom:160.299150px;}
.y13b{bottom:160.299450px;}
.y108{bottom:160.299750px;}
.y2c{bottom:165.294150px;}
.y16c{bottom:165.294750px;}
.y19d{bottom:171.219300px;}
.y1d6{bottom:174.135000px;}
.y8a{bottom:178.299150px;}
.y5f{bottom:183.294150px;}
.y13a{bottom:183.294450px;}
.y107{bottom:183.294750px;}
.y16b{bottom:183.294900px;}
.y1d5{bottom:192.135000px;}
.y2b{bottom:196.202100px;}
.y89{bottom:196.299150px;}
.y139{bottom:196.299600px;}
.y106{bottom:196.299750px;}
.y5e{bottom:201.294150px;}
.y16a{bottom:201.295050px;}
.y1d4{bottom:210.135000px;}
.y5d{bottom:214.299150px;}
.y169{bottom:214.300200px;}
.y2a{bottom:217.208100px;}
.y88{bottom:219.294150px;}
.y138{bottom:219.294600px;}
.y105{bottom:219.294750px;}
.y1d3{bottom:228.135000px;}
.y19c{bottom:230.489550px;}
.yec{bottom:232.299150px;}
.y168{bottom:232.300200px;}
.y5c{bottom:237.294150px;}
.y137{bottom:237.294750px;}
.y29{bottom:238.214100px;}
.yae{bottom:241.006800px;}
.yd3{bottom:241.024950px;}
.y1d2{bottom:246.135000px;}
.y19b{bottom:248.489550px;}
.y87{bottom:250.299150px;}
.y136{bottom:250.299900px;}
.y104{bottom:253.723950px;}
.yeb{bottom:255.294150px;}
.y167{bottom:255.295200px;}
.y28{bottom:259.220100px;}
.yad{bottom:262.012800px;}
.yd2{bottom:262.030950px;}
.y1d1{bottom:264.135000px;}
.y19a{bottom:266.489550px;}
.y150{bottom:268.299150px;}
.y86{bottom:273.294150px;}
.y135{bottom:273.294900px;}
.y166{bottom:273.295350px;}
.y103{bottom:274.672950px;}
.y27{bottom:280.226100px;}
.y1d0{bottom:282.135000px;}
.y5b{bottom:283.012950px;}
.yac{bottom:283.018800px;}
.yd1{bottom:283.036950px;}
.y199{bottom:284.489550px;}
.y85{bottom:286.299150px;}
.y165{bottom:286.300500px;}
.y14f{bottom:291.294150px;}
.y134{bottom:291.295050px;}
.y1cf{bottom:300.135000px;}
.y26{bottom:301.232100px;}
.y198{bottom:302.489550px;}
.y102{bottom:303.994950px;}
.y5a{bottom:304.018950px;}
.yab{bottom:304.024800px;}
.yd0{bottom:304.042950px;}
.yea{bottom:304.299150px;}
.y164{bottom:304.300500px;}
.y84{bottom:309.294150px;}
.y1ce{bottom:318.135000px;}
.y197{bottom:320.489550px;}
.y25{bottom:322.238100px;}
.y101{bottom:325.000950px;}
.y59{bottom:325.024950px;}
.y133{bottom:325.025400px;}
.yaa{bottom:325.030800px;}
.ycf{bottom:325.048950px;}
.ye9{bottom:327.294150px;}
.y163{bottom:327.295500px;}
.y1cd{bottom:336.135000px;}
.y196{bottom:338.489550px;}
.y24{bottom:343.244100px;}
.y83{bottom:345.976950px;}
.y100{bottom:346.006950px;}
.yce{bottom:346.018950px;}
.y58{bottom:346.030950px;}
.y132{bottom:346.031400px;}
.ya9{bottom:346.036800px;}
.y1cc{bottom:354.135000px;}
.y195{bottom:356.489550px;}
.y162{bottom:357.742800px;}
.y23{bottom:364.250100px;}
.y82{bottom:366.982950px;}
.ye8{bottom:366.994950px;}
.yff{bottom:367.012950px;}
.y131{bottom:367.019400px;}
.ycd{bottom:367.024950px;}
.y57{bottom:367.036950px;}
.ya8{bottom:367.042800px;}
.y1cb{bottom:372.135000px;}
.y194{bottom:374.489550px;}
.y161{bottom:378.748800px;}
.y22{bottom:385.256100px;}
.y81{bottom:387.988950px;}
.ye7{bottom:388.000950px;}
.yfe{bottom:388.018950px;}
.y130{bottom:388.025400px;}
.ycc{bottom:388.030950px;}
.y56{bottom:388.042950px;}
.ya7{bottom:388.048800px;}
.y1ca{bottom:390.135000px;}
.y193{bottom:392.489550px;}
.y160{bottom:399.730800px;}
.y21{bottom:406.262100px;}
.y1c9{bottom:408.135000px;}
.ya6{bottom:408.952950px;}
.y80{bottom:408.994950px;}
.ye6{bottom:409.006950px;}
.yfd{bottom:409.024950px;}
.y12f{bottom:409.031400px;}
.ycb{bottom:409.036950px;}
.y55{bottom:409.048950px;}
.y192{bottom:410.489550px;}
.y15f{bottom:420.736800px;}
.y1c8{bottom:426.135000px;}
.y20{bottom:427.268100px;}
.y191{bottom:428.489550px;}
.ya5{bottom:429.958950px;}
.y7f{bottom:430.000950px;}
.y12e{bottom:430.001400px;}
.ye5{bottom:430.012950px;}
.yfc{bottom:430.030950px;}
.y54{bottom:430.036950px;}
.yca{bottom:430.042950px;}
.y15e{bottom:441.742800px;}
.y1c7{bottom:444.135000px;}
.y190{bottom:446.489550px;}
.y1f{bottom:448.238100px;}
.ya4{bottom:450.964950px;}
.y7e{bottom:451.006950px;}
.y12d{bottom:451.007400px;}
.ye4{bottom:451.018950px;}
.yfb{bottom:451.036950px;}
.y53{bottom:451.042950px;}
.yc9{bottom:451.048950px;}
.y1c6{bottom:462.135000px;}
.y15d{bottom:462.748800px;}
.y18f{bottom:464.489550px;}
.y1e{bottom:469.244100px;}
.ya3{bottom:471.970950px;}
.yc8{bottom:472.000950px;}
.y7d{bottom:472.012950px;}
.y12c{bottom:472.013400px;}
.ye3{bottom:472.024950px;}
.yfa{bottom:472.042950px;}
.y52{bottom:472.048950px;}
.y1c5{bottom:480.135000px;}
.y18e{bottom:482.489550px;}
.y15c{bottom:483.730800px;}
.y1d{bottom:490.250100px;}
.ya2{bottom:492.976950px;}
.y51{bottom:492.994950px;}
.yc7{bottom:493.006950px;}
.y7c{bottom:493.018950px;}
.y12b{bottom:493.019400px;}
.ye2{bottom:493.030950px;}
.yf9{bottom:493.048950px;}
.y1c4{bottom:498.135000px;}
.y18d{bottom:500.489550px;}
.y15b{bottom:504.736800px;}
.y1c{bottom:511.256100px;}
.yf8{bottom:513.976950px;}
.ya1{bottom:513.982950px;}
.y50{bottom:514.000950px;}
.yc6{bottom:514.012950px;}
.y7b{bottom:514.024950px;}
.y12a{bottom:514.025400px;}
.ye1{bottom:514.036950px;}
.y14e{bottom:514.048950px;}
.y1c3{bottom:516.135000px;}
.y18c{bottom:518.489550px;}
.y15a{bottom:525.742800px;}
.y1b{bottom:532.262100px;}
.y1c2{bottom:534.135000px;}
.yf7{bottom:534.982950px;}
.ya0{bottom:534.988950px;}
.y4f{bottom:535.006950px;}
.yc5{bottom:535.018950px;}
.y7a{bottom:535.030950px;}
.y129{bottom:535.031400px;}
.ye0{bottom:535.042950px;}
.y18b{bottom:536.489550px;}
.y159{bottom:546.748800px;}
.y1c1{bottom:552.135000px;}
.y1a{bottom:553.268100px;}
.y18a{bottom:554.489550px;}
.y128{bottom:555.947400px;}
.yf6{bottom:555.988950px;}
.y9f{bottom:555.994950px;}
.y4e{bottom:556.012950px;}
.yc4{bottom:556.024950px;}
.y79{bottom:556.036950px;}
.ydf{bottom:556.048950px;}
.y158{bottom:567.748800px;}
.y1c0{bottom:570.135000px;}
.y189{bottom:572.489550px;}
.y19{bottom:574.274100px;}
.y127{bottom:576.953400px;}
.yde{bottom:576.988950px;}
.yf5{bottom:576.994950px;}
.y9e{bottom:577.000950px;}
.y4d{bottom:577.018950px;}
.yc3{bottom:577.030950px;}
.y78{bottom:577.042950px;}
.y1bf{bottom:588.135000px;}
.y157{bottom:588.748800px;}
.y188{bottom:590.489550px;}
.y126{bottom:597.959400px;}
.ydd{bottom:597.994950px;}
.yf4{bottom:598.000950px;}
.y9d{bottom:598.006950px;}
.y4c{bottom:598.024950px;}
.yc2{bottom:598.036950px;}
.y77{bottom:598.048950px;}
.y1be{bottom:606.135000px;}
.y187{bottom:608.489550px;}
.y156{bottom:609.754800px;}
.y18{bottom:616.533900px;}
.y125{bottom:618.965400px;}
.ydc{bottom:619.000950px;}
.yf3{bottom:619.006950px;}
.y9c{bottom:619.012950px;}
.y76{bottom:619.024950px;}
.y4b{bottom:619.030950px;}
.y14d{bottom:619.036950px;}
.yc1{bottom:619.042950px;}
.y1bd{bottom:624.135000px;}
.y186{bottom:626.489550px;}
.y17{bottom:638.785950px;}
.y124{bottom:639.971400px;}
.ydb{bottom:640.006950px;}
.yf2{bottom:640.012950px;}
.y9b{bottom:640.018950px;}
.y75{bottom:640.030950px;}
.y4a{bottom:640.036950px;}
.y155{bottom:640.042800px;}
.y14c{bottom:640.042950px;}
.yc0{bottom:640.048950px;}
.y1bc{bottom:642.135000px;}
.y185{bottom:644.489550px;}
.y1bb{bottom:660.135000px;}
.y123{bottom:660.977400px;}
.ybf{bottom:661.012950px;}
.yf1{bottom:661.018950px;}
.y9a{bottom:661.024950px;}
.y74{bottom:661.036950px;}
.y49{bottom:661.042950px;}
.y154{bottom:661.048800px;}
.y14b{bottom:661.048950px;}
.y184{bottom:662.489550px;}
.y1ba{bottom:678.135000px;}
.y183{bottom:680.489550px;}
.y16{bottom:681.045750px;}
.y122{bottom:681.983400px;}
.ybe{bottom:682.018950px;}
.yf0{bottom:682.024950px;}
.y99{bottom:682.030950px;}
.y73{bottom:682.042950px;}
.y48{bottom:682.048950px;}
.y1b9{bottom:696.135000px;}
.y182{bottom:698.489550px;}
.y121{bottom:702.989400px;}
.y47{bottom:703.006950px;}
.ybd{bottom:703.024950px;}
.yef{bottom:703.030950px;}
.y98{bottom:703.036950px;}
.y72{bottom:703.048950px;}
.y15{bottom:703.297800px;}
.y1b8{bottom:714.135000px;}
.y181{bottom:716.489550px;}
.y120{bottom:723.995400px;}
.y46{bottom:724.012950px;}
.ybc{bottom:724.030950px;}
.y71{bottom:724.036950px;}
.y97{bottom:724.042950px;}
.y1b7{bottom:732.135000px;}
.y180{bottom:734.489550px;}
.y11f{bottom:745.001400px;}
.y45{bottom:745.018950px;}
.ybb{bottom:745.036950px;}
.y70{bottom:745.042950px;}
.y96{bottom:745.048950px;}
.y14{bottom:745.557600px;}
.y1b6{bottom:750.135000px;}
.y17f{bottom:752.489550px;}
.y13{bottom:763.557600px;}
.y11e{bottom:766.007400px;}
.y44{bottom:766.024950px;}
.y153{bottom:766.030950px;}
.y95{bottom:766.036950px;}
.yba{bottom:766.042950px;}
.y6f{bottom:766.048950px;}
.y1b5{bottom:768.135000px;}
.y17e{bottom:770.489550px;}
.y12{bottom:781.557600px;}
.y1b4{bottom:786.135000px;}
.y11d{bottom:787.013400px;}
.y43{bottom:787.030950px;}
.y6e{bottom:787.036950px;}
.y94{bottom:787.042950px;}
.yb9{bottom:787.048950px;}
.y17d{bottom:788.405400px;}
.y11{bottom:799.557600px;}
.y1b3{bottom:804.135000px;}
.y11c{bottom:808.019400px;}
.yb8{bottom:808.030950px;}
.y42{bottom:808.036950px;}
.y6d{bottom:808.042950px;}
.y93{bottom:808.048950px;}
.y10{bottom:817.557600px;}
.y1b2{bottom:822.135000px;}
.y17c{bottom:828.167400px;}
.y92{bottom:829.006950px;}
.y11b{bottom:829.025400px;}
.yb7{bottom:829.036950px;}
.y41{bottom:829.042950px;}
.y6c{bottom:829.048950px;}
.yf{bottom:839.809500px;}
.y1b1{bottom:840.135000px;}
.y17b{bottom:849.173400px;}
.y152{bottom:849.988950px;}
.y91{bottom:850.012950px;}
.y6b{bottom:850.030950px;}
.y11a{bottom:850.031400px;}
.yb6{bottom:850.042950px;}
.y40{bottom:850.048950px;}
.y1b0{bottom:858.135000px;}
.y17a{bottom:870.179400px;}
.yee{bottom:870.976950px;}
.y14a{bottom:870.988950px;}
.y3f{bottom:870.994950px;}
.y119{bottom:870.995400px;}
.yda{bottom:871.012950px;}
.y90{bottom:871.018950px;}
.y6a{bottom:871.036950px;}
.yb5{bottom:871.048950px;}
.y1af{bottom:876.135000px;}
.ye{bottom:882.069450px;}
.y179{bottom:891.185400px;}
.yed{bottom:891.982950px;}
.y149{bottom:891.994950px;}
.y3e{bottom:892.000950px;}
.y118{bottom:892.001400px;}
.yd9{bottom:892.018950px;}
.y8f{bottom:892.024950px;}
.y69{bottom:892.042950px;}
.yb4{bottom:892.054950px;}
.y1ae{bottom:894.135000px;}
.yd{bottom:900.069450px;}
.y1ad{bottom:912.135000px;}
.y178{bottom:912.191400px;}
.yb3{bottom:912.988950px;}
.y148{bottom:913.000950px;}
.y3d{bottom:913.006950px;}
.y117{bottom:913.007400px;}
.yd8{bottom:913.024950px;}
.y8e{bottom:913.030950px;}
.y68{bottom:913.048950px;}
.yc{bottom:918.069450px;}
.y1ac{bottom:930.135000px;}
.y177{bottom:933.197400px;}
.yb2{bottom:933.994950px;}
.y147{bottom:934.006950px;}
.y3c{bottom:934.012950px;}
.y116{bottom:934.013400px;}
.yd7{bottom:934.030950px;}
.y8d{bottom:934.036950px;}
.y67{bottom:934.054950px;}
.yb{bottom:936.069450px;}
.y1ab{bottom:948.135000px;}
.ya{bottom:954.069450px;}
.y176{bottom:954.203400px;}
.yb1{bottom:955.000950px;}
.y146{bottom:955.012950px;}
.y3b{bottom:955.018950px;}
.y115{bottom:955.019400px;}
.yd6{bottom:955.036950px;}
.y66{bottom:955.042950px;}
.y1aa{bottom:966.135000px;}
.y9{bottom:972.069450px;}
.y175{bottom:975.209400px;}
.yb0{bottom:976.006950px;}
.y145{bottom:976.018950px;}
.y3a{bottom:976.024950px;}
.y114{bottom:976.025400px;}
.yd5{bottom:976.042950px;}
.y65{bottom:976.048950px;}
.y1a9{bottom:984.135000px;}
.y8{bottom:994.321350px;}
.y174{bottom:996.215400px;}
.y64{bottom:997.012950px;}
.y144{bottom:997.024950px;}
.y39{bottom:997.030950px;}
.y113{bottom:997.031400px;}
.yd4{bottom:997.048950px;}
.y1a8{bottom:1002.135000px;}
.y173{bottom:1017.221400px;}
.y112{bottom:1018.001400px;}
.y63{bottom:1018.018950px;}
.y143{bottom:1018.030950px;}
.y38{bottom:1018.036950px;}
.y1a7{bottom:1020.135000px;}
.y1a6{bottom:1038.135000px;}
.y172{bottom:1038.227400px;}
.y111{bottom:1039.007400px;}
.y62{bottom:1039.024950px;}
.y142{bottom:1039.036950px;}
.y37{bottom:1039.042950px;}
.y7{bottom:1045.085100px;}
.y1a5{bottom:1056.135000px;}
.y171{bottom:1059.233400px;}
.y110{bottom:1060.013400px;}
.y61{bottom:1060.030950px;}
.y141{bottom:1060.042950px;}
.y36{bottom:1060.048950px;}
.y6{bottom:1063.085100px;}
.y1a4{bottom:1074.135000px;}
.y170{bottom:1080.239400px;}
.y10f{bottom:1081.019400px;}
.y35{bottom:1081.036950px;}
.y140{bottom:1081.048950px;}
.y151{bottom:1081.054950px;}
.y1a3{bottom:1092.135000px;}
.y16f{bottom:1101.233400px;}
.y10e{bottom:1102.025400px;}
.y34{bottom:1102.042950px;}
.y13f{bottom:1102.048950px;}
.y5{bottom:1102.333050px;}
.y1a2{bottom:1110.135000px;}
.y16e{bottom:1122.239400px;}
.y10d{bottom:1123.031400px;}
.y33{bottom:1123.048950px;}
.y4{bottom:1123.339050px;}
.y1a1{bottom:1128.135000px;}
.y16d{bottom:1143.245400px;}
.y10c{bottom:1144.037400px;}
.y32{bottom:1144.054950px;}
.y3{bottom:1144.345050px;}
.y1a0{bottom:1146.135000px;}
.y31{bottom:1185.023700px;}
.y30{bottom:1201.223700px;}
.ha{height:34.330957px;}
.h11{height:38.906719px;}
.h6{height:52.792969px;}
.hc{height:52.998047px;}
.hb{height:53.378906px;}
.h5{height:58.857422px;}
.h2{height:58.886719px;}
.h20{height:63.351562px;}
.h8{height:64.054688px;}
.hf{height:64.246687px;}
.h12{height:65.221148px;}
.h13{height:65.269148px;}
.h9{height:65.317148px;}
.h18{height:65.389148px;}
.h1f{height:65.437148px;}
.h4{height:70.628906px;}
.h7{height:70.664062px;}
.h1a{height:70.688062px;}
.h21{height:70.712062px;}
.hd{height:70.736063px;}
.h17{height:70.760063px;}
.h14{height:70.784062px;}
.h19{height:70.808063px;}
.h10{height:70.832063px;}
.h15{height:70.856063px;}
.h1d{height:70.892063px;}
.he{height:70.904062px;}
.h1b{height:70.928062px;}
.h1c{height:70.976062px;}
.h1e{height:71.024063px;}
.h16{height:71.071463px;}
.h3{height:72.562500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.559100px;}
.x3{left:136.069050px;}
.x4{left:147.409050px;}
.x9{left:151.974750px;}
.x8{left:170.078700px;}
.xd{left:180.653700px;}
.xc{left:255.929100px;}
.x5{left:267.667050px;}
.xa{left:318.807750px;}
.x6{left:357.518700px;}
.xb{left:366.412500px;}
.x7{left:373.133700px;}
.x1{left:435.206700px;}
@media print{
.v3{vertical-align:-21.312000pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls9{letter-spacing:-8.896000pt;}
.ls5{letter-spacing:-1.380544pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.150453pt;}
.lsd{letter-spacing:-0.746240pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.373120pt;}
.ls3{letter-spacing:-0.298667pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.008533pt;}
.lsb{letter-spacing:0.014400pt;}
.lsa{letter-spacing:0.053867pt;}
.lsf{letter-spacing:11.328000pt;}
.lsc{letter-spacing:20.032000pt;}
.ls4{letter-spacing:22.755733pt;}
.ws3d{word-spacing:-16.000000pt;}
.wsa1{word-spacing:-15.488000pt;}
.ws60{word-spacing:-15.360000pt;}
.ws76{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.333333pt;}
.ws13{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.328000pt;}
.wsa2{word-spacing:-9.029504pt;}
.ws3c{word-spacing:-8.954880pt;}
.ws77{word-spacing:-8.581760pt;}
.ws6a{word-spacing:-8.256000pt;}
.ws2d{word-spacing:-7.947456pt;}
.ws5a{word-spacing:-7.744000pt;}
.ws2e{word-spacing:-6.622880pt;}
.wsb1{word-spacing:-6.144000pt;}
.wsc{word-spacing:-5.120000pt;}
.ws34{word-spacing:-4.928000pt;}
.wsaa{word-spacing:-4.800000pt;}
.ws67{word-spacing:-4.480000pt;}
.ws47{word-spacing:-4.160000pt;}
.ws16{word-spacing:-3.904000pt;}
.ws5b{word-spacing:-3.840000pt;}
.wsa3{word-spacing:-3.712000pt;}
.ws4{word-spacing:-3.520000pt;}
.ws27{word-spacing:-3.392000pt;}
.wsac{word-spacing:-3.264000pt;}
.ws63{word-spacing:-3.200000pt;}
.ws91{word-spacing:-3.136000pt;}
.ws7b{word-spacing:-3.072000pt;}
.ws8{word-spacing:-3.040000pt;}
.ws99{word-spacing:-3.008000pt;}
.ws7{word-spacing:-2.986667pt;}
.ws53{word-spacing:-2.933333pt;}
.ws59{word-spacing:-2.880000pt;}
.ws5c{word-spacing:-2.752000pt;}
.wsa9{word-spacing:-2.688000pt;}
.ws8e{word-spacing:-2.624000pt;}
.ws90{word-spacing:-2.496000pt;}
.wsb4{word-spacing:-2.453333pt;}
.ws69{word-spacing:-2.432000pt;}
.ws12{word-spacing:-2.304000pt;}
.ws9f{word-spacing:-2.293333pt;}
.ws97{word-spacing:-2.240000pt;}
.ws64{word-spacing:-2.176000pt;}
.ws56{word-spacing:-2.112000pt;}
.ws11{word-spacing:-2.048000pt;}
.ws2a{word-spacing:-2.026667pt;}
.ws51{word-spacing:-1.920000pt;}
.ws6e{word-spacing:-1.856000pt;}
.ws7a{word-spacing:-1.792000pt;}
.ws8c{word-spacing:-1.728000pt;}
.ws71{word-spacing:-1.706667pt;}
.ws38{word-spacing:-1.536000pt;}
.ws93{word-spacing:-1.472000pt;}
.ws7e{word-spacing:-1.408000pt;}
.ws72{word-spacing:-1.386667pt;}
.ws8d{word-spacing:-1.344000pt;}
.ws39{word-spacing:-1.280000pt;}
.wsbc{word-spacing:-1.066667pt;}
.ws4e{word-spacing:-1.024000pt;}
.ws4c{word-spacing:-0.960000pt;}
.ws68{word-spacing:-0.704000pt;}
.wsb3{word-spacing:-0.448000pt;}
.wsae{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.213333pt;}
.ws75{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.064000pt;}
.ws5e{word-spacing:0.128000pt;}
.ws15{word-spacing:0.256000pt;}
.ws6{word-spacing:0.266667pt;}
.ws25{word-spacing:0.384000pt;}
.wsb6{word-spacing:0.426667pt;}
.ws9{word-spacing:0.533333pt;}
.ws61{word-spacing:0.576000pt;}
.ws84{word-spacing:0.586667pt;}
.ws3f{word-spacing:0.640000pt;}
.ws24{word-spacing:0.704000pt;}
.ws6c{word-spacing:0.768000pt;}
.ws80{word-spacing:0.896000pt;}
.ws29{word-spacing:0.960000pt;}
.ws74{word-spacing:1.066667pt;}
.wsb2{word-spacing:1.088000pt;}
.ws2{word-spacing:1.280000pt;}
.ws95{word-spacing:1.408000pt;}
.ws43{word-spacing:1.536000pt;}
.ws73{word-spacing:1.706667pt;}
.ws66{word-spacing:1.728000pt;}
.ws65{word-spacing:1.792000pt;}
.ws10{word-spacing:1.920000pt;}
.ws9d{word-spacing:1.984000pt;}
.ws8b{word-spacing:2.112000pt;}
.ws6b{word-spacing:2.240000pt;}
.ws20{word-spacing:2.304000pt;}
.ws48{word-spacing:2.368000pt;}
.ws7c{word-spacing:2.496000pt;}
.ws9b{word-spacing:2.560000pt;}
.ws55{word-spacing:2.624000pt;}
.ws6f{word-spacing:2.752000pt;}
.ws44{word-spacing:3.008000pt;}
.ws28{word-spacing:3.072000pt;}
.ws22{word-spacing:3.136000pt;}
.ws89{word-spacing:3.200000pt;}
.ws7f{word-spacing:3.264000pt;}
.wsaf{word-spacing:3.392000pt;}
.ws45{word-spacing:3.456000pt;}
.ws88{word-spacing:3.584000pt;}
.ws83{word-spacing:3.626667pt;}
.ws8a{word-spacing:3.648000pt;}
.wsd{word-spacing:3.712000pt;}
.wse{word-spacing:3.776000pt;}
.wsf{word-spacing:3.904000pt;}
.ws19{word-spacing:3.968000pt;}
.ws3{word-spacing:4.000000pt;}
.wsa0{word-spacing:4.053333pt;}
.ws9e{word-spacing:4.096000pt;}
.ws18{word-spacing:4.224000pt;}
.wsa4{word-spacing:4.288000pt;}
.ws1f{word-spacing:4.405333pt;}
.ws6d{word-spacing:4.416000pt;}
.ws85{word-spacing:4.480000pt;}
.ws81{word-spacing:4.544000pt;}
.ws7d{word-spacing:4.608000pt;}
.ws87{word-spacing:4.672000pt;}
.ws32{word-spacing:4.736000pt;}
.ws98{word-spacing:4.800000pt;}
.ws42{word-spacing:4.928000pt;}
.ws37{word-spacing:5.120000pt;}
.ws33{word-spacing:5.312000pt;}
.ws30{word-spacing:5.376000pt;}
.ws79{word-spacing:5.440000pt;}
.ws4d{word-spacing:5.504000pt;}
.ws70{word-spacing:5.568000pt;}
.ws3b{word-spacing:5.600000pt;}
.ws4a{word-spacing:5.696000pt;}
.ws8f{word-spacing:5.760000pt;}
.ws92{word-spacing:5.824000pt;}
.ws5d{word-spacing:5.888000pt;}
.ws21{word-spacing:6.144000pt;}
.ws96{word-spacing:6.208000pt;}
.ws1b{word-spacing:6.272000pt;}
.ws4b{word-spacing:6.336000pt;}
.wsb7{word-spacing:6.506667pt;}
.ws41{word-spacing:6.528000pt;}
.ws35{word-spacing:6.592000pt;}
.ws3a{word-spacing:6.826667pt;}
.ws36{word-spacing:6.848000pt;}
.ws57{word-spacing:6.912000pt;}
.ws50{word-spacing:6.976000pt;}
.ws9c{word-spacing:7.040000pt;}
.ws5f{word-spacing:7.104000pt;}
.wsb5{word-spacing:7.200000pt;}
.ws3e{word-spacing:7.296000pt;}
.ws49{word-spacing:7.488000pt;}
.ws26{word-spacing:7.552000pt;}
.ws23{word-spacing:7.680000pt;}
.ws62{word-spacing:7.936000pt;}
.ws1e{word-spacing:8.064000pt;}
.ws1d{word-spacing:8.256000pt;}
.wsb9{word-spacing:8.266667pt;}
.ws52{word-spacing:8.384000pt;}
.wsab{word-spacing:8.704000pt;}
.ws4f{word-spacing:8.768000pt;}
.wsa8{word-spacing:8.896000pt;}
.ws2f{word-spacing:9.152000pt;}
.ws46{word-spacing:9.280000pt;}
.wsa5{word-spacing:9.728000pt;}
.ws58{word-spacing:9.792000pt;}
.ws1c{word-spacing:9.920000pt;}
.ws1a{word-spacing:9.984000pt;}
.ws78{word-spacing:10.048000pt;}
.wsa7{word-spacing:10.240000pt;}
.ws86{word-spacing:10.496000pt;}
.ws31{word-spacing:10.816000pt;}
.ws54{word-spacing:10.944000pt;}
.wsb{word-spacing:11.392000pt;}
.wsbb{word-spacing:11.626667pt;}
.wsad{word-spacing:11.904000pt;}
.wsb8{word-spacing:12.106667pt;}
.ws17{word-spacing:12.416000pt;}
.ws9a{word-spacing:12.672000pt;}
.wsa6{word-spacing:13.056000pt;}
.ws5{word-spacing:13.066667pt;}
.wsba{word-spacing:13.973333pt;}
.ws40{word-spacing:14.144000pt;}
.wsa{word-spacing:14.976000pt;}
.ws94{word-spacing:15.680000pt;}
.ws82{word-spacing:20.032000pt;}
._16{margin-left:-11.412800pt;}
._4{margin-left:-8.256000pt;}
._11{margin-left:-7.232000pt;}
._6{margin-left:-6.005333pt;}
._3{margin-left:-4.736000pt;}
._0{margin-left:-3.520000pt;}
._1{margin-left:-2.368000pt;}
._5{margin-left:-1.152000pt;}
._2{width:1.280000pt;}
._7{width:2.560000pt;}
._8{width:3.584000pt;}
._9{width:4.608000pt;}
._b{width:6.368000pt;}
._c{width:7.712000pt;}
._d{width:8.640000pt;}
._10{width:9.792000pt;}
._e{width:10.880000pt;}
._13{width:11.904000pt;}
._f{width:13.440000pt;}
._19{width:15.680000pt;}
._1b{width:17.280000pt;}
._14{width:20.032000pt;}
._12{width:21.605333pt;}
._a{width:37.152533pt;}
._18{width:147.649067pt;}
._1a{width:248.174400pt;}
._15{width:371.377067pt;}
._17{width:503.673067pt;}
.fs3{font-size:31.093333pt;}
.fs2{font-size:37.312000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.960267pt;}
.y2{bottom:55.140800pt;}
.y2f{bottom:94.488133pt;}
.y10b{bottom:94.488267pt;}
.yaf{bottom:98.928133pt;}
.y13e{bottom:98.928267pt;}
.y2e{bottom:110.488133pt;}
.y19f{bottom:110.488267pt;}
.y13d{bottom:110.488400pt;}
.y60{bottom:114.928133pt;}
.y10a{bottom:114.928400pt;}
.y2d{bottom:126.488133pt;}
.y13c{bottom:126.488400pt;}
.y8c{bottom:130.928133pt;}
.y109{bottom:130.928533pt;}
.y19e{bottom:131.754933pt;}
.y1d7{bottom:138.786667pt;}
.y8b{bottom:142.488133pt;}
.y13b{bottom:142.488400pt;}
.y108{bottom:142.488667pt;}
.y2c{bottom:146.928133pt;}
.y16c{bottom:146.928667pt;}
.y19d{bottom:152.194933pt;}
.y1d6{bottom:154.786667pt;}
.y8a{bottom:158.488133pt;}
.y5f{bottom:162.928133pt;}
.y13a{bottom:162.928400pt;}
.y107{bottom:162.928667pt;}
.y16b{bottom:162.928800pt;}
.y1d5{bottom:170.786667pt;}
.y2b{bottom:174.401867pt;}
.y89{bottom:174.488133pt;}
.y139{bottom:174.488533pt;}
.y106{bottom:174.488667pt;}
.y5e{bottom:178.928133pt;}
.y16a{bottom:178.928933pt;}
.y1d4{bottom:186.786667pt;}
.y5d{bottom:190.488133pt;}
.y169{bottom:190.489067pt;}
.y2a{bottom:193.073867pt;}
.y88{bottom:194.928133pt;}
.y138{bottom:194.928533pt;}
.y105{bottom:194.928667pt;}
.y1d3{bottom:202.786667pt;}
.y19c{bottom:204.879600pt;}
.yec{bottom:206.488133pt;}
.y168{bottom:206.489067pt;}
.y5c{bottom:210.928133pt;}
.y137{bottom:210.928667pt;}
.y29{bottom:211.745867pt;}
.yae{bottom:214.228267pt;}
.yd3{bottom:214.244400pt;}
.y1d2{bottom:218.786667pt;}
.y19b{bottom:220.879600pt;}
.y87{bottom:222.488133pt;}
.y136{bottom:222.488800pt;}
.y104{bottom:225.532400pt;}
.yeb{bottom:226.928133pt;}
.y167{bottom:226.929067pt;}
.y28{bottom:230.417867pt;}
.yad{bottom:232.900267pt;}
.yd2{bottom:232.916400pt;}
.y1d1{bottom:234.786667pt;}
.y19a{bottom:236.879600pt;}
.y150{bottom:238.488133pt;}
.y86{bottom:242.928133pt;}
.y135{bottom:242.928800pt;}
.y166{bottom:242.929200pt;}
.y103{bottom:244.153733pt;}
.y27{bottom:249.089867pt;}
.y1d0{bottom:250.786667pt;}
.y5b{bottom:251.567067pt;}
.yac{bottom:251.572267pt;}
.yd1{bottom:251.588400pt;}
.y199{bottom:252.879600pt;}
.y85{bottom:254.488133pt;}
.y165{bottom:254.489333pt;}
.y14f{bottom:258.928133pt;}
.y134{bottom:258.928933pt;}
.y1cf{bottom:266.786667pt;}
.y26{bottom:267.761867pt;}
.y198{bottom:268.879600pt;}
.y102{bottom:270.217733pt;}
.y5a{bottom:270.239067pt;}
.yab{bottom:270.244267pt;}
.yd0{bottom:270.260400pt;}
.yea{bottom:270.488133pt;}
.y164{bottom:270.489333pt;}
.y84{bottom:274.928133pt;}
.y1ce{bottom:282.786667pt;}
.y197{bottom:284.879600pt;}
.y25{bottom:286.433867pt;}
.y101{bottom:288.889733pt;}
.y59{bottom:288.911067pt;}
.y133{bottom:288.911467pt;}
.yaa{bottom:288.916267pt;}
.ycf{bottom:288.932400pt;}
.ye9{bottom:290.928133pt;}
.y163{bottom:290.929333pt;}
.y1cd{bottom:298.786667pt;}
.y196{bottom:300.879600pt;}
.y24{bottom:305.105867pt;}
.y83{bottom:307.535067pt;}
.y100{bottom:307.561733pt;}
.yce{bottom:307.572400pt;}
.y58{bottom:307.583067pt;}
.y132{bottom:307.583467pt;}
.ya9{bottom:307.588267pt;}
.y1cc{bottom:314.786667pt;}
.y195{bottom:316.879600pt;}
.y162{bottom:317.993600pt;}
.y23{bottom:323.777867pt;}
.y82{bottom:326.207067pt;}
.ye8{bottom:326.217733pt;}
.yff{bottom:326.233733pt;}
.y131{bottom:326.239467pt;}
.ycd{bottom:326.244400pt;}
.y57{bottom:326.255067pt;}
.ya8{bottom:326.260267pt;}
.y1cb{bottom:330.786667pt;}
.y194{bottom:332.879600pt;}
.y161{bottom:336.665600pt;}
.y22{bottom:342.449867pt;}
.y81{bottom:344.879067pt;}
.ye7{bottom:344.889733pt;}
.yfe{bottom:344.905733pt;}
.y130{bottom:344.911467pt;}
.ycc{bottom:344.916400pt;}
.y56{bottom:344.927067pt;}
.ya7{bottom:344.932267pt;}
.y1ca{bottom:346.786667pt;}
.y193{bottom:348.879600pt;}
.y160{bottom:355.316267pt;}
.y21{bottom:361.121867pt;}
.y1c9{bottom:362.786667pt;}
.ya6{bottom:363.513733pt;}
.y80{bottom:363.551067pt;}
.ye6{bottom:363.561733pt;}
.yfd{bottom:363.577733pt;}
.y12f{bottom:363.583467pt;}
.ycb{bottom:363.588400pt;}
.y55{bottom:363.599067pt;}
.y192{bottom:364.879600pt;}
.y15f{bottom:373.988267pt;}
.y1c8{bottom:378.786667pt;}
.y20{bottom:379.793867pt;}
.y191{bottom:380.879600pt;}
.ya5{bottom:382.185733pt;}
.y7f{bottom:382.223067pt;}
.y12e{bottom:382.223467pt;}
.ye5{bottom:382.233733pt;}
.yfc{bottom:382.249733pt;}
.y54{bottom:382.255067pt;}
.yca{bottom:382.260400pt;}
.y15e{bottom:392.660267pt;}
.y1c7{bottom:394.786667pt;}
.y190{bottom:396.879600pt;}
.y1f{bottom:398.433867pt;}
.ya4{bottom:400.857733pt;}
.y7e{bottom:400.895067pt;}
.y12d{bottom:400.895467pt;}
.ye4{bottom:400.905733pt;}
.yfb{bottom:400.921733pt;}
.y53{bottom:400.927067pt;}
.yc9{bottom:400.932400pt;}
.y1c6{bottom:410.786667pt;}
.y15d{bottom:411.332267pt;}
.y18f{bottom:412.879600pt;}
.y1e{bottom:417.105867pt;}
.ya3{bottom:419.529733pt;}
.yc8{bottom:419.556400pt;}
.y7d{bottom:419.567067pt;}
.y12c{bottom:419.567467pt;}
.ye3{bottom:419.577733pt;}
.yfa{bottom:419.593733pt;}
.y52{bottom:419.599067pt;}
.y1c5{bottom:426.786667pt;}
.y18e{bottom:428.879600pt;}
.y15c{bottom:429.982933pt;}
.y1d{bottom:435.777867pt;}
.ya2{bottom:438.201733pt;}
.y51{bottom:438.217733pt;}
.yc7{bottom:438.228400pt;}
.y7c{bottom:438.239067pt;}
.y12b{bottom:438.239467pt;}
.ye2{bottom:438.249733pt;}
.yf9{bottom:438.265733pt;}
.y1c4{bottom:442.786667pt;}
.y18d{bottom:444.879600pt;}
.y15b{bottom:448.654933pt;}
.y1c{bottom:454.449867pt;}
.yf8{bottom:456.868400pt;}
.ya1{bottom:456.873733pt;}
.y50{bottom:456.889733pt;}
.yc6{bottom:456.900400pt;}
.y7b{bottom:456.911067pt;}
.y12a{bottom:456.911467pt;}
.ye1{bottom:456.921733pt;}
.y14e{bottom:456.932400pt;}
.y1c3{bottom:458.786667pt;}
.y18c{bottom:460.879600pt;}
.y15a{bottom:467.326933pt;}
.y1b{bottom:473.121867pt;}
.y1c2{bottom:474.786667pt;}
.yf7{bottom:475.540400pt;}
.ya0{bottom:475.545733pt;}
.y4f{bottom:475.561733pt;}
.yc5{bottom:475.572400pt;}
.y7a{bottom:475.583067pt;}
.y129{bottom:475.583467pt;}
.ye0{bottom:475.593733pt;}
.y18b{bottom:476.879600pt;}
.y159{bottom:485.998933pt;}
.y1c1{bottom:490.786667pt;}
.y1a{bottom:491.793867pt;}
.y18a{bottom:492.879600pt;}
.y128{bottom:494.175467pt;}
.yf6{bottom:494.212400pt;}
.y9f{bottom:494.217733pt;}
.y4e{bottom:494.233733pt;}
.yc4{bottom:494.244400pt;}
.y79{bottom:494.255067pt;}
.ydf{bottom:494.265733pt;}
.y158{bottom:504.665600pt;}
.y1c0{bottom:506.786667pt;}
.y189{bottom:508.879600pt;}
.y19{bottom:510.465867pt;}
.y127{bottom:512.847467pt;}
.yde{bottom:512.879067pt;}
.yf5{bottom:512.884400pt;}
.y9e{bottom:512.889733pt;}
.y4d{bottom:512.905733pt;}
.yc3{bottom:512.916400pt;}
.y78{bottom:512.927067pt;}
.y1bf{bottom:522.786667pt;}
.y157{bottom:523.332267pt;}
.y188{bottom:524.879600pt;}
.y126{bottom:531.519467pt;}
.ydd{bottom:531.551067pt;}
.yf4{bottom:531.556400pt;}
.y9d{bottom:531.561733pt;}
.y4c{bottom:531.577733pt;}
.yc2{bottom:531.588400pt;}
.y77{bottom:531.599067pt;}
.y1be{bottom:538.786667pt;}
.y187{bottom:540.879600pt;}
.y156{bottom:542.004267pt;}
.y18{bottom:548.030133pt;}
.y125{bottom:550.191467pt;}
.ydc{bottom:550.223067pt;}
.yf3{bottom:550.228400pt;}
.y9c{bottom:550.233733pt;}
.y76{bottom:550.244400pt;}
.y4b{bottom:550.249733pt;}
.y14d{bottom:550.255067pt;}
.yc1{bottom:550.260400pt;}
.y1bd{bottom:554.786667pt;}
.y186{bottom:556.879600pt;}
.y17{bottom:567.809733pt;}
.y124{bottom:568.863467pt;}
.ydb{bottom:568.895067pt;}
.yf2{bottom:568.900400pt;}
.y9b{bottom:568.905733pt;}
.y75{bottom:568.916400pt;}
.y4a{bottom:568.921733pt;}
.y155{bottom:568.926933pt;}
.y14c{bottom:568.927067pt;}
.yc0{bottom:568.932400pt;}
.y1bc{bottom:570.786667pt;}
.y185{bottom:572.879600pt;}
.y1bb{bottom:586.786667pt;}
.y123{bottom:587.535467pt;}
.ybf{bottom:587.567067pt;}
.yf1{bottom:587.572400pt;}
.y9a{bottom:587.577733pt;}
.y74{bottom:587.588400pt;}
.y49{bottom:587.593733pt;}
.y154{bottom:587.598933pt;}
.y14b{bottom:587.599067pt;}
.y184{bottom:588.879600pt;}
.y1ba{bottom:602.786667pt;}
.y183{bottom:604.879600pt;}
.y16{bottom:605.374000pt;}
.y122{bottom:606.207467pt;}
.ybe{bottom:606.239067pt;}
.yf0{bottom:606.244400pt;}
.y99{bottom:606.249733pt;}
.y73{bottom:606.260400pt;}
.y48{bottom:606.265733pt;}
.y1b9{bottom:618.786667pt;}
.y182{bottom:620.879600pt;}
.y121{bottom:624.879467pt;}
.y47{bottom:624.895067pt;}
.ybd{bottom:624.911067pt;}
.yef{bottom:624.916400pt;}
.y98{bottom:624.921733pt;}
.y72{bottom:624.932400pt;}
.y15{bottom:625.153600pt;}
.y1b8{bottom:634.786667pt;}
.y181{bottom:636.879600pt;}
.y120{bottom:643.551467pt;}
.y46{bottom:643.567067pt;}
.ybc{bottom:643.583067pt;}
.y71{bottom:643.588400pt;}
.y97{bottom:643.593733pt;}
.y1b7{bottom:650.786667pt;}
.y180{bottom:652.879600pt;}
.y11f{bottom:662.223467pt;}
.y45{bottom:662.239067pt;}
.ybb{bottom:662.255067pt;}
.y70{bottom:662.260400pt;}
.y96{bottom:662.265733pt;}
.y14{bottom:662.717867pt;}
.y1b6{bottom:666.786667pt;}
.y17f{bottom:668.879600pt;}
.y13{bottom:678.717867pt;}
.y11e{bottom:680.895467pt;}
.y44{bottom:680.911067pt;}
.y153{bottom:680.916400pt;}
.y95{bottom:680.921733pt;}
.yba{bottom:680.927067pt;}
.y6f{bottom:680.932400pt;}
.y1b5{bottom:682.786667pt;}
.y17e{bottom:684.879600pt;}
.y12{bottom:694.717867pt;}
.y1b4{bottom:698.786667pt;}
.y11d{bottom:699.567467pt;}
.y43{bottom:699.583067pt;}
.y6e{bottom:699.588400pt;}
.y94{bottom:699.593733pt;}
.yb9{bottom:699.599067pt;}
.y17d{bottom:700.804800pt;}
.y11{bottom:710.717867pt;}
.y1b3{bottom:714.786667pt;}
.y11c{bottom:718.239467pt;}
.yb8{bottom:718.249733pt;}
.y42{bottom:718.255067pt;}
.y6d{bottom:718.260400pt;}
.y93{bottom:718.265733pt;}
.y10{bottom:726.717867pt;}
.y1b2{bottom:730.786667pt;}
.y17c{bottom:736.148800pt;}
.y92{bottom:736.895067pt;}
.y11b{bottom:736.911467pt;}
.yb7{bottom:736.921733pt;}
.y41{bottom:736.927067pt;}
.y6c{bottom:736.932400pt;}
.yf{bottom:746.497333pt;}
.y1b1{bottom:746.786667pt;}
.y17b{bottom:754.820800pt;}
.y152{bottom:755.545733pt;}
.y91{bottom:755.567067pt;}
.y6b{bottom:755.583067pt;}
.y11a{bottom:755.583467pt;}
.yb6{bottom:755.593733pt;}
.y40{bottom:755.599067pt;}
.y1b0{bottom:762.786667pt;}
.y17a{bottom:773.492800pt;}
.yee{bottom:774.201733pt;}
.y14a{bottom:774.212400pt;}
.y3f{bottom:774.217733pt;}
.y119{bottom:774.218133pt;}
.yda{bottom:774.233733pt;}
.y90{bottom:774.239067pt;}
.y6a{bottom:774.255067pt;}
.yb5{bottom:774.265733pt;}
.y1af{bottom:778.786667pt;}
.ye{bottom:784.061733pt;}
.y179{bottom:792.164800pt;}
.yed{bottom:792.873733pt;}
.y149{bottom:792.884400pt;}
.y3e{bottom:792.889733pt;}
.y118{bottom:792.890133pt;}
.yd9{bottom:792.905733pt;}
.y8f{bottom:792.911067pt;}
.y69{bottom:792.927067pt;}
.yb4{bottom:792.937733pt;}
.y1ae{bottom:794.786667pt;}
.yd{bottom:800.061733pt;}
.y1ad{bottom:810.786667pt;}
.y178{bottom:810.836800pt;}
.yb3{bottom:811.545733pt;}
.y148{bottom:811.556400pt;}
.y3d{bottom:811.561733pt;}
.y117{bottom:811.562133pt;}
.yd8{bottom:811.577733pt;}
.y8e{bottom:811.583067pt;}
.y68{bottom:811.599067pt;}
.yc{bottom:816.061733pt;}
.y1ac{bottom:826.786667pt;}
.y177{bottom:829.508800pt;}
.yb2{bottom:830.217733pt;}
.y147{bottom:830.228400pt;}
.y3c{bottom:830.233733pt;}
.y116{bottom:830.234133pt;}
.yd7{bottom:830.249733pt;}
.y8d{bottom:830.255067pt;}
.y67{bottom:830.271067pt;}
.yb{bottom:832.061733pt;}
.y1ab{bottom:842.786667pt;}
.ya{bottom:848.061733pt;}
.y176{bottom:848.180800pt;}
.yb1{bottom:848.889733pt;}
.y146{bottom:848.900400pt;}
.y3b{bottom:848.905733pt;}
.y115{bottom:848.906133pt;}
.yd6{bottom:848.921733pt;}
.y66{bottom:848.927067pt;}
.y1aa{bottom:858.786667pt;}
.y9{bottom:864.061733pt;}
.y175{bottom:866.852800pt;}
.yb0{bottom:867.561733pt;}
.y145{bottom:867.572400pt;}
.y3a{bottom:867.577733pt;}
.y114{bottom:867.578133pt;}
.yd5{bottom:867.593733pt;}
.y65{bottom:867.599067pt;}
.y1a9{bottom:874.786667pt;}
.y8{bottom:883.841200pt;}
.y174{bottom:885.524800pt;}
.y64{bottom:886.233733pt;}
.y144{bottom:886.244400pt;}
.y39{bottom:886.249733pt;}
.y113{bottom:886.250133pt;}
.yd4{bottom:886.265733pt;}
.y1a8{bottom:890.786667pt;}
.y173{bottom:904.196800pt;}
.y112{bottom:904.890133pt;}
.y63{bottom:904.905733pt;}
.y143{bottom:904.916400pt;}
.y38{bottom:904.921733pt;}
.y1a7{bottom:906.786667pt;}
.y1a6{bottom:922.786667pt;}
.y172{bottom:922.868800pt;}
.y111{bottom:923.562133pt;}
.y62{bottom:923.577733pt;}
.y142{bottom:923.588400pt;}
.y37{bottom:923.593733pt;}
.y7{bottom:928.964533pt;}
.y1a5{bottom:938.786667pt;}
.y171{bottom:941.540800pt;}
.y110{bottom:942.234133pt;}
.y61{bottom:942.249733pt;}
.y141{bottom:942.260400pt;}
.y36{bottom:942.265733pt;}
.y6{bottom:944.964533pt;}
.y1a4{bottom:954.786667pt;}
.y170{bottom:960.212800pt;}
.y10f{bottom:960.906133pt;}
.y35{bottom:960.921733pt;}
.y140{bottom:960.932400pt;}
.y151{bottom:960.937733pt;}
.y1a3{bottom:970.786667pt;}
.y16f{bottom:978.874133pt;}
.y10e{bottom:979.578133pt;}
.y34{bottom:979.593733pt;}
.y13f{bottom:979.599067pt;}
.y5{bottom:979.851600pt;}
.y1a2{bottom:986.786667pt;}
.y16e{bottom:997.546133pt;}
.y10d{bottom:998.250133pt;}
.y33{bottom:998.265733pt;}
.y4{bottom:998.523600pt;}
.y1a1{bottom:1002.786667pt;}
.y16d{bottom:1016.218133pt;}
.y10c{bottom:1016.922133pt;}
.y32{bottom:1016.937733pt;}
.y3{bottom:1017.195600pt;}
.y1a0{bottom:1018.786667pt;}
.y31{bottom:1053.354400pt;}
.y30{bottom:1067.754400pt;}
.ha{height:30.516406pt;}
.h11{height:34.583750pt;}
.h6{height:46.927083pt;}
.hc{height:47.109375pt;}
.hb{height:47.447917pt;}
.h5{height:52.317708pt;}
.h2{height:52.343750pt;}
.h20{height:56.312500pt;}
.h8{height:56.937500pt;}
.hf{height:57.108167pt;}
.h12{height:57.974354pt;}
.h13{height:58.017021pt;}
.h9{height:58.059687pt;}
.h18{height:58.123688pt;}
.h1f{height:58.166354pt;}
.h4{height:62.781250pt;}
.h7{height:62.812500pt;}
.h1a{height:62.833833pt;}
.h21{height:62.855167pt;}
.hd{height:62.876500pt;}
.h17{height:62.897833pt;}
.h14{height:62.919167pt;}
.h19{height:62.940500pt;}
.h10{height:62.961833pt;}
.h15{height:62.983167pt;}
.h1d{height:63.015167pt;}
.he{height:63.025833pt;}
.h1b{height:63.047167pt;}
.h1c{height:63.089833pt;}
.h1e{height:63.132500pt;}
.h16{height:63.174633pt;}
.h3{height:64.500000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.385867pt;}
.x3{left:120.950267pt;}
.x4{left:131.030267pt;}
.x9{left:135.088667pt;}
.x8{left:151.181067pt;}
.xd{left:160.581067pt;}
.xc{left:227.492533pt;}
.x5{left:237.926267pt;}
.xa{left:283.384667pt;}
.x6{left:317.794400pt;}
.xb{left:325.700000pt;}
.x7{left:331.674400pt;}
.x1{left:386.850400pt;}
}




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