
    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_88bf735d4f008ea2fd0bdd71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_17ed9f05a3ac23494af5120e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_a71fcf5c1c70ce075c28ef9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_31cb5057f8bb4e5db5baed87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031000;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_79e412afe4ba7f5daf26970c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031000;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_f4738844fac8850715174482.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_ecf6e8533919dc83f341d184.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_d211878453f755a4ab0fe0a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_dc8319af8c61bbde38c465e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960000;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_a68d75fe5f0262fa5e290125.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.998000;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_3a0ef8add2c854270727e25d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.960000;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_62e8f14f9be50dfef40660b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.741000;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_972fccdad7813cdded8656e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.950000;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);}
.v1{vertical-align:-8.595000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.780000px;}
.ls28{letter-spacing:-1.056000px;}
.lsc{letter-spacing:-0.990000px;}
.lse{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.726000px;}
.ls27{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.264000px;}
.ls16{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.198000px;}
.ls24{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.132000px;}
.ls8{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.031800px;}
.ls52{letter-spacing:0.033000px;}
.ls50{letter-spacing:0.036600px;}
.ls51{letter-spacing:0.036960px;}
.ls53{letter-spacing:0.039000px;}
.ls44{letter-spacing:0.040800px;}
.ls47{letter-spacing:0.041400px;}
.ls45{letter-spacing:0.041580px;}
.ls57{letter-spacing:0.050820px;}
.ls56{letter-spacing:0.051000px;}
.ls19{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.066000px;}
.ls31{letter-spacing:0.071400px;}
.ls32{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.072600px;}
.ls29{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.099000px;}
.ls15{letter-spacing:0.112800px;}
.lsa{letter-spacing:0.132000px;}
.ls46{letter-spacing:0.132600px;}
.ls3f{letter-spacing:0.161700px;}
.ls3e{letter-spacing:0.165000px;}
.ls4b{letter-spacing:0.177600px;}
.ls1f{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.187800px;}
.ls43{letter-spacing:0.189420px;}
.ls11{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.231000px;}
.ls4f{letter-spacing:0.244860px;}
.ls4d{letter-spacing:0.245400px;}
.ls4e{letter-spacing:0.246000px;}
.ls4{letter-spacing:0.264000px;}
.ls4c{letter-spacing:0.288600px;}
.ls48{letter-spacing:0.289200px;}
.ls2e{letter-spacing:0.291060px;}
.ls3{letter-spacing:0.297000px;}
.ls40{letter-spacing:0.299400px;}
.ls18{letter-spacing:0.300000px;}
.ls41{letter-spacing:0.300300px;}
.ls54{letter-spacing:0.312000px;}
.ls55{letter-spacing:0.314160px;}
.ls2{letter-spacing:0.330000px;}
.ls1e{letter-spacing:0.360000px;}
.ls58{letter-spacing:0.373800px;}
.ls59{letter-spacing:0.374220px;}
.ls5b{letter-spacing:0.378000px;}
.ls2b{letter-spacing:0.378840px;}
.lsf{letter-spacing:0.396000px;}
.ls36{letter-spacing:0.425040px;}
.ls49{letter-spacing:0.446400px;}
.ls4a{letter-spacing:0.462000px;}
.ls1c{letter-spacing:0.654600px;}
.ls1d{letter-spacing:0.655200px;}
.ls3b{letter-spacing:0.857400px;}
.ls1b{letter-spacing:0.989400px;}
.ls1a{letter-spacing:0.990000px;}
.ls5a{letter-spacing:1.056000px;}
.ls2c{letter-spacing:1.231200px;}
.ls22{letter-spacing:1.254000px;}
.ls3c{letter-spacing:1.304400px;}
.ls20{letter-spacing:1.320000px;}
.ls21{letter-spacing:1.518000px;}
.ls3a{letter-spacing:1.554600px;}
.ls39{letter-spacing:1.555200px;}
.ls23{letter-spacing:1.716000px;}
.ls12{letter-spacing:1.886400px;}
.ls13{letter-spacing:1.887000px;}
.ls17{letter-spacing:2.163600px;}
.ls34{letter-spacing:2.614200px;}
.ls33{letter-spacing:2.614800px;}
.ls3d{letter-spacing:2.757000px;}
.ls14{letter-spacing:2.862600px;}
.ls2f{letter-spacing:3.935400px;}
.ls2d{letter-spacing:3.936000px;}
.ls25{letter-spacing:4.151400px;}
.ls26{letter-spacing:4.152000px;}
.ls37{letter-spacing:5.727000px;}
.ls35{letter-spacing:5.727600px;}
.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;}
}
.ws1{word-spacing:-24.480000px;}
.ws97{word-spacing:-14.520000px;}
.ws55{word-spacing:-14.454000px;}
.ws98{word-spacing:-13.860000px;}
.ws4f{word-spacing:-13.761000px;}
.ws83{word-spacing:-13.662000px;}
.ws50{word-spacing:-13.530000px;}
.ws2e{word-spacing:-13.464000px;}
.ws77{word-spacing:-13.398000px;}
.ws6e{word-spacing:-13.200000px;}
.ws78{word-spacing:-12.804000px;}
.ws66{word-spacing:-12.738000px;}
.ws56{word-spacing:-12.600000px;}
.ws4e{word-spacing:-12.240000px;}
.ws81{word-spacing:-9.849840px;}
.ws7c{word-spacing:-9.803640px;}
.ws96{word-spacing:-9.799020px;}
.ws94{word-spacing:-9.738960px;}
.ws8a{word-spacing:-9.725100px;}
.ws7d{word-spacing:-9.715860px;}
.ws92{word-spacing:-9.669660px;}
.ws8b{word-spacing:-9.614220px;}
.ws82{word-spacing:-9.586500px;}
.ws95{word-spacing:-9.475620px;}
.ws8c{word-spacing:-9.466380px;}
.ws93{word-spacing:-9.461760px;}
.ws3f{word-spacing:-9.424800px;}
.ws65{word-spacing:-7.809120px;}
.ws8e{word-spacing:-2.508000px;}
.ws3a{word-spacing:-2.376000px;}
.ws44{word-spacing:-2.310000px;}
.wsa{word-spacing:-2.244000px;}
.ws3d{word-spacing:-2.178000px;}
.ws14{word-spacing:-2.046000px;}
.ws9{word-spacing:-1.980000px;}
.ws71{word-spacing:-1.914000px;}
.ws62{word-spacing:-1.860000px;}
.ws86{word-spacing:-1.848000px;}
.ws7f{word-spacing:-1.782000px;}
.ws10{word-spacing:-1.716000px;}
.ws75{word-spacing:-1.680000px;}
.ws72{word-spacing:-1.650000px;}
.ws31{word-spacing:-1.584000px;}
.ws73{word-spacing:-1.518000px;}
.wsd{word-spacing:-1.452000px;}
.ws60{word-spacing:-1.440000px;}
.ws74{word-spacing:-1.386000px;}
.ws8{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.254000px;}
.ws38{word-spacing:-1.188000px;}
.ws13{word-spacing:-1.122000px;}
.ws6a{word-spacing:-1.080000px;}
.ws16{word-spacing:-1.056000px;}
.ws3c{word-spacing:-0.990000px;}
.ws7{word-spacing:-0.924000px;}
.ws69{word-spacing:-0.858000px;}
.ws4c{word-spacing:-0.840000px;}
.ws42{word-spacing:-0.792000px;}
.ws59{word-spacing:-0.780000px;}
.ws7a{word-spacing:-0.726000px;}
.ws35{word-spacing:-0.660000px;}
.ws41{word-spacing:-0.594000px;}
.ws52{word-spacing:-0.528000px;}
.ws26{word-spacing:-0.462000px;}
.ws28{word-spacing:-0.396000px;}
.ws5d{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.330000px;}
.ws57{word-spacing:-0.300000px;}
.ws2c{word-spacing:-0.264000px;}
.ws25{word-spacing:-0.198000px;}
.ws5f{word-spacing:-0.180000px;}
.ws1c{word-spacing:-0.132000px;}
.ws4d{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.066000px;}
.ws1d{word-spacing:0.132000px;}
.ws63{word-spacing:0.180000px;}
.wsf{word-spacing:0.198000px;}
.ws29{word-spacing:0.264000px;}
.ws33{word-spacing:0.330000px;}
.ws46{word-spacing:0.396000px;}
.ws3b{word-spacing:0.462000px;}
.ws85{word-spacing:0.528000px;}
.ws70{word-spacing:0.594000px;}
.ws5a{word-spacing:0.660000px;}
.ws27{word-spacing:0.726000px;}
.ws6{word-spacing:0.792000px;}
.ws15{word-spacing:0.858000px;}
.wsc{word-spacing:0.924000px;}
.ws6d{word-spacing:0.960000px;}
.ws2a{word-spacing:0.990000px;}
.ws2d{word-spacing:1.056000px;}
.ws9a{word-spacing:1.122000px;}
.ws6c{word-spacing:1.140000px;}
.ws91{word-spacing:1.188000px;}
.ws4b{word-spacing:1.200000px;}
.ws22{word-spacing:1.254000px;}
.ws21{word-spacing:1.320000px;}
.ws89{word-spacing:1.386000px;}
.ws64{word-spacing:1.452000px;}
.ws99{word-spacing:1.518000px;}
.ws40{word-spacing:1.584000px;}
.ws6f{word-spacing:1.680000px;}
.ws18{word-spacing:1.716000px;}
.ws2f{word-spacing:1.782000px;}
.ws39{word-spacing:1.848000px;}
.ws4a{word-spacing:1.914000px;}
.ws24{word-spacing:1.980000px;}
.ws5e{word-spacing:2.046000px;}
.ws20{word-spacing:2.112000px;}
.ws23{word-spacing:2.178000px;}
.ws51{word-spacing:2.220000px;}
.ws12{word-spacing:2.244000px;}
.ws3{word-spacing:2.310000px;}
.ws68{word-spacing:2.376000px;}
.ws11{word-spacing:2.442000px;}
.ws5c{word-spacing:2.460000px;}
.ws49{word-spacing:2.508000px;}
.ws79{word-spacing:2.520000px;}
.ws80{word-spacing:2.574000px;}
.ws47{word-spacing:2.640000px;}
.ws61{word-spacing:2.706000px;}
.ws1a{word-spacing:2.772000px;}
.ws1f{word-spacing:2.838000px;}
.ws17{word-spacing:2.904000px;}
.ws45{word-spacing:2.970000px;}
.ws1e{word-spacing:3.036000px;}
.ws58{word-spacing:3.060000px;}
.ws4{word-spacing:3.102000px;}
.ws90{word-spacing:3.168000px;}
.ws36{word-spacing:3.234000px;}
.ws37{word-spacing:3.300000px;}
.ws2{word-spacing:3.366000px;}
.ws43{word-spacing:3.432000px;}
.ws87{word-spacing:3.498000px;}
.ws88{word-spacing:3.564000px;}
.ws8f{word-spacing:3.630000px;}
.ws7b{word-spacing:3.660000px;}
.ws1b{word-spacing:3.696000px;}
.ws8d{word-spacing:3.762000px;}
.ws67{word-spacing:3.828000px;}
.ws2b{word-spacing:3.894000px;}
.ws5b{word-spacing:3.960000px;}
.ws5{word-spacing:4.026000px;}
.ws34{word-spacing:4.092000px;}
.ws76{word-spacing:4.140000px;}
.ws6b{word-spacing:4.290000px;}
.ws48{word-spacing:4.422000px;}
.ws30{word-spacing:4.488000px;}
.ws7e{word-spacing:4.686000px;}
.ws32{word-spacing:4.752000px;}
.ws84{word-spacing:4.818000px;}
.ws53{word-spacing:5.214000px;}
.ws3e{word-spacing:5.346000px;}
.ws9b{word-spacing:6.138000px;}
.ws19{word-spacing:12.063600px;}
.ws9c{word-spacing:12.870000px;}
._c{margin-left:-6.904200px;}
._6{margin-left:-3.636600px;}
._3{margin-left:-2.464800px;}
._0{margin-left:-1.449600px;}
._1{width:1.778400px;}
._5{width:2.844600px;}
._4{width:4.065600px;}
._8{width:5.253600px;}
._9{width:6.462600px;}
._d{width:14.608200px;}
._7{width:23.460600px;}
._b{width:72.000000px;}
._a{width:75.660000px;}
._2{width:202.819800px;}
.fc2{color:rgb(200,33,40);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:38.280000px;}
.fsa{font-size:46.200000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:101.679600px;}
.fs8{font-size:120.000000px;}
.fs4{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:45.897150px;}
.yf{bottom:63.779550px;}
.y1d{bottom:63.897150px;}
.ye{bottom:79.979550px;}
.y1c{bottom:96.855150px;}
.y1ab{bottom:105.113850px;}
.y9d{bottom:105.114000px;}
.y1bb{bottom:105.645450px;}
.y15a{bottom:106.299150px;}
.y107{bottom:107.629650px;}
.y192{bottom:110.245650px;}
.yec{bottom:111.113850px;}
.yd{bottom:112.379550px;}
.y3f{bottom:112.873800px;}
.y77{bottom:119.889750px;}
.yd0{bottom:122.121750px;}
.y159{bottom:124.299150px;}
.ybb{bottom:127.613850px;}
.y9c{bottom:127.614000px;}
.y1ba{bottom:128.145450px;}
.yc{bottom:128.579550px;}
.y106{bottom:130.129650px;}
.y191{bottom:132.745650px;}
.y19f{bottom:133.106100px;}
.yeb{bottom:133.613850px;}
.y3e{bottom:135.373800px;}
.y122{bottom:139.637550px;}
.y158{bottom:142.299150px;}
.y76{bottom:142.389750px;}
.ycf{bottom:144.621750px;}
.yb{bottom:144.779550px;}
.y146{bottom:146.753550px;}
.yba{bottom:150.113850px;}
.y9b{bottom:150.114000px;}
.y1b9{bottom:150.645450px;}
.y105{bottom:152.629650px;}
.y190{bottom:155.245650px;}
.y19e{bottom:155.606100px;}
.yea{bottom:156.113850px;}
.y3d{bottom:157.873800px;}
.ya{bottom:160.979550px;}
.y121{bottom:162.137550px;}
.y75{bottom:164.889750px;}
.yce{bottom:167.121750px;}
.y145{bottom:169.253550px;}
.yb9{bottom:172.613850px;}
.y9a{bottom:172.614000px;}
.y1c0{bottom:173.145450px;}
.y104{bottom:175.129650px;}
.y9{bottom:177.179550px;}
.y18f{bottom:177.745650px;}
.y19d{bottom:178.106100px;}
.ye9{bottom:178.613850px;}
.y3c{bottom:180.373800px;}
.y120{bottom:184.637550px;}
.y74{bottom:187.389750px;}
.y144{bottom:191.753550px;}
.y8{bottom:193.379550px;}
.yb8{bottom:195.113850px;}
.y99{bottom:195.114000px;}
.y1b8{bottom:195.645450px;}
.y103{bottom:197.629650px;}
.y18e{bottom:200.245650px;}
.y19c{bottom:200.606100px;}
.ye8{bottom:201.113850px;}
.y3b{bottom:202.873800px;}
.ycd{bottom:206.629650px;}
.y11f{bottom:207.137550px;}
.y7{bottom:209.579550px;}
.y73{bottom:209.889750px;}
.y143{bottom:214.253550px;}
.yb7{bottom:217.613850px;}
.y98{bottom:217.614000px;}
.y1b7{bottom:218.145450px;}
.y102{bottom:220.129650px;}
.y19b{bottom:223.106100px;}
.ye7{bottom:223.613850px;}
.y6{bottom:225.779550px;}
.ycc{bottom:229.129650px;}
.y72{bottom:232.389750px;}
.y142{bottom:236.753550px;}
.y1bf{bottom:240.645450px;}
.y5{bottom:241.979550px;}
.y101{bottom:242.629650px;}
.y173{bottom:243.745650px;}
.y157{bottom:244.613850px;}
.y18d{bottom:245.245650px;}
.y19a{bottom:245.606100px;}
.ye6{bottom:246.113850px;}
.ycb{bottom:251.629650px;}
.y11e{bottom:252.137550px;}
.y71{bottom:254.889750px;}
.y40{bottom:256.076400px;}
.yb6{bottom:257.121750px;}
.y97{bottom:257.121900px;}
.y141{bottom:259.253550px;}
.y1aa{bottom:262.613850px;}
.y1b6{bottom:263.145450px;}
.y172{bottom:264.745650px;}
.y100{bottom:265.129650px;}
.y156{bottom:267.113850px;}
.y199{bottom:268.106100px;}
.y11d{bottom:273.137550px;}
.yca{bottom:274.129650px;}
.y70{bottom:277.389750px;}
.yb5{bottom:279.621750px;}
.y96{bottom:279.621900px;}
.y140{bottom:281.753550px;}
.y1a9{bottom:285.113850px;}
.y1b5{bottom:285.645450px;}
.yff{bottom:287.629650px;}
.y155{bottom:289.613850px;}
.y198{bottom:290.606100px;}
.ye5{bottom:291.113850px;}
.y11c{bottom:294.137550px;}
.yc9{bottom:296.629650px;}
.y11{bottom:298.270950px;}
.y6f{bottom:299.889750px;}
.yb4{bottom:302.121750px;}
.y95{bottom:302.121900px;}
.y13f{bottom:304.253550px;}
.y171{bottom:306.745650px;}
.y1a8{bottom:307.613850px;}
.y1b4{bottom:308.145450px;}
.yfe{bottom:310.129650px;}
.ye4{bottom:312.113850px;}
.y18c{bottom:312.745650px;}
.y197{bottom:313.106100px;}
.y10{bottom:314.470950px;}
.y11b{bottom:315.137550px;}
.yb3{bottom:324.621750px;}
.y94{bottom:324.621900px;}
.y13e{bottom:326.753550px;}
.y154{bottom:329.121750px;}
.y170{bottom:329.245650px;}
.y1a7{bottom:330.113850px;}
.y1b3{bottom:330.645450px;}
.ye3{bottom:333.113850px;}
.y18b{bottom:335.245650px;}
.y196{bottom:335.606100px;}
.yc8{bottom:336.137550px;}
.y6e{bottom:339.397650px;}
.yb2{bottom:347.121750px;}
.y93{bottom:347.121900px;}
.y13d{bottom:349.253550px;}
.y153{bottom:351.621750px;}
.y16f{bottom:351.745650px;}
.y1a6{bottom:352.613850px;}
.y1b2{bottom:353.145450px;}
.yfd{bottom:355.129650px;}
.y18a{bottom:356.245650px;}
.y195{bottom:358.106100px;}
.yc7{bottom:358.637550px;}
.y6d{bottom:361.897650px;}
.yb1{bottom:369.621750px;}
.y92{bottom:369.621900px;}
.y13c{bottom:371.753550px;}
.y3a{bottom:372.936600px;}
.y152{bottom:374.121750px;}
.y16e{bottom:374.245650px;}
.ye2{bottom:375.113850px;}
.y1be{bottom:375.645450px;}
.yfc{bottom:376.129650px;}
.y11a{bottom:378.137550px;}
.y194{bottom:380.606100px;}
.yc6{bottom:381.137550px;}
.y6c{bottom:384.397650px;}
.yb0{bottom:392.121750px;}
.y91{bottom:392.121900px;}
.y13b{bottom:394.253550px;}
.y151{bottom:396.621750px;}
.y16d{bottom:396.745650px;}
.yfb{bottom:397.129650px;}
.ye1{bottom:397.613850px;}
.y1b1{bottom:398.145450px;}
.y189{bottom:398.245650px;}
.y119{bottom:399.137550px;}
.yc5{bottom:403.637550px;}
.y17{bottom:405.252300px;}
.y38{bottom:406.472100px;}
.y6b{bottom:406.897650px;}
.y90{bottom:414.621900px;}
.ye0{bottom:420.113850px;}
.y118{bottom:420.137550px;}
.y1b0{bottom:420.645450px;}
.y188{bottom:420.745650px;}
.yc4{bottom:426.137550px;}
.y37{bottom:428.972100px;}
.y6a{bottom:429.397650px;}
.y16{bottom:430.452150px;}
.yaf{bottom:431.629650px;}
.y150{bottom:436.129650px;}
.y16c{bottom:436.253550px;}
.yfa{bottom:439.129650px;}
.y13a{bottom:439.253550px;}
.y117{bottom:441.137550px;}
.ydf{bottom:442.613850px;}
.y1bd{bottom:443.145450px;}
.y187{bottom:443.245650px;}
.yc3{bottom:448.637550px;}
.y36{bottom:451.472100px;}
.y69{bottom:451.897650px;}
.yae{bottom:454.129650px;}
.y8f{bottom:454.129800px;}
.y1a{bottom:458.089950px;}
.y14f{bottom:458.629650px;}
.y16b{bottom:458.753550px;}
.y1a5{bottom:459.621750px;}
.y139{bottom:460.253550px;}
.yf9{bottom:461.629650px;}
.y116{bottom:462.137550px;}
.yde{bottom:465.113850px;}
.y1af{bottom:465.645450px;}
.y186{bottom:465.745650px;}
.yc2{bottom:471.137550px;}
.y35{bottom:473.972100px;}
.y68{bottom:474.397650px;}
.yad{bottom:476.629650px;}
.y8e{bottom:476.629800px;}
.y14e{bottom:481.129650px;}
.y138{bottom:481.253550px;}
.y1a4{bottom:482.121750px;}
.yf8{bottom:484.129650px;}
.y193{bottom:487.613850px;}
.y1ae{bottom:488.145450px;}
.yc1{bottom:493.637550px;}
.y34{bottom:496.472100px;}
.y67{bottom:496.897650px;}
.yac{bottom:499.129650px;}
.y8d{bottom:499.129800px;}
.y137{bottom:502.253550px;}
.y14d{bottom:503.629650px;}
.y16a{bottom:503.753550px;}
.y115{bottom:504.137550px;}
.ydd{bottom:504.621750px;}
.y185{bottom:505.253550px;}
.yf7{bottom:506.629650px;}
.y1bc{bottom:510.645450px;}
.y15{bottom:514.811250px;}
.yc0{bottom:516.137550px;}
.y33{bottom:518.972100px;}
.y66{bottom:519.397650px;}
.yab{bottom:521.629650px;}
.y8c{bottom:521.629800px;}
.y14c{bottom:526.129650px;}
.y169{bottom:526.253550px;}
.y114{bottom:526.637550px;}
.ydc{bottom:527.121750px;}
.y184{bottom:527.753550px;}
.y1ad{bottom:533.145450px;}
.ybf{bottom:538.637550px;}
.y14{bottom:540.011250px;}
.y32{bottom:541.472100px;}
.yaa{bottom:544.129650px;}
.y8b{bottom:544.129800px;}
.y136{bottom:544.253550px;}
.yf6{bottom:546.137550px;}
.y14b{bottom:548.629650px;}
.y113{bottom:549.137550px;}
.ydb{bottom:549.621750px;}
.y183{bottom:550.253550px;}
.y1ac{bottom:555.645450px;}
.y65{bottom:558.905550px;}
.y31{bottom:563.972100px;}
.y1a3{bottom:566.629650px;}
.y8a{bottom:566.629800px;}
.y135{bottom:566.753550px;}
.y19{bottom:567.649050px;}
.yf5{bottom:568.637550px;}
.y168{bottom:571.253550px;}
.yda{bottom:572.121750px;}
.y182{bottom:572.753550px;}
.ybe{bottom:578.145450px;}
.y64{bottom:581.405550px;}
.ya9{bottom:583.637550px;}
.y30{bottom:586.472100px;}
.y1a2{bottom:589.129650px;}
.y134{bottom:589.253550px;}
.yf4{bottom:591.137550px;}
.y14a{bottom:593.629650px;}
.y112{bottom:594.137550px;}
.yd9{bottom:594.621750px;}
.y181{bottom:595.253550px;}
.ybd{bottom:600.645450px;}
.y63{bottom:603.905550px;}
.ya8{bottom:606.137550px;}
.y89{bottom:606.137700px;}
.y2f{bottom:608.972100px;}
.y1a1{bottom:611.629650px;}
.y133{bottom:611.753550px;}
.y41{bottom:612.109800px;}
.y167{bottom:613.253550px;}
.yf3{bottom:613.637550px;}
.y149{bottom:614.629650px;}
.y111{bottom:615.137550px;}
.y180{bottom:617.753550px;}
.ybc{bottom:623.145450px;}
.y13{bottom:624.370350px;}
.y62{bottom:626.405550px;}
.ya7{bottom:628.637550px;}
.y88{bottom:628.637700px;}
.y2e{bottom:631.472100px;}
.yd8{bottom:634.129650px;}
.y132{bottom:634.253550px;}
.y166{bottom:635.753550px;}
.yf2{bottom:636.137550px;}
.y52{bottom:645.645450px;}
.y61{bottom:648.905550px;}
.y12{bottom:649.570350px;}
.ya6{bottom:651.137550px;}
.y87{bottom:651.137700px;}
.y2d{bottom:653.972100px;}
.yd7{bottom:656.629650px;}
.y131{bottom:656.753550px;}
.y110{bottom:657.137550px;}
.y165{bottom:658.253550px;}
.yf1{bottom:658.637550px;}
.y17f{bottom:662.753550px;}
.y51{bottom:668.145450px;}
.y60{bottom:671.405550px;}
.ya5{bottom:673.637550px;}
.y86{bottom:673.637700px;}
.y2c{bottom:676.472100px;}
.y18{bottom:677.208150px;}
.yd6{bottom:679.129650px;}
.y130{bottom:679.253550px;}
.y10f{bottom:679.637550px;}
.y164{bottom:680.753550px;}
.y17e{bottom:683.753550px;}
.y50{bottom:690.645450px;}
.y5f{bottom:693.905550px;}
.ya4{bottom:696.137550px;}
.y85{bottom:696.137700px;}
.y2b{bottom:698.972100px;}
.yd5{bottom:701.629650px;}
.y12f{bottom:701.753550px;}
.y163{bottom:703.253550px;}
.yf0{bottom:703.637550px;}
.y17d{bottom:704.753550px;}
.y4f{bottom:713.145450px;}
.y5e{bottom:716.405550px;}
.ya3{bottom:718.637550px;}
.y84{bottom:718.637700px;}
.y10e{bottom:719.145450px;}
.y2a{bottom:721.472100px;}
.yd4{bottom:724.129650px;}
.y12e{bottom:724.253550px;}
.yef{bottom:724.637550px;}
.y17c{bottom:725.753550px;}
.y4e{bottom:735.645450px;}
.y5d{bottom:738.905550px;}
.ya2{bottom:741.137550px;}
.y83{bottom:741.137700px;}
.y10d{bottom:741.645450px;}
.y162{bottom:742.761450px;}
.y29{bottom:743.972100px;}
.yee{bottom:745.637550px;}
.y1a0{bottom:746.629650px;}
.y17b{bottom:746.753550px;}
.y4d{bottom:758.145450px;}
.y5c{bottom:761.405550px;}
.ya1{bottom:763.637550px;}
.y82{bottom:763.637700px;}
.y12d{bottom:763.761450px;}
.y10c{bottom:764.145450px;}
.y161{bottom:765.261450px;}
.y28{bottom:766.472100px;}
.yed{bottom:766.637550px;}
.y4{bottom:768.562650px;}
.y4c{bottom:780.645450px;}
.ya0{bottom:786.137550px;}
.y81{bottom:786.137700px;}
.y12c{bottom:786.261450px;}
.y10b{bottom:786.645450px;}
.y160{bottom:787.761450px;}
.y17a{bottom:788.753550px;}
.y27{bottom:788.972100px;}
.y3{bottom:797.362650px;}
.y5b{bottom:800.913450px;}
.y4b{bottom:803.145450px;}
.y9f{bottom:808.637550px;}
.y80{bottom:808.637700px;}
.y12b{bottom:808.761450px;}
.y15f{bottom:810.261450px;}
.y179{bottom:811.253550px;}
.y26{bottom:811.472100px;}
.y5a{bottom:823.413450px;}
.y4a{bottom:825.645450px;}
.y9e{bottom:831.137550px;}
.y12a{bottom:831.261450px;}
.y10a{bottom:831.645450px;}
.y15e{bottom:832.761450px;}
.y25{bottom:833.972100px;}
.y2{bottom:844.982100px;}
.y59{bottom:845.913450px;}
.y49{bottom:848.145450px;}
.y7f{bottom:848.145600px;}
.y178{bottom:850.761450px;}
.y109{bottom:852.645450px;}
.yd3{bottom:853.637550px;}
.y129{bottom:853.761450px;}
.y15d{bottom:855.261450px;}
.y24{bottom:856.472100px;}
.y58{bottom:868.413450px;}
.y48{bottom:870.645450px;}
.y7e{bottom:870.645600px;}
.y177{bottom:873.261450px;}
.y108{bottom:873.645450px;}
.y1{bottom:873.782100px;}
.yd2{bottom:876.137550px;}
.y128{bottom:876.261450px;}
.y15c{bottom:877.761450px;}
.y23{bottom:878.972100px;}
.y57{bottom:890.913450px;}
.y47{bottom:893.145450px;}
.y7d{bottom:893.145600px;}
.y176{bottom:895.761450px;}
.yd1{bottom:898.637550px;}
.y127{bottom:898.761450px;}
.y22{bottom:901.472100px;}
.y56{bottom:913.413450px;}
.y46{bottom:915.645450px;}
.y7c{bottom:915.645600px;}
.y175{bottom:918.261450px;}
.y148{bottom:921.137550px;}
.y15b{bottom:922.761450px;}
.y55{bottom:935.913450px;}
.y45{bottom:938.145450px;}
.y7b{bottom:938.145600px;}
.y174{bottom:940.761450px;}
.y147{bottom:943.637550px;}
.y126{bottom:943.761450px;}
.y39{bottom:954.674850px;}
.y54{bottom:958.413450px;}
.y44{bottom:960.645450px;}
.y7a{bottom:960.645600px;}
.y125{bottom:964.761450px;}
.y43{bottom:983.145450px;}
.y79{bottom:983.145600px;}
.y124{bottom:985.761450px;}
.y53{bottom:1003.413450px;}
.y42{bottom:1005.645450px;}
.y78{bottom:1005.645600px;}
.y123{bottom:1006.761450px;}
.y1b{bottom:1013.194050px;}
.y21{bottom:1103.635500px;}
.y20{bottom:1121.635500px;}
.y1f{bottom:1139.635500px;}
.h2{height:44.010000px;}
.h9{height:44.640000px;}
.h8{height:48.900000px;}
.hc{height:49.104000px;}
.h7{height:51.609375px;}
.hb{height:53.790000px;}
.he{height:58.032000px;}
.h4{height:62.496000px;}
.h3{height:68.460000px;}
.ha{height:69.645000px;}
.h1{height:71.424000px;}
.h5{height:75.649622px;}
.hd{height:89.280000px;}
.h6{height:141.925781px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:29.598900px;}
.x5{left:35.632650px;}
.x6{left:38.511150px;}
.xb{left:127.559100px;}
.xa{left:157.322850px;}
.x1{left:174.330750px;}
.x2{left:184.232250px;}
.x3{left:188.528100px;}
.x9{left:202.542600px;}
.x8{left:284.439450px;}
.x7{left:546.783900px;}
@media print{
.v1{vertical-align:-7.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.360000pt;}
.ls28{letter-spacing:-0.938667pt;}
.lsc{letter-spacing:-0.880000pt;}
.lse{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.176000pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls8{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.028267pt;}
.ls52{letter-spacing:0.029333pt;}
.ls50{letter-spacing:0.032533pt;}
.ls51{letter-spacing:0.032853pt;}
.ls53{letter-spacing:0.034667pt;}
.ls44{letter-spacing:0.036267pt;}
.ls47{letter-spacing:0.036800pt;}
.ls45{letter-spacing:0.036960pt;}
.ls57{letter-spacing:0.045173pt;}
.ls56{letter-spacing:0.045333pt;}
.ls19{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.058667pt;}
.ls31{letter-spacing:0.063467pt;}
.ls32{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.064533pt;}
.ls29{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.088000pt;}
.ls15{letter-spacing:0.100267pt;}
.lsa{letter-spacing:0.117333pt;}
.ls46{letter-spacing:0.117867pt;}
.ls3f{letter-spacing:0.143733pt;}
.ls3e{letter-spacing:0.146667pt;}
.ls4b{letter-spacing:0.157867pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.166933pt;}
.ls43{letter-spacing:0.168373pt;}
.ls11{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.205333pt;}
.ls4f{letter-spacing:0.217653pt;}
.ls4d{letter-spacing:0.218133pt;}
.ls4e{letter-spacing:0.218667pt;}
.ls4{letter-spacing:0.234667pt;}
.ls4c{letter-spacing:0.256533pt;}
.ls48{letter-spacing:0.257067pt;}
.ls2e{letter-spacing:0.258720pt;}
.ls3{letter-spacing:0.264000pt;}
.ls40{letter-spacing:0.266133pt;}
.ls18{letter-spacing:0.266667pt;}
.ls41{letter-spacing:0.266933pt;}
.ls54{letter-spacing:0.277333pt;}
.ls55{letter-spacing:0.279253pt;}
.ls2{letter-spacing:0.293333pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls58{letter-spacing:0.332267pt;}
.ls59{letter-spacing:0.332640pt;}
.ls5b{letter-spacing:0.336000pt;}
.ls2b{letter-spacing:0.336747pt;}
.lsf{letter-spacing:0.352000pt;}
.ls36{letter-spacing:0.377813pt;}
.ls49{letter-spacing:0.396800pt;}
.ls4a{letter-spacing:0.410667pt;}
.ls1c{letter-spacing:0.581867pt;}
.ls1d{letter-spacing:0.582400pt;}
.ls3b{letter-spacing:0.762133pt;}
.ls1b{letter-spacing:0.879467pt;}
.ls1a{letter-spacing:0.880000pt;}
.ls5a{letter-spacing:0.938667pt;}
.ls2c{letter-spacing:1.094400pt;}
.ls22{letter-spacing:1.114667pt;}
.ls3c{letter-spacing:1.159467pt;}
.ls20{letter-spacing:1.173333pt;}
.ls21{letter-spacing:1.349333pt;}
.ls3a{letter-spacing:1.381867pt;}
.ls39{letter-spacing:1.382400pt;}
.ls23{letter-spacing:1.525333pt;}
.ls12{letter-spacing:1.676800pt;}
.ls13{letter-spacing:1.677333pt;}
.ls17{letter-spacing:1.923200pt;}
.ls34{letter-spacing:2.323733pt;}
.ls33{letter-spacing:2.324267pt;}
.ls3d{letter-spacing:2.450667pt;}
.ls14{letter-spacing:2.544533pt;}
.ls2f{letter-spacing:3.498133pt;}
.ls2d{letter-spacing:3.498667pt;}
.ls25{letter-spacing:3.690133pt;}
.ls26{letter-spacing:3.690667pt;}
.ls37{letter-spacing:5.090667pt;}
.ls35{letter-spacing:5.091200pt;}
.ws1{word-spacing:-21.760000pt;}
.ws97{word-spacing:-12.906667pt;}
.ws55{word-spacing:-12.848000pt;}
.ws98{word-spacing:-12.320000pt;}
.ws4f{word-spacing:-12.232000pt;}
.ws83{word-spacing:-12.144000pt;}
.ws50{word-spacing:-12.026667pt;}
.ws2e{word-spacing:-11.968000pt;}
.ws77{word-spacing:-11.909333pt;}
.ws6e{word-spacing:-11.733333pt;}
.ws78{word-spacing:-11.381333pt;}
.ws66{word-spacing:-11.322667pt;}
.ws56{word-spacing:-11.200000pt;}
.ws4e{word-spacing:-10.880000pt;}
.ws81{word-spacing:-8.755413pt;}
.ws7c{word-spacing:-8.714347pt;}
.ws96{word-spacing:-8.710240pt;}
.ws94{word-spacing:-8.656853pt;}
.ws8a{word-spacing:-8.644533pt;}
.ws7d{word-spacing:-8.636320pt;}
.ws92{word-spacing:-8.595253pt;}
.ws8b{word-spacing:-8.545973pt;}
.ws82{word-spacing:-8.521333pt;}
.ws95{word-spacing:-8.422773pt;}
.ws8c{word-spacing:-8.414560pt;}
.ws93{word-spacing:-8.410453pt;}
.ws3f{word-spacing:-8.377600pt;}
.ws65{word-spacing:-6.941440pt;}
.ws8e{word-spacing:-2.229333pt;}
.ws3a{word-spacing:-2.112000pt;}
.ws44{word-spacing:-2.053333pt;}
.wsa{word-spacing:-1.994667pt;}
.ws3d{word-spacing:-1.936000pt;}
.ws14{word-spacing:-1.818667pt;}
.ws9{word-spacing:-1.760000pt;}
.ws71{word-spacing:-1.701333pt;}
.ws62{word-spacing:-1.653333pt;}
.ws86{word-spacing:-1.642667pt;}
.ws7f{word-spacing:-1.584000pt;}
.ws10{word-spacing:-1.525333pt;}
.ws75{word-spacing:-1.493333pt;}
.ws72{word-spacing:-1.466667pt;}
.ws31{word-spacing:-1.408000pt;}
.ws73{word-spacing:-1.349333pt;}
.wsd{word-spacing:-1.290667pt;}
.ws60{word-spacing:-1.280000pt;}
.ws74{word-spacing:-1.232000pt;}
.ws8{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.114667pt;}
.ws38{word-spacing:-1.056000pt;}
.ws13{word-spacing:-0.997333pt;}
.ws6a{word-spacing:-0.960000pt;}
.ws16{word-spacing:-0.938667pt;}
.ws3c{word-spacing:-0.880000pt;}
.ws7{word-spacing:-0.821333pt;}
.ws69{word-spacing:-0.762667pt;}
.ws4c{word-spacing:-0.746667pt;}
.ws42{word-spacing:-0.704000pt;}
.ws59{word-spacing:-0.693333pt;}
.ws7a{word-spacing:-0.645333pt;}
.ws35{word-spacing:-0.586667pt;}
.ws41{word-spacing:-0.528000pt;}
.ws52{word-spacing:-0.469333pt;}
.ws26{word-spacing:-0.410667pt;}
.ws28{word-spacing:-0.352000pt;}
.ws5d{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.293333pt;}
.ws57{word-spacing:-0.266667pt;}
.ws2c{word-spacing:-0.234667pt;}
.ws25{word-spacing:-0.176000pt;}
.ws5f{word-spacing:-0.160000pt;}
.ws1c{word-spacing:-0.117333pt;}
.ws4d{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.058667pt;}
.ws1d{word-spacing:0.117333pt;}
.ws63{word-spacing:0.160000pt;}
.wsf{word-spacing:0.176000pt;}
.ws29{word-spacing:0.234667pt;}
.ws33{word-spacing:0.293333pt;}
.ws46{word-spacing:0.352000pt;}
.ws3b{word-spacing:0.410667pt;}
.ws85{word-spacing:0.469333pt;}
.ws70{word-spacing:0.528000pt;}
.ws5a{word-spacing:0.586667pt;}
.ws27{word-spacing:0.645333pt;}
.ws6{word-spacing:0.704000pt;}
.ws15{word-spacing:0.762667pt;}
.wsc{word-spacing:0.821333pt;}
.ws6d{word-spacing:0.853333pt;}
.ws2a{word-spacing:0.880000pt;}
.ws2d{word-spacing:0.938667pt;}
.ws9a{word-spacing:0.997333pt;}
.ws6c{word-spacing:1.013333pt;}
.ws91{word-spacing:1.056000pt;}
.ws4b{word-spacing:1.066667pt;}
.ws22{word-spacing:1.114667pt;}
.ws21{word-spacing:1.173333pt;}
.ws89{word-spacing:1.232000pt;}
.ws64{word-spacing:1.290667pt;}
.ws99{word-spacing:1.349333pt;}
.ws40{word-spacing:1.408000pt;}
.ws6f{word-spacing:1.493333pt;}
.ws18{word-spacing:1.525333pt;}
.ws2f{word-spacing:1.584000pt;}
.ws39{word-spacing:1.642667pt;}
.ws4a{word-spacing:1.701333pt;}
.ws24{word-spacing:1.760000pt;}
.ws5e{word-spacing:1.818667pt;}
.ws20{word-spacing:1.877333pt;}
.ws23{word-spacing:1.936000pt;}
.ws51{word-spacing:1.973333pt;}
.ws12{word-spacing:1.994667pt;}
.ws3{word-spacing:2.053333pt;}
.ws68{word-spacing:2.112000pt;}
.ws11{word-spacing:2.170667pt;}
.ws5c{word-spacing:2.186667pt;}
.ws49{word-spacing:2.229333pt;}
.ws79{word-spacing:2.240000pt;}
.ws80{word-spacing:2.288000pt;}
.ws47{word-spacing:2.346667pt;}
.ws61{word-spacing:2.405333pt;}
.ws1a{word-spacing:2.464000pt;}
.ws1f{word-spacing:2.522667pt;}
.ws17{word-spacing:2.581333pt;}
.ws45{word-spacing:2.640000pt;}
.ws1e{word-spacing:2.698667pt;}
.ws58{word-spacing:2.720000pt;}
.ws4{word-spacing:2.757333pt;}
.ws90{word-spacing:2.816000pt;}
.ws36{word-spacing:2.874667pt;}
.ws37{word-spacing:2.933333pt;}
.ws2{word-spacing:2.992000pt;}
.ws43{word-spacing:3.050667pt;}
.ws87{word-spacing:3.109333pt;}
.ws88{word-spacing:3.168000pt;}
.ws8f{word-spacing:3.226667pt;}
.ws7b{word-spacing:3.253333pt;}
.ws1b{word-spacing:3.285333pt;}
.ws8d{word-spacing:3.344000pt;}
.ws67{word-spacing:3.402667pt;}
.ws2b{word-spacing:3.461333pt;}
.ws5b{word-spacing:3.520000pt;}
.ws5{word-spacing:3.578667pt;}
.ws34{word-spacing:3.637333pt;}
.ws76{word-spacing:3.680000pt;}
.ws6b{word-spacing:3.813333pt;}
.ws48{word-spacing:3.930667pt;}
.ws30{word-spacing:3.989333pt;}
.ws7e{word-spacing:4.165333pt;}
.ws32{word-spacing:4.224000pt;}
.ws84{word-spacing:4.282667pt;}
.ws53{word-spacing:4.634667pt;}
.ws3e{word-spacing:4.752000pt;}
.ws9b{word-spacing:5.456000pt;}
.ws19{word-spacing:10.723200pt;}
.ws9c{word-spacing:11.440000pt;}
._c{margin-left:-6.137067pt;}
._6{margin-left:-3.232533pt;}
._3{margin-left:-2.190933pt;}
._0{margin-left:-1.288533pt;}
._1{width:1.580800pt;}
._5{width:2.528533pt;}
._4{width:3.613867pt;}
._8{width:4.669867pt;}
._9{width:5.744533pt;}
._d{width:12.985067pt;}
._7{width:20.853867pt;}
._b{width:64.000000pt;}
._a{width:67.253333pt;}
._2{width:180.284267pt;}
.fsb{font-size:34.026667pt;}
.fsa{font-size:41.066667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:90.381867pt;}
.fs8{font-size:106.666667pt;}
.fs4{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:40.797467pt;}
.yf{bottom:56.692933pt;}
.y1d{bottom:56.797467pt;}
.ye{bottom:71.092933pt;}
.y1c{bottom:86.093467pt;}
.y1ab{bottom:93.434533pt;}
.y9d{bottom:93.434667pt;}
.y1bb{bottom:93.907067pt;}
.y15a{bottom:94.488133pt;}
.y107{bottom:95.670800pt;}
.y192{bottom:97.996133pt;}
.yec{bottom:98.767867pt;}
.yd{bottom:99.892933pt;}
.y3f{bottom:100.332267pt;}
.y77{bottom:106.568667pt;}
.yd0{bottom:108.552667pt;}
.y159{bottom:110.488133pt;}
.ybb{bottom:113.434533pt;}
.y9c{bottom:113.434667pt;}
.y1ba{bottom:113.907067pt;}
.yc{bottom:114.292933pt;}
.y106{bottom:115.670800pt;}
.y191{bottom:117.996133pt;}
.y19f{bottom:118.316533pt;}
.yeb{bottom:118.767867pt;}
.y3e{bottom:120.332267pt;}
.y122{bottom:124.122267pt;}
.y158{bottom:126.488133pt;}
.y76{bottom:126.568667pt;}
.ycf{bottom:128.552667pt;}
.yb{bottom:128.692933pt;}
.y146{bottom:130.447600pt;}
.yba{bottom:133.434533pt;}
.y9b{bottom:133.434667pt;}
.y1b9{bottom:133.907067pt;}
.y105{bottom:135.670800pt;}
.y190{bottom:137.996133pt;}
.y19e{bottom:138.316533pt;}
.yea{bottom:138.767867pt;}
.y3d{bottom:140.332267pt;}
.ya{bottom:143.092933pt;}
.y121{bottom:144.122267pt;}
.y75{bottom:146.568667pt;}
.yce{bottom:148.552667pt;}
.y145{bottom:150.447600pt;}
.yb9{bottom:153.434533pt;}
.y9a{bottom:153.434667pt;}
.y1c0{bottom:153.907067pt;}
.y104{bottom:155.670800pt;}
.y9{bottom:157.492933pt;}
.y18f{bottom:157.996133pt;}
.y19d{bottom:158.316533pt;}
.ye9{bottom:158.767867pt;}
.y3c{bottom:160.332267pt;}
.y120{bottom:164.122267pt;}
.y74{bottom:166.568667pt;}
.y144{bottom:170.447600pt;}
.y8{bottom:171.892933pt;}
.yb8{bottom:173.434533pt;}
.y99{bottom:173.434667pt;}
.y1b8{bottom:173.907067pt;}
.y103{bottom:175.670800pt;}
.y18e{bottom:177.996133pt;}
.y19c{bottom:178.316533pt;}
.ye8{bottom:178.767867pt;}
.y3b{bottom:180.332267pt;}
.ycd{bottom:183.670800pt;}
.y11f{bottom:184.122267pt;}
.y7{bottom:186.292933pt;}
.y73{bottom:186.568667pt;}
.y143{bottom:190.447600pt;}
.yb7{bottom:193.434533pt;}
.y98{bottom:193.434667pt;}
.y1b7{bottom:193.907067pt;}
.y102{bottom:195.670800pt;}
.y19b{bottom:198.316533pt;}
.ye7{bottom:198.767867pt;}
.y6{bottom:200.692933pt;}
.ycc{bottom:203.670800pt;}
.y72{bottom:206.568667pt;}
.y142{bottom:210.447600pt;}
.y1bf{bottom:213.907067pt;}
.y5{bottom:215.092933pt;}
.y101{bottom:215.670800pt;}
.y173{bottom:216.662800pt;}
.y157{bottom:217.434533pt;}
.y18d{bottom:217.996133pt;}
.y19a{bottom:218.316533pt;}
.ye6{bottom:218.767867pt;}
.ycb{bottom:223.670800pt;}
.y11e{bottom:224.122267pt;}
.y71{bottom:226.568667pt;}
.y40{bottom:227.623467pt;}
.yb6{bottom:228.552667pt;}
.y97{bottom:228.552800pt;}
.y141{bottom:230.447600pt;}
.y1aa{bottom:233.434533pt;}
.y1b6{bottom:233.907067pt;}
.y172{bottom:235.329467pt;}
.y100{bottom:235.670800pt;}
.y156{bottom:237.434533pt;}
.y199{bottom:238.316533pt;}
.y11d{bottom:242.788933pt;}
.yca{bottom:243.670800pt;}
.y70{bottom:246.568667pt;}
.yb5{bottom:248.552667pt;}
.y96{bottom:248.552800pt;}
.y140{bottom:250.447600pt;}
.y1a9{bottom:253.434533pt;}
.y1b5{bottom:253.907067pt;}
.yff{bottom:255.670800pt;}
.y155{bottom:257.434533pt;}
.y198{bottom:258.316533pt;}
.ye5{bottom:258.767867pt;}
.y11c{bottom:261.455600pt;}
.yc9{bottom:263.670800pt;}
.y11{bottom:265.129733pt;}
.y6f{bottom:266.568667pt;}
.yb4{bottom:268.552667pt;}
.y95{bottom:268.552800pt;}
.y13f{bottom:270.447600pt;}
.y171{bottom:272.662800pt;}
.y1a8{bottom:273.434533pt;}
.y1b4{bottom:273.907067pt;}
.yfe{bottom:275.670800pt;}
.ye4{bottom:277.434533pt;}
.y18c{bottom:277.996133pt;}
.y197{bottom:278.316533pt;}
.y10{bottom:279.529733pt;}
.y11b{bottom:280.122267pt;}
.yb3{bottom:288.552667pt;}
.y94{bottom:288.552800pt;}
.y13e{bottom:290.447600pt;}
.y154{bottom:292.552667pt;}
.y170{bottom:292.662800pt;}
.y1a7{bottom:293.434533pt;}
.y1b3{bottom:293.907067pt;}
.ye3{bottom:296.101200pt;}
.y18b{bottom:297.996133pt;}
.y196{bottom:298.316533pt;}
.yc8{bottom:298.788933pt;}
.y6e{bottom:301.686800pt;}
.yb2{bottom:308.552667pt;}
.y93{bottom:308.552800pt;}
.y13d{bottom:310.447600pt;}
.y153{bottom:312.552667pt;}
.y16f{bottom:312.662800pt;}
.y1a6{bottom:313.434533pt;}
.y1b2{bottom:313.907067pt;}
.yfd{bottom:315.670800pt;}
.y18a{bottom:316.662800pt;}
.y195{bottom:318.316533pt;}
.yc7{bottom:318.788933pt;}
.y6d{bottom:321.686800pt;}
.yb1{bottom:328.552667pt;}
.y92{bottom:328.552800pt;}
.y13c{bottom:330.447600pt;}
.y3a{bottom:331.499200pt;}
.y152{bottom:332.552667pt;}
.y16e{bottom:332.662800pt;}
.ye2{bottom:333.434533pt;}
.y1be{bottom:333.907067pt;}
.yfc{bottom:334.337467pt;}
.y11a{bottom:336.122267pt;}
.y194{bottom:338.316533pt;}
.yc6{bottom:338.788933pt;}
.y6c{bottom:341.686800pt;}
.yb0{bottom:348.552667pt;}
.y91{bottom:348.552800pt;}
.y13b{bottom:350.447600pt;}
.y151{bottom:352.552667pt;}
.y16d{bottom:352.662800pt;}
.yfb{bottom:353.004133pt;}
.ye1{bottom:353.434533pt;}
.y1b1{bottom:353.907067pt;}
.y189{bottom:353.996133pt;}
.y119{bottom:354.788933pt;}
.yc5{bottom:358.788933pt;}
.y17{bottom:360.224267pt;}
.y38{bottom:361.308533pt;}
.y6b{bottom:361.686800pt;}
.y90{bottom:368.552800pt;}
.ye0{bottom:373.434533pt;}
.y118{bottom:373.455600pt;}
.y1b0{bottom:373.907067pt;}
.y188{bottom:373.996133pt;}
.yc4{bottom:378.788933pt;}
.y37{bottom:381.308533pt;}
.y6a{bottom:381.686800pt;}
.y16{bottom:382.624133pt;}
.yaf{bottom:383.670800pt;}
.y150{bottom:387.670800pt;}
.y16c{bottom:387.780933pt;}
.yfa{bottom:390.337467pt;}
.y13a{bottom:390.447600pt;}
.y117{bottom:392.122267pt;}
.ydf{bottom:393.434533pt;}
.y1bd{bottom:393.907067pt;}
.y187{bottom:393.996133pt;}
.yc3{bottom:398.788933pt;}
.y36{bottom:401.308533pt;}
.y69{bottom:401.686800pt;}
.yae{bottom:403.670800pt;}
.y8f{bottom:403.670933pt;}
.y1a{bottom:407.191067pt;}
.y14f{bottom:407.670800pt;}
.y16b{bottom:407.780933pt;}
.y1a5{bottom:408.552667pt;}
.y139{bottom:409.114267pt;}
.yf9{bottom:410.337467pt;}
.y116{bottom:410.788933pt;}
.yde{bottom:413.434533pt;}
.y1af{bottom:413.907067pt;}
.y186{bottom:413.996133pt;}
.yc2{bottom:418.788933pt;}
.y35{bottom:421.308533pt;}
.y68{bottom:421.686800pt;}
.yad{bottom:423.670800pt;}
.y8e{bottom:423.670933pt;}
.y14e{bottom:427.670800pt;}
.y138{bottom:427.780933pt;}
.y1a4{bottom:428.552667pt;}
.yf8{bottom:430.337467pt;}
.y193{bottom:433.434533pt;}
.y1ae{bottom:433.907067pt;}
.yc1{bottom:438.788933pt;}
.y34{bottom:441.308533pt;}
.y67{bottom:441.686800pt;}
.yac{bottom:443.670800pt;}
.y8d{bottom:443.670933pt;}
.y137{bottom:446.447600pt;}
.y14d{bottom:447.670800pt;}
.y16a{bottom:447.780933pt;}
.y115{bottom:448.122267pt;}
.ydd{bottom:448.552667pt;}
.y185{bottom:449.114267pt;}
.yf7{bottom:450.337467pt;}
.y1bc{bottom:453.907067pt;}
.y15{bottom:457.610000pt;}
.yc0{bottom:458.788933pt;}
.y33{bottom:461.308533pt;}
.y66{bottom:461.686800pt;}
.yab{bottom:463.670800pt;}
.y8c{bottom:463.670933pt;}
.y14c{bottom:467.670800pt;}
.y169{bottom:467.780933pt;}
.y114{bottom:468.122267pt;}
.ydc{bottom:468.552667pt;}
.y184{bottom:469.114267pt;}
.y1ad{bottom:473.907067pt;}
.ybf{bottom:478.788933pt;}
.y14{bottom:480.010000pt;}
.y32{bottom:481.308533pt;}
.yaa{bottom:483.670800pt;}
.y8b{bottom:483.670933pt;}
.y136{bottom:483.780933pt;}
.yf6{bottom:485.455600pt;}
.y14b{bottom:487.670800pt;}
.y113{bottom:488.122267pt;}
.ydb{bottom:488.552667pt;}
.y183{bottom:489.114267pt;}
.y1ac{bottom:493.907067pt;}
.y65{bottom:496.804933pt;}
.y31{bottom:501.308533pt;}
.y1a3{bottom:503.670800pt;}
.y8a{bottom:503.670933pt;}
.y135{bottom:503.780933pt;}
.y19{bottom:504.576933pt;}
.yf5{bottom:505.455600pt;}
.y168{bottom:507.780933pt;}
.yda{bottom:508.552667pt;}
.y182{bottom:509.114267pt;}
.ybe{bottom:513.907067pt;}
.y64{bottom:516.804933pt;}
.ya9{bottom:518.788933pt;}
.y30{bottom:521.308533pt;}
.y1a2{bottom:523.670800pt;}
.y134{bottom:523.780933pt;}
.yf4{bottom:525.455600pt;}
.y14a{bottom:527.670800pt;}
.y112{bottom:528.122267pt;}
.yd9{bottom:528.552667pt;}
.y181{bottom:529.114267pt;}
.ybd{bottom:533.907067pt;}
.y63{bottom:536.804933pt;}
.ya8{bottom:538.788933pt;}
.y89{bottom:538.789067pt;}
.y2f{bottom:541.308533pt;}
.y1a1{bottom:543.670800pt;}
.y133{bottom:543.780933pt;}
.y41{bottom:544.097600pt;}
.y167{bottom:545.114267pt;}
.yf3{bottom:545.455600pt;}
.y149{bottom:546.337467pt;}
.y111{bottom:546.788933pt;}
.y180{bottom:549.114267pt;}
.ybc{bottom:553.907067pt;}
.y13{bottom:554.995867pt;}
.y62{bottom:556.804933pt;}
.ya7{bottom:558.788933pt;}
.y88{bottom:558.789067pt;}
.y2e{bottom:561.308533pt;}
.yd8{bottom:563.670800pt;}
.y132{bottom:563.780933pt;}
.y166{bottom:565.114267pt;}
.yf2{bottom:565.455600pt;}
.y52{bottom:573.907067pt;}
.y61{bottom:576.804933pt;}
.y12{bottom:577.395867pt;}
.ya6{bottom:578.788933pt;}
.y87{bottom:578.789067pt;}
.y2d{bottom:581.308533pt;}
.yd7{bottom:583.670800pt;}
.y131{bottom:583.780933pt;}
.y110{bottom:584.122267pt;}
.y165{bottom:585.114267pt;}
.yf1{bottom:585.455600pt;}
.y17f{bottom:589.114267pt;}
.y51{bottom:593.907067pt;}
.y60{bottom:596.804933pt;}
.ya5{bottom:598.788933pt;}
.y86{bottom:598.789067pt;}
.y2c{bottom:601.308533pt;}
.y18{bottom:601.962800pt;}
.yd6{bottom:603.670800pt;}
.y130{bottom:603.780933pt;}
.y10f{bottom:604.122267pt;}
.y164{bottom:605.114267pt;}
.y17e{bottom:607.780933pt;}
.y50{bottom:613.907067pt;}
.y5f{bottom:616.804933pt;}
.ya4{bottom:618.788933pt;}
.y85{bottom:618.789067pt;}
.y2b{bottom:621.308533pt;}
.yd5{bottom:623.670800pt;}
.y12f{bottom:623.780933pt;}
.y163{bottom:625.114267pt;}
.yf0{bottom:625.455600pt;}
.y17d{bottom:626.447600pt;}
.y4f{bottom:633.907067pt;}
.y5e{bottom:636.804933pt;}
.ya3{bottom:638.788933pt;}
.y84{bottom:638.789067pt;}
.y10e{bottom:639.240400pt;}
.y2a{bottom:641.308533pt;}
.yd4{bottom:643.670800pt;}
.y12e{bottom:643.780933pt;}
.yef{bottom:644.122267pt;}
.y17c{bottom:645.114267pt;}
.y4e{bottom:653.907067pt;}
.y5d{bottom:656.804933pt;}
.ya2{bottom:658.788933pt;}
.y83{bottom:658.789067pt;}
.y10d{bottom:659.240400pt;}
.y162{bottom:660.232400pt;}
.y29{bottom:661.308533pt;}
.yee{bottom:662.788933pt;}
.y1a0{bottom:663.670800pt;}
.y17b{bottom:663.780933pt;}
.y4d{bottom:673.907067pt;}
.y5c{bottom:676.804933pt;}
.ya1{bottom:678.788933pt;}
.y82{bottom:678.789067pt;}
.y12d{bottom:678.899067pt;}
.y10c{bottom:679.240400pt;}
.y161{bottom:680.232400pt;}
.y28{bottom:681.308533pt;}
.yed{bottom:681.455600pt;}
.y4{bottom:683.166800pt;}
.y4c{bottom:693.907067pt;}
.ya0{bottom:698.788933pt;}
.y81{bottom:698.789067pt;}
.y12c{bottom:698.899067pt;}
.y10b{bottom:699.240400pt;}
.y160{bottom:700.232400pt;}
.y17a{bottom:701.114267pt;}
.y27{bottom:701.308533pt;}
.y3{bottom:708.766800pt;}
.y5b{bottom:711.923067pt;}
.y4b{bottom:713.907067pt;}
.y9f{bottom:718.788933pt;}
.y80{bottom:718.789067pt;}
.y12b{bottom:718.899067pt;}
.y15f{bottom:720.232400pt;}
.y179{bottom:721.114267pt;}
.y26{bottom:721.308533pt;}
.y5a{bottom:731.923067pt;}
.y4a{bottom:733.907067pt;}
.y9e{bottom:738.788933pt;}
.y12a{bottom:738.899067pt;}
.y10a{bottom:739.240400pt;}
.y15e{bottom:740.232400pt;}
.y25{bottom:741.308533pt;}
.y2{bottom:751.095200pt;}
.y59{bottom:751.923067pt;}
.y49{bottom:753.907067pt;}
.y7f{bottom:753.907200pt;}
.y178{bottom:756.232400pt;}
.y109{bottom:757.907067pt;}
.yd3{bottom:758.788933pt;}
.y129{bottom:758.899067pt;}
.y15d{bottom:760.232400pt;}
.y24{bottom:761.308533pt;}
.y58{bottom:771.923067pt;}
.y48{bottom:773.907067pt;}
.y7e{bottom:773.907200pt;}
.y177{bottom:776.232400pt;}
.y108{bottom:776.573733pt;}
.y1{bottom:776.695200pt;}
.yd2{bottom:778.788933pt;}
.y128{bottom:778.899067pt;}
.y15c{bottom:780.232400pt;}
.y23{bottom:781.308533pt;}
.y57{bottom:791.923067pt;}
.y47{bottom:793.907067pt;}
.y7d{bottom:793.907200pt;}
.y176{bottom:796.232400pt;}
.yd1{bottom:798.788933pt;}
.y127{bottom:798.899067pt;}
.y22{bottom:801.308533pt;}
.y56{bottom:811.923067pt;}
.y46{bottom:813.907067pt;}
.y7c{bottom:813.907200pt;}
.y175{bottom:816.232400pt;}
.y148{bottom:818.788933pt;}
.y15b{bottom:820.232400pt;}
.y55{bottom:831.923067pt;}
.y45{bottom:833.907067pt;}
.y7b{bottom:833.907200pt;}
.y174{bottom:836.232400pt;}
.y147{bottom:838.788933pt;}
.y126{bottom:838.899067pt;}
.y39{bottom:848.599867pt;}
.y54{bottom:851.923067pt;}
.y44{bottom:853.907067pt;}
.y7a{bottom:853.907200pt;}
.y125{bottom:857.565733pt;}
.y43{bottom:873.907067pt;}
.y79{bottom:873.907200pt;}
.y124{bottom:876.232400pt;}
.y53{bottom:891.923067pt;}
.y42{bottom:893.907067pt;}
.y78{bottom:893.907200pt;}
.y123{bottom:894.899067pt;}
.y1b{bottom:900.616933pt;}
.y21{bottom:981.009333pt;}
.y20{bottom:997.009333pt;}
.y1f{bottom:1013.009333pt;}
.h2{height:39.120000pt;}
.h9{height:39.680000pt;}
.h8{height:43.466667pt;}
.hc{height:43.648000pt;}
.h7{height:45.875000pt;}
.hb{height:47.813333pt;}
.he{height:51.584000pt;}
.h4{height:55.552000pt;}
.h3{height:60.853333pt;}
.ha{height:61.906667pt;}
.h1{height:63.488000pt;}
.h5{height:67.244109pt;}
.hd{height:79.360000pt;}
.h6{height:126.156250pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.310133pt;}
.x5{left:31.673467pt;}
.x6{left:34.232133pt;}
.xb{left:113.385867pt;}
.xa{left:139.842533pt;}
.x1{left:154.960667pt;}
.x2{left:163.762000pt;}
.x3{left:167.580533pt;}
.x9{left:180.037867pt;}
.x8{left:252.835067pt;}
.x7{left:486.030133pt;}
}




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