
    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_e4f93132043e846dd160d922.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_51cbd1907b5204e4384a5791.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6e511ecf060c6604a27d193d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_de2b866a5995f2ffc64efd0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d19f3ef638de02a55612e01a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e60d35303caa84caa329e7b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ba75f50eec8208bf02809b35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_38c1e272c41607eba3f33df0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa785855d48b4dcb526399e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_af24e5af464bc6617c62bdd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926758;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_c4e72e77d0ab7df04ac42a0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f93a719a94816ea365ccd04b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.799000;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_c4e72e77d0ab7df04ac42a0e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9a80ab97a8ea0a43faabaa9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-17.982000px;}
.v6{vertical-align:-15.984000px;}
.v2{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v5{vertical-align:15.981000px;}
.v1{vertical-align:17.982000px;}
.ls14{letter-spacing:-4.272000px;}
.ls18{letter-spacing:-4.032000px;}
.ls23{letter-spacing:-2.976000px;}
.ls24{letter-spacing:-2.880000px;}
.ls29{letter-spacing:-2.640000px;}
.ls19{letter-spacing:-2.448000px;}
.ls1a{letter-spacing:-2.304000px;}
.ls1e{letter-spacing:-2.112000px;}
.lsc{letter-spacing:-2.064000px;}
.ls12{letter-spacing:-1.920000px;}
.ls1f{letter-spacing:-1.824000px;}
.ls16{letter-spacing:-1.728000px;}
.ls22{letter-spacing:-1.584000px;}
.ls20{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.344000px;}
.ls2d{letter-spacing:-1.200000px;}
.ls26{letter-spacing:-1.152000px;}
.ls28{letter-spacing:-1.104000px;}
.ls17{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.450000px;}
.ls15{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.189000px;}
.lsb{letter-spacing:-0.132000px;}
.ls1d{letter-spacing:-0.096000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.lse{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.624000px;}
.ls27{letter-spacing:0.672000px;}
.ls2a{letter-spacing:1.632000px;}
.ls2{letter-spacing:4.368000px;}
.ls6{letter-spacing:275.456400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws70{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.ws7f{word-spacing:-13.920000px;}
.ws80{word-spacing:-13.248000px;}
.ws71{word-spacing:-12.000000px;}
.ws7e{word-spacing:-11.616000px;}
.ws7d{word-spacing:-11.424000px;}
.ws2{word-spacing:-10.508400px;}
.ws2a{word-spacing:-3.132000px;}
.ws64{word-spacing:-2.970000px;}
.ws7{word-spacing:-2.916000px;}
.ws4b{word-spacing:-2.592000px;}
.ws34{word-spacing:-2.538000px;}
.ws54{word-spacing:-2.430000px;}
.ws6{word-spacing:-2.376000px;}
.ws44{word-spacing:-2.322000px;}
.ws5d{word-spacing:-2.214000px;}
.ws1e{word-spacing:-2.106000px;}
.ws48{word-spacing:-1.944000px;}
.ws74{word-spacing:-1.920000px;}
.ws32{word-spacing:-1.836000px;}
.ws9a{word-spacing:-1.632000px;}
.ws55{word-spacing:-1.458000px;}
.ws5c{word-spacing:-1.296000px;}
.ws52{word-spacing:-1.056000px;}
.ws58{word-spacing:-1.026000px;}
.ws21{word-spacing:-0.972000px;}
.ws67{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.702000px;}
.ws95{word-spacing:-0.672000px;}
.ws7a{word-spacing:-0.624000px;}
.ws82{word-spacing:-0.576000px;}
.ws4c{word-spacing:-0.540000px;}
.ws4e{word-spacing:-0.528000px;}
.ws25{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.432000px;}
.ws8b{word-spacing:-0.336000px;}
.ws65{word-spacing:-0.324000px;}
.ws53{word-spacing:-0.270000px;}
.ws7c{word-spacing:-0.192000px;}
.ws79{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.054000px;}
.ws9b{word-spacing:0.096000px;}
.ws1a{word-spacing:0.108000px;}
.ws61{word-spacing:0.189000px;}
.ws81{word-spacing:0.240000px;}
.ws11{word-spacing:0.270000px;}
.ws84{word-spacing:0.288000px;}
.ws37{word-spacing:0.378000px;}
.ws66{word-spacing:0.432000px;}
.ws75{word-spacing:0.450000px;}
.ws77{word-spacing:0.480000px;}
.ws93{word-spacing:0.576000px;}
.ws89{word-spacing:0.720000px;}
.ws9{word-spacing:0.756000px;}
.ws49{word-spacing:0.816000px;}
.ws85{word-spacing:0.864000px;}
.ws18{word-spacing:1.026000px;}
.ws2f{word-spacing:1.080000px;}
.ws96{word-spacing:1.104000px;}
.ws94{word-spacing:1.152000px;}
.ws9d{word-spacing:1.200000px;}
.ws60{word-spacing:1.296000px;}
.ws91{word-spacing:1.344000px;}
.ws3e{word-spacing:1.350000px;}
.ws4d{word-spacing:1.392000px;}
.ws8e{word-spacing:1.440000px;}
.ws1b{word-spacing:1.458000px;}
.ws5e{word-spacing:1.512000px;}
.ws8f{word-spacing:1.584000px;}
.ws20{word-spacing:1.620000px;}
.ws38{word-spacing:1.782000px;}
.ws8d{word-spacing:1.824000px;}
.ws6a{word-spacing:1.836000px;}
.ws12{word-spacing:1.890000px;}
.ws78{word-spacing:2.064000px;}
.ws8c{word-spacing:2.112000px;}
.ws1c{word-spacing:2.214000px;}
.ws50{word-spacing:2.256000px;}
.ws88{word-spacing:2.304000px;}
.ws14{word-spacing:2.322000px;}
.ws2d{word-spacing:2.430000px;}
.ws87{word-spacing:2.448000px;}
.ws97{word-spacing:2.640000px;}
.ws57{word-spacing:2.700000px;}
.ws92{word-spacing:2.880000px;}
.ws90{word-spacing:2.976000px;}
.ws5b{word-spacing:3.024000px;}
.wsf{word-spacing:3.078000px;}
.ws98{word-spacing:3.216000px;}
.ws7b{word-spacing:3.312000px;}
.ws3a{word-spacing:3.348000px;}
.ws31{word-spacing:3.456000px;}
.ws28{word-spacing:3.780000px;}
.ws24{word-spacing:3.888000px;}
.ws86{word-spacing:4.032000px;}
.ws72{word-spacing:4.176000px;}
.ws43{word-spacing:4.266000px;}
.ws83{word-spacing:4.272000px;}
.ws41{word-spacing:4.374000px;}
.ws10{word-spacing:4.536000px;}
.ws30{word-spacing:4.752000px;}
.ws29{word-spacing:4.806000px;}
.ws36{word-spacing:5.022000px;}
.ws99{word-spacing:5.088000px;}
.ws2b{word-spacing:5.184000px;}
.ws63{word-spacing:5.292000px;}
.wsd{word-spacing:5.454000px;}
.ws47{word-spacing:5.508000px;}
.ws5{word-spacing:5.670000px;}
.ws76{word-spacing:5.712000px;}
.ws56{word-spacing:5.724000px;}
.ws73{word-spacing:5.952000px;}
.wsc{word-spacing:6.048000px;}
.ws1f{word-spacing:6.210000px;}
.wse{word-spacing:6.480000px;}
.ws69{word-spacing:6.534000px;}
.ws26{word-spacing:6.576000px;}
.ws4f{word-spacing:6.768000px;}
.ws68{word-spacing:6.912000px;}
.ws42{word-spacing:7.074000px;}
.ws1d{word-spacing:7.236000px;}
.ws13{word-spacing:7.344000px;}
.wsb{word-spacing:7.398000px;}
.ws27{word-spacing:7.440000px;}
.ws5f{word-spacing:7.452000px;}
.ws19{word-spacing:7.884000px;}
.ws3d{word-spacing:8.100000px;}
.ws17{word-spacing:8.208000px;}
.wsa{word-spacing:8.424000px;}
.ws59{word-spacing:8.640000px;}
.ws45{word-spacing:8.694000px;}
.ws33{word-spacing:9.072000px;}
.ws9c{word-spacing:9.264000px;}
.ws39{word-spacing:9.612000px;}
.ws51{word-spacing:10.080000px;}
.ws15{word-spacing:10.530000px;}
.ws3f{word-spacing:10.584000px;}
.ws62{word-spacing:10.800000px;}
.ws6c{word-spacing:10.908000px;}
.ws4a{word-spacing:11.178000px;}
.ws35{word-spacing:11.502000px;}
.ws46{word-spacing:11.934000px;}
.ws22{word-spacing:11.988000px;}
.ws40{word-spacing:12.042000px;}
.ws8a{word-spacing:12.096000px;}
.ws6b{word-spacing:12.798000px;}
.ws3c{word-spacing:13.068000px;}
.ws16{word-spacing:13.662000px;}
.ws2e{word-spacing:17.064000px;}
.ws5a{word-spacing:19.872000px;}
.ws6f{word-spacing:85.558200px;}
.ws3{word-spacing:105.456000px;}
.ws6d{word-spacing:125.565600px;}
.ws6e{word-spacing:146.893800px;}
.ws23{word-spacing:200.988000px;}
.ws1{word-spacing:1242.054000px;}
._d{margin-left:-29.343600px;}
._e{margin-left:-19.935000px;}
._3{margin-left:-14.974200px;}
._11{margin-left:-6.201600px;}
._2{margin-left:-4.638600px;}
._9{margin-left:-2.926800px;}
._c{margin-left:-1.204200px;}
._0{width:1.733400px;}
._8{width:3.580200px;}
._7{width:4.789800px;}
._6{width:6.064200px;}
._b{width:7.074000px;}
._1{width:8.359200px;}
._5{width:10.081800px;}
._a{width:11.961000px;}
._4{width:13.024800px;}
._13{width:17.026200px;}
._14{width:18.068400px;}
._1e{width:19.626600px;}
._1f{width:20.851200px;}
._21{width:26.064000px;}
._20{width:27.642600px;}
._1b{width:28.794600px;}
._12{width:30.105000px;}
._1d{width:31.381200px;}
._1c{width:34.718400px;}
._19{width:55.584000px;}
._18{width:57.018600px;}
._1a{width:59.587800px;}
._17{width:85.681200px;}
._15{width:236.976000px;}
._16{width:853.488000px;}
._10{width:943.429800px;}
._f{width:1361.538600px;}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:17.301750px;}
.y3d{bottom:41.074650px;}
.y4a{bottom:46.967550px;}
.y4b{bottom:47.167950px;}
.yac{bottom:47.171700px;}
.yab{bottom:47.916000px;}
.y3c{bottom:59.074650px;}
.y41{bottom:59.194650px;}
.y3b{bottom:77.074650px;}
.y40{bottom:77.194650px;}
.y15d{bottom:89.829000px;}
.y164{bottom:90.404100px;}
.yaa{bottom:92.256750px;}
.yc4{bottom:92.279250px;}
.yf7{bottom:92.292750px;}
.y120{bottom:92.295750px;}
.y7d{bottom:92.300250px;}
.y3a{bottom:95.074650px;}
.y3f{bottom:95.194650px;}
.yd3{bottom:97.060050px;}
.y15c{bottom:106.329000px;}
.y163{bottom:106.904100px;}
.ya9{bottom:111.008250px;}
.yc3{bottom:111.030750px;}
.yf6{bottom:111.044250px;}
.y7c{bottom:111.045750px;}
.y11f{bottom:111.047250px;}
.y39{bottom:113.074650px;}
.y3e{bottom:113.194650px;}
.yd2{bottom:113.560050px;}
.y15b{bottom:122.829000px;}
.y162{bottom:123.404100px;}
.ya8{bottom:129.759750px;}
.yf5{bottom:129.795750px;}
.y7b{bottom:129.797250px;}
.y11e{bottom:129.798750px;}
.yd1{bottom:130.060050px;}
.y15a{bottom:139.329000px;}
.y161{bottom:139.904100px;}
.yd0{bottom:146.560050px;}
.ya7{bottom:148.511250px;}
.yc2{bottom:148.533750px;}
.yf4{bottom:148.547250px;}
.y7a{bottom:148.548750px;}
.y11d{bottom:148.550250px;}
.y159{bottom:155.829000px;}
.y160{bottom:156.404100px;}
.y2d{bottom:159.373050px;}
.ycf{bottom:163.060050px;}
.yc1{bottom:167.285250px;}
.yf3{bottom:167.298750px;}
.y79{bottom:167.300250px;}
.y11c{bottom:167.301750px;}
.y15f{bottom:172.904100px;}
.yce{bottom:179.560050px;}
.ya6{bottom:186.014250px;}
.yc0{bottom:186.036750px;}
.y78{bottom:186.047250px;}
.yf2{bottom:186.050250px;}
.y33{bottom:187.813050px;}
.y6{bottom:187.814400px;}
.y158{bottom:188.829000px;}
.y15e{bottom:189.404100px;}
.ycd{bottom:196.060050px;}
.y32{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.ya5{bottom:204.765750px;}
.ybf{bottom:204.788250px;}
.y77{bottom:204.798750px;}
.yf1{bottom:204.801750px;}
.y31{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.ya4{bottom:223.517250px;}
.ybe{bottom:223.539750px;}
.y76{bottom:223.550250px;}
.y30{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.ya3{bottom:242.268750px;}
.ybd{bottom:242.291250px;}
.y75{bottom:242.294250px;}
.y2f{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y11b{bottom:261.017250px;}
.ya2{bottom:261.020250px;}
.ybc{bottom:261.042750px;}
.y74{bottom:261.045750px;}
.y157{bottom:268.815450px;}
.y2e{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y11a{bottom:279.768750px;}
.ya1{bottom:279.771750px;}
.ybb{bottom:279.794250px;}
.y73{bottom:279.797250px;}
.y153{bottom:279.798750px;}
.y156{bottom:285.315450px;}
.y38{bottom:293.073450px;}
.y16a{bottom:293.560500px;}
.y119{bottom:298.520250px;}
.ya0{bottom:298.523250px;}
.yba{bottom:298.545750px;}
.y72{bottom:298.548750px;}
.y152{bottom:298.550250px;}
.y155{bottom:301.815450px;}
.y169{bottom:304.066650px;}
.y37{bottom:309.273450px;}
.y118{bottom:317.271750px;}
.y9f{bottom:317.274750px;}
.yb9{bottom:317.297250px;}
.y71{bottom:317.300250px;}
.y151{bottom:317.301750px;}
.y154{bottom:318.315450px;}
.y168{bottom:323.560500px;}
.y36{bottom:325.473450px;}
.y167{bottom:334.066650px;}
.y117{bottom:336.023250px;}
.y70{bottom:336.045750px;}
.yb8{bottom:336.048750px;}
.yf0{bottom:336.051750px;}
.y166{bottom:353.560500px;}
.y116{bottom:354.774750px;}
.y9e{bottom:354.777750px;}
.y6f{bottom:354.797250px;}
.yb7{bottom:354.800250px;}
.y49{bottom:354.801750px;}
.y165{bottom:364.065150px;}
.y150{bottom:371.647500px;}
.y115{bottom:373.526250px;}
.y9d{bottom:373.529250px;}
.y6e{bottom:373.548750px;}
.yef{bottom:373.550250px;}
.yb6{bottom:373.551750px;}
.y48{bottom:381.723900px;}
.y14f{bottom:388.147500px;}
.y114{bottom:392.277750px;}
.y9c{bottom:392.280750px;}
.yee{bottom:392.298750px;}
.y6d{bottom:392.300250px;}
.y47{bottom:401.217900px;}
.y14e{bottom:404.647500px;}
.y113{bottom:411.029250px;}
.y9b{bottom:411.032250px;}
.yed{bottom:411.050250px;}
.y6c{bottom:411.051750px;}
.y46{bottom:411.723900px;}
.y14d{bottom:421.147500px;}
.y112{bottom:429.780750px;}
.y9a{bottom:429.783750px;}
.yec{bottom:429.800250px;}
.y45{bottom:431.217900px;}
.y191{bottom:436.065450px;}
.y14c{bottom:437.647500px;}
.y44{bottom:441.723900px;}
.yb5{bottom:442.065450px;}
.yeb{bottom:448.524750px;}
.y111{bottom:448.532250px;}
.y99{bottom:448.535250px;}
.y6b{bottom:448.544250px;}
.y190{bottom:452.565450px;}
.y14b{bottom:454.147500px;}
.yb4{bottom:458.565450px;}
.y43{bottom:461.217900px;}
.yea{bottom:467.276250px;}
.y110{bottom:467.283750px;}
.y98{bottom:467.286750px;}
.y6a{bottom:467.295750px;}
.y18f{bottom:469.065450px;}
.y149{bottom:470.647500px;}
.y18e{bottom:485.565450px;}
.ye9{bottom:486.027750px;}
.y10f{bottom:486.035250px;}
.y97{bottom:486.038250px;}
.y69{bottom:486.047250px;}
.y14a{bottom:487.147500px;}
.y148{bottom:487.147800px;}
.ycc{bottom:497.788050px;}
.y22{bottom:498.763950px;}
.y18d{bottom:502.065450px;}
.y10e{bottom:504.786750px;}
.y96{bottom:504.789750px;}
.y68{bottom:504.798750px;}
.y147{bottom:507.883800px;}
.y21{bottom:513.762450px;}
.ycb{bottom:514.288050px;}
.y18c{bottom:518.565450px;}
.ye8{bottom:523.530750px;}
.y10d{bottom:523.538250px;}
.y67{bottom:523.550250px;}
.y146{bottom:524.383800px;}
.y20{bottom:528.760950px;}
.y18b{bottom:535.065450px;}
.y145{bottom:540.883800px;}
.ye7{bottom:542.282250px;}
.y10c{bottom:542.289750px;}
.y95{bottom:542.292750px;}
.y66{bottom:542.298750px;}
.y1f{bottom:543.759450px;}
.y18a{bottom:551.565450px;}
.y144{bottom:557.383800px;}
.y1e{bottom:558.757950px;}
.ye6{bottom:561.033750px;}
.y94{bottom:561.044250px;}
.y65{bottom:561.050250px;}
.y189{bottom:568.065450px;}
.y1d{bottom:573.756450px;}
.y143{bottom:573.883800px;}
.ye5{bottom:579.785250px;}
.y10b{bottom:579.792750px;}
.y93{bottom:579.795750px;}
.y64{bottom:579.797250px;}
.y188{bottom:584.565450px;}
.y1c{bottom:588.754950px;}
.y142{bottom:590.383800px;}
.ye4{bottom:598.536750px;}
.y10a{bottom:598.544250px;}
.y92{bottom:598.547250px;}
.y63{bottom:598.548750px;}
.y187{bottom:601.065450px;}
.y1b{bottom:603.753450px;}
.y141{bottom:606.883800px;}
.ye3{bottom:617.288250px;}
.y109{bottom:617.295750px;}
.y91{bottom:617.298750px;}
.y62{bottom:617.300250px;}
.y186{bottom:617.565450px;}
.y1a{bottom:618.751950px;}
.y13f{bottom:623.383800px;}
.y19{bottom:633.750450px;}
.y185{bottom:634.065450px;}
.ye2{bottom:636.039750px;}
.y108{bottom:636.047250px;}
.y90{bottom:636.050250px;}
.y61{bottom:636.051750px;}
.y140{bottom:639.883800px;}
.y13e{bottom:639.884100px;}
.y18{bottom:648.748950px;}
.y184{bottom:650.565450px;}
.y8f{bottom:654.801750px;}
.y13d{bottom:660.620100px;}
.y17{bottom:663.747450px;}
.y183{bottom:667.065450px;}
.y60{bottom:673.541250px;}
.ye1{bottom:673.542750px;}
.y107{bottom:673.550250px;}
.y13c{bottom:677.120100px;}
.y16{bottom:678.745950px;}
.y182{bottom:683.565450px;}
.y106{bottom:692.280750px;}
.y5f{bottom:692.292750px;}
.ye0{bottom:692.294250px;}
.y8e{bottom:692.301750px;}
.y13b{bottom:693.620100px;}
.y15{bottom:693.744450px;}
.y181{bottom:700.065450px;}
.y14{bottom:708.742950px;}
.y13a{bottom:710.120100px;}
.y105{bottom:711.032250px;}
.y5e{bottom:711.044250px;}
.ydf{bottom:711.045750px;}
.yca{bottom:713.565450px;}
.y180{bottom:716.565450px;}
.y13{bottom:723.741450px;}
.y139{bottom:726.620100px;}
.y104{bottom:729.783750px;}
.y5d{bottom:729.795750px;}
.yde{bottom:729.797250px;}
.yc9{bottom:730.065450px;}
.y17f{bottom:733.065450px;}
.y12{bottom:738.739950px;}
.yb3{bottom:742.065450px;}
.y137{bottom:743.120100px;}
.yc8{bottom:746.565450px;}
.y103{bottom:748.535250px;}
.y8d{bottom:748.536750px;}
.y5c{bottom:748.547250px;}
.ydd{bottom:748.548750px;}
.y17e{bottom:749.565450px;}
.y11{bottom:753.738450px;}
.yb2{bottom:758.565450px;}
.y138{bottom:759.620100px;}
.y136{bottom:759.620400px;}
.yc7{bottom:763.065450px;}
.y17d{bottom:766.065450px;}
.y102{bottom:767.286750px;}
.y8c{bottom:767.288250px;}
.y5b{bottom:767.298750px;}
.ydc{bottom:767.300250px;}
.y10{bottom:768.736950px;}
.yc6{bottom:779.565450px;}
.y135{bottom:780.356400px;}
.y17c{bottom:782.565450px;}
.yf{bottom:783.735450px;}
.y101{bottom:786.038250px;}
.y8b{bottom:786.039750px;}
.y5a{bottom:786.050250px;}
.ydb{bottom:786.051750px;}
.yc5{bottom:796.065450px;}
.y134{bottom:796.856400px;}
.ye{bottom:798.733950px;}
.y17b{bottom:799.065450px;}
.yb1{bottom:800.565450px;}
.y100{bottom:804.789750px;}
.y8a{bottom:804.791250px;}
.y59{bottom:804.801750px;}
.y133{bottom:813.356400px;}
.yd{bottom:813.732450px;}
.y17a{bottom:815.565450px;}
.yb0{bottom:817.065450px;}
.yff{bottom:823.541250px;}
.y89{bottom:823.542750px;}
.yda{bottom:823.551750px;}
.yc{bottom:828.730950px;}
.y132{bottom:829.856400px;}
.y179{bottom:832.065450px;}
.yaf{bottom:833.565450px;}
.y58{bottom:842.292750px;}
.y88{bottom:842.294250px;}
.yb{bottom:843.729450px;}
.y131{bottom:846.356400px;}
.y178{bottom:848.565450px;}
.ya{bottom:858.727950px;}
.y57{bottom:861.044250px;}
.y87{bottom:861.045750px;}
.y12f{bottom:862.856400px;}
.y177{bottom:865.065450px;}
.y9{bottom:873.726450px;}
.y130{bottom:879.356400px;}
.y12e{bottom:879.356700px;}
.yd9{bottom:879.785250px;}
.y56{bottom:879.795750px;}
.y86{bottom:879.797250px;}
.y176{bottom:881.565450px;}
.y8{bottom:888.724950px;}
.y175{bottom:898.065450px;}
.yd8{bottom:898.536750px;}
.y55{bottom:898.547250px;}
.y85{bottom:898.548750px;}
.y12d{bottom:900.092700px;}
.y7{bottom:903.723450px;}
.y174{bottom:914.565450px;}
.y12c{bottom:916.592700px;}
.yd7{bottom:917.288250px;}
.y54{bottom:917.298750px;}
.y84{bottom:917.300250px;}
.y23{bottom:923.289300px;}
.y173{bottom:931.065450px;}
.y12b{bottom:933.092700px;}
.yd6{bottom:936.039750px;}
.y53{bottom:936.050250px;}
.y83{bottom:936.051750px;}
.y172{bottom:947.565450px;}
.y2c{bottom:949.476300px;}
.y12a{bottom:949.592700px;}
.yd5{bottom:954.791250px;}
.y52{bottom:954.797250px;}
.yfe{bottom:954.801750px;}
.y171{bottom:964.065450px;}
.y2b{bottom:965.976300px;}
.y129{bottom:966.092700px;}
.yd4{bottom:973.542750px;}
.y51{bottom:973.548750px;}
.y170{bottom:980.565450px;}
.y2a{bottom:982.473300px;}
.y128{bottom:982.592700px;}
.yfd{bottom:992.283750px;}
.y50{bottom:992.300250px;}
.y16f{bottom:997.065450px;}
.y127{bottom:999.092700px;}
.yfc{bottom:1011.035250px;}
.y82{bottom:1011.045750px;}
.y4f{bottom:1011.048750px;}
.y16e{bottom:1013.565450px;}
.y126{bottom:1015.592700px;}
.y35{bottom:1021.700700px;}
.yfb{bottom:1029.786750px;}
.y81{bottom:1029.797250px;}
.y4e{bottom:1029.800250px;}
.y16d{bottom:1030.065450px;}
.y124{bottom:1032.092700px;}
.y34{bottom:1043.300700px;}
.y16c{bottom:1046.565450px;}
.yfa{bottom:1048.538250px;}
.y80{bottom:1048.548750px;}
.y4d{bottom:1048.551750px;}
.y125{bottom:1048.592700px;}
.y123{bottom:1048.593450px;}
.y16b{bottom:1063.065450px;}
.yf9{bottom:1067.289750px;}
.y7f{bottom:1067.300250px;}
.y122{bottom:1069.329450px;}
.y26{bottom:1071.552600px;}
.yae{bottom:1079.565450px;}
.y29{bottom:1082.937000px;}
.yf8{bottom:1086.041250px;}
.y7e{bottom:1086.048750px;}
.y4c{bottom:1086.051750px;}
.y121{bottom:1090.065450px;}
.yad{bottom:1096.065450px;}
.y28{bottom:1097.937000px;}
.y25{bottom:1103.952600px;}
.y27{bottom:1112.937000px;}
.y24{bottom:1136.352600px;}
.hf{height:30.428156px;}
.h1f{height:30.428756px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.he{height:37.652344px;}
.h5{height:39.339844px;}
.h10{height:39.385444px;}
.h1d{height:40.460925px;}
.h19{height:42.317044px;}
.h4{height:43.031250px;}
.h9{height:44.520000px;}
.hb{height:45.519291px;}
.h1a{height:45.525891px;}
.h15{height:45.531891px;}
.h13{height:45.537891px;}
.h17{height:45.543891px;}
.h16{height:45.549891px;}
.h14{height:45.555891px;}
.h1c{height:45.657891px;}
.h7{height:47.244141px;}
.h6{height:48.410156px;}
.h12{height:48.422156px;}
.h18{height:48.434156px;}
.h1b{height:48.494156px;}
.h1e{height:51.942000px;}
.ha{height:54.504000px;}
.h11{height:56.664000px;}
.h8{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x15{left:88.365900px;}
.x16{left:89.425200px;}
.x1c{left:91.601850px;}
.x1b{left:103.039350px;}
.x17{left:107.425200px;}
.x1f{left:112.039350px;}
.x21{left:116.291250px;}
.x13{left:139.339200px;}
.x1d{left:199.386150px;}
.x10{left:249.930600px;}
.x12{left:263.022600px;}
.xc{left:269.316900px;}
.x6{left:270.660900px;}
.x9{left:271.992900px;}
.x11{left:274.002600px;}
.x1e{left:276.426150px;}
.xa{left:295.332900px;}
.x3{left:312.683850px;}
.xf{left:322.290600px;}
.xd{left:342.062700px;}
.x7{left:356.676900px;}
.xb{left:374.028900px;}
.x8{left:388.056900px;}
.x4{left:395.546850px;}
.x1a{left:451.325100px;}
.x14{left:455.592300px;}
.xe{left:457.694700px;}
.x1{left:469.770150px;}
.x18{left:474.100500px;}
.x19{left:492.094500px;}
.x20{left:496.842450px;}
.x22{left:501.095250px;}
.x5{left:508.811850px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v6{vertical-align:-14.208000pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v5{vertical-align:14.205333pt;}
.v1{vertical-align:15.984000pt;}
.ls14{letter-spacing:-3.797333pt;}
.ls18{letter-spacing:-3.584000pt;}
.ls23{letter-spacing:-2.645333pt;}
.ls24{letter-spacing:-2.560000pt;}
.ls29{letter-spacing:-2.346667pt;}
.ls19{letter-spacing:-2.176000pt;}
.ls1a{letter-spacing:-2.048000pt;}
.ls1e{letter-spacing:-1.877333pt;}
.lsc{letter-spacing:-1.834667pt;}
.ls12{letter-spacing:-1.706667pt;}
.ls1f{letter-spacing:-1.621333pt;}
.ls16{letter-spacing:-1.536000pt;}
.ls22{letter-spacing:-1.408000pt;}
.ls20{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.194667pt;}
.ls2d{letter-spacing:-1.066667pt;}
.ls26{letter-spacing:-1.024000pt;}
.ls28{letter-spacing:-0.981333pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.400000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.168000pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls1d{letter-spacing:-0.085333pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.554667pt;}
.ls27{letter-spacing:0.597333pt;}
.ls2a{letter-spacing:1.450667pt;}
.ls2{letter-spacing:3.882667pt;}
.ls6{letter-spacing:244.850133pt;}
.ws70{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws7f{word-spacing:-12.373333pt;}
.ws80{word-spacing:-11.776000pt;}
.ws71{word-spacing:-10.666667pt;}
.ws7e{word-spacing:-10.325333pt;}
.ws7d{word-spacing:-10.154667pt;}
.ws2{word-spacing:-9.340800pt;}
.ws2a{word-spacing:-2.784000pt;}
.ws64{word-spacing:-2.640000pt;}
.ws7{word-spacing:-2.592000pt;}
.ws4b{word-spacing:-2.304000pt;}
.ws34{word-spacing:-2.256000pt;}
.ws54{word-spacing:-2.160000pt;}
.ws6{word-spacing:-2.112000pt;}
.ws44{word-spacing:-2.064000pt;}
.ws5d{word-spacing:-1.968000pt;}
.ws1e{word-spacing:-1.872000pt;}
.ws48{word-spacing:-1.728000pt;}
.ws74{word-spacing:-1.706667pt;}
.ws32{word-spacing:-1.632000pt;}
.ws9a{word-spacing:-1.450667pt;}
.ws55{word-spacing:-1.296000pt;}
.ws5c{word-spacing:-1.152000pt;}
.ws52{word-spacing:-0.938667pt;}
.ws58{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.864000pt;}
.ws67{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.624000pt;}
.ws95{word-spacing:-0.597333pt;}
.ws7a{word-spacing:-0.554667pt;}
.ws82{word-spacing:-0.512000pt;}
.ws4c{word-spacing:-0.480000pt;}
.ws4e{word-spacing:-0.469333pt;}
.ws25{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws8b{word-spacing:-0.298667pt;}
.ws65{word-spacing:-0.288000pt;}
.ws53{word-spacing:-0.240000pt;}
.ws7c{word-spacing:-0.170667pt;}
.ws79{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.048000pt;}
.ws9b{word-spacing:0.085333pt;}
.ws1a{word-spacing:0.096000pt;}
.ws61{word-spacing:0.168000pt;}
.ws81{word-spacing:0.213333pt;}
.ws11{word-spacing:0.240000pt;}
.ws84{word-spacing:0.256000pt;}
.ws37{word-spacing:0.336000pt;}
.ws66{word-spacing:0.384000pt;}
.ws75{word-spacing:0.400000pt;}
.ws77{word-spacing:0.426667pt;}
.ws93{word-spacing:0.512000pt;}
.ws89{word-spacing:0.640000pt;}
.ws9{word-spacing:0.672000pt;}
.ws49{word-spacing:0.725333pt;}
.ws85{word-spacing:0.768000pt;}
.ws18{word-spacing:0.912000pt;}
.ws2f{word-spacing:0.960000pt;}
.ws96{word-spacing:0.981333pt;}
.ws94{word-spacing:1.024000pt;}
.ws9d{word-spacing:1.066667pt;}
.ws60{word-spacing:1.152000pt;}
.ws91{word-spacing:1.194667pt;}
.ws3e{word-spacing:1.200000pt;}
.ws4d{word-spacing:1.237333pt;}
.ws8e{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.296000pt;}
.ws5e{word-spacing:1.344000pt;}
.ws8f{word-spacing:1.408000pt;}
.ws20{word-spacing:1.440000pt;}
.ws38{word-spacing:1.584000pt;}
.ws8d{word-spacing:1.621333pt;}
.ws6a{word-spacing:1.632000pt;}
.ws12{word-spacing:1.680000pt;}
.ws78{word-spacing:1.834667pt;}
.ws8c{word-spacing:1.877333pt;}
.ws1c{word-spacing:1.968000pt;}
.ws50{word-spacing:2.005333pt;}
.ws88{word-spacing:2.048000pt;}
.ws14{word-spacing:2.064000pt;}
.ws2d{word-spacing:2.160000pt;}
.ws87{word-spacing:2.176000pt;}
.ws97{word-spacing:2.346667pt;}
.ws57{word-spacing:2.400000pt;}
.ws92{word-spacing:2.560000pt;}
.ws90{word-spacing:2.645333pt;}
.ws5b{word-spacing:2.688000pt;}
.wsf{word-spacing:2.736000pt;}
.ws98{word-spacing:2.858667pt;}
.ws7b{word-spacing:2.944000pt;}
.ws3a{word-spacing:2.976000pt;}
.ws31{word-spacing:3.072000pt;}
.ws28{word-spacing:3.360000pt;}
.ws24{word-spacing:3.456000pt;}
.ws86{word-spacing:3.584000pt;}
.ws72{word-spacing:3.712000pt;}
.ws43{word-spacing:3.792000pt;}
.ws83{word-spacing:3.797333pt;}
.ws41{word-spacing:3.888000pt;}
.ws10{word-spacing:4.032000pt;}
.ws30{word-spacing:4.224000pt;}
.ws29{word-spacing:4.272000pt;}
.ws36{word-spacing:4.464000pt;}
.ws99{word-spacing:4.522667pt;}
.ws2b{word-spacing:4.608000pt;}
.ws63{word-spacing:4.704000pt;}
.wsd{word-spacing:4.848000pt;}
.ws47{word-spacing:4.896000pt;}
.ws5{word-spacing:5.040000pt;}
.ws76{word-spacing:5.077333pt;}
.ws56{word-spacing:5.088000pt;}
.ws73{word-spacing:5.290667pt;}
.wsc{word-spacing:5.376000pt;}
.ws1f{word-spacing:5.520000pt;}
.wse{word-spacing:5.760000pt;}
.ws69{word-spacing:5.808000pt;}
.ws26{word-spacing:5.845333pt;}
.ws4f{word-spacing:6.016000pt;}
.ws68{word-spacing:6.144000pt;}
.ws42{word-spacing:6.288000pt;}
.ws1d{word-spacing:6.432000pt;}
.ws13{word-spacing:6.528000pt;}
.wsb{word-spacing:6.576000pt;}
.ws27{word-spacing:6.613333pt;}
.ws5f{word-spacing:6.624000pt;}
.ws19{word-spacing:7.008000pt;}
.ws3d{word-spacing:7.200000pt;}
.ws17{word-spacing:7.296000pt;}
.wsa{word-spacing:7.488000pt;}
.ws59{word-spacing:7.680000pt;}
.ws45{word-spacing:7.728000pt;}
.ws33{word-spacing:8.064000pt;}
.ws9c{word-spacing:8.234667pt;}
.ws39{word-spacing:8.544000pt;}
.ws51{word-spacing:8.960000pt;}
.ws15{word-spacing:9.360000pt;}
.ws3f{word-spacing:9.408000pt;}
.ws62{word-spacing:9.600000pt;}
.ws6c{word-spacing:9.696000pt;}
.ws4a{word-spacing:9.936000pt;}
.ws35{word-spacing:10.224000pt;}
.ws46{word-spacing:10.608000pt;}
.ws22{word-spacing:10.656000pt;}
.ws40{word-spacing:10.704000pt;}
.ws8a{word-spacing:10.752000pt;}
.ws6b{word-spacing:11.376000pt;}
.ws3c{word-spacing:11.616000pt;}
.ws16{word-spacing:12.144000pt;}
.ws2e{word-spacing:15.168000pt;}
.ws5a{word-spacing:17.664000pt;}
.ws6f{word-spacing:76.051733pt;}
.ws3{word-spacing:93.738667pt;}
.ws6d{word-spacing:111.613867pt;}
.ws6e{word-spacing:130.572267pt;}
.ws23{word-spacing:178.656000pt;}
.ws1{word-spacing:1104.048000pt;}
._d{margin-left:-26.083200pt;}
._e{margin-left:-17.720000pt;}
._3{margin-left:-13.310400pt;}
._11{margin-left:-5.512533pt;}
._2{margin-left:-4.123200pt;}
._9{margin-left:-2.601600pt;}
._c{margin-left:-1.070400pt;}
._0{width:1.540800pt;}
._8{width:3.182400pt;}
._7{width:4.257600pt;}
._6{width:5.390400pt;}
._b{width:6.288000pt;}
._1{width:7.430400pt;}
._5{width:8.961600pt;}
._a{width:10.632000pt;}
._4{width:11.577600pt;}
._13{width:15.134400pt;}
._14{width:16.060800pt;}
._1e{width:17.445867pt;}
._1f{width:18.534400pt;}
._21{width:23.168000pt;}
._20{width:24.571200pt;}
._1b{width:25.595200pt;}
._12{width:26.760000pt;}
._1d{width:27.894400pt;}
._1c{width:30.860800pt;}
._19{width:49.408000pt;}
._18{width:50.683200pt;}
._1a{width:52.966933pt;}
._17{width:76.161067pt;}
._15{width:210.645333pt;}
._16{width:758.656000pt;}
._10{width:838.604267pt;}
._f{width:1210.256533pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:15.379333pt;}
.y3d{bottom:36.510800pt;}
.y4a{bottom:41.748933pt;}
.y4b{bottom:41.927067pt;}
.yac{bottom:41.930400pt;}
.yab{bottom:42.592000pt;}
.y3c{bottom:52.510800pt;}
.y41{bottom:52.617467pt;}
.y3b{bottom:68.510800pt;}
.y40{bottom:68.617467pt;}
.y15d{bottom:79.848000pt;}
.y164{bottom:80.359200pt;}
.yaa{bottom:82.006000pt;}
.yc4{bottom:82.026000pt;}
.yf7{bottom:82.038000pt;}
.y120{bottom:82.040667pt;}
.y7d{bottom:82.044667pt;}
.y3a{bottom:84.510800pt;}
.y3f{bottom:84.617467pt;}
.yd3{bottom:86.275600pt;}
.y15c{bottom:94.514667pt;}
.y163{bottom:95.025867pt;}
.ya9{bottom:98.674000pt;}
.yc3{bottom:98.694000pt;}
.yf6{bottom:98.706000pt;}
.y7c{bottom:98.707333pt;}
.y11f{bottom:98.708667pt;}
.y39{bottom:100.510800pt;}
.y3e{bottom:100.617467pt;}
.yd2{bottom:100.942267pt;}
.y15b{bottom:109.181333pt;}
.y162{bottom:109.692533pt;}
.ya8{bottom:115.342000pt;}
.yf5{bottom:115.374000pt;}
.y7b{bottom:115.375333pt;}
.y11e{bottom:115.376667pt;}
.yd1{bottom:115.608933pt;}
.y15a{bottom:123.848000pt;}
.y161{bottom:124.359200pt;}
.yd0{bottom:130.275600pt;}
.ya7{bottom:132.010000pt;}
.yc2{bottom:132.030000pt;}
.yf4{bottom:132.042000pt;}
.y7a{bottom:132.043333pt;}
.y11d{bottom:132.044667pt;}
.y159{bottom:138.514667pt;}
.y160{bottom:139.025867pt;}
.y2d{bottom:141.664933pt;}
.ycf{bottom:144.942267pt;}
.yc1{bottom:148.698000pt;}
.yf3{bottom:148.710000pt;}
.y79{bottom:148.711333pt;}
.y11c{bottom:148.712667pt;}
.y15f{bottom:153.692533pt;}
.yce{bottom:159.608933pt;}
.ya6{bottom:165.346000pt;}
.yc0{bottom:165.366000pt;}
.y78{bottom:165.375333pt;}
.yf2{bottom:165.378000pt;}
.y33{bottom:166.944933pt;}
.y6{bottom:166.946133pt;}
.y158{bottom:167.848000pt;}
.y15e{bottom:168.359200pt;}
.ycd{bottom:174.275600pt;}
.y32{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.ya5{bottom:182.014000pt;}
.ybf{bottom:182.034000pt;}
.y77{bottom:182.043333pt;}
.yf1{bottom:182.046000pt;}
.y31{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.ya4{bottom:198.682000pt;}
.ybe{bottom:198.702000pt;}
.y76{bottom:198.711333pt;}
.y30{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.ya3{bottom:215.350000pt;}
.ybd{bottom:215.370000pt;}
.y75{bottom:215.372667pt;}
.y2f{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y11b{bottom:232.015333pt;}
.ya2{bottom:232.018000pt;}
.ybc{bottom:232.038000pt;}
.y74{bottom:232.040667pt;}
.y157{bottom:238.947067pt;}
.y2e{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y11a{bottom:248.683333pt;}
.ya1{bottom:248.686000pt;}
.ybb{bottom:248.706000pt;}
.y73{bottom:248.708667pt;}
.y153{bottom:248.710000pt;}
.y156{bottom:253.613733pt;}
.y38{bottom:260.509733pt;}
.y16a{bottom:260.942667pt;}
.y119{bottom:265.351333pt;}
.ya0{bottom:265.354000pt;}
.yba{bottom:265.374000pt;}
.y72{bottom:265.376667pt;}
.y152{bottom:265.378000pt;}
.y155{bottom:268.280400pt;}
.y169{bottom:270.281467pt;}
.y37{bottom:274.909733pt;}
.y118{bottom:282.019333pt;}
.y9f{bottom:282.022000pt;}
.yb9{bottom:282.042000pt;}
.y71{bottom:282.044667pt;}
.y151{bottom:282.046000pt;}
.y154{bottom:282.947067pt;}
.y168{bottom:287.609333pt;}
.y36{bottom:289.309733pt;}
.y167{bottom:296.948133pt;}
.y117{bottom:298.687333pt;}
.y70{bottom:298.707333pt;}
.yb8{bottom:298.710000pt;}
.yf0{bottom:298.712667pt;}
.y166{bottom:314.276000pt;}
.y116{bottom:315.355333pt;}
.y9e{bottom:315.358000pt;}
.y6f{bottom:315.375333pt;}
.yb7{bottom:315.378000pt;}
.y49{bottom:315.379333pt;}
.y165{bottom:323.613467pt;}
.y150{bottom:330.353333pt;}
.y115{bottom:332.023333pt;}
.y9d{bottom:332.026000pt;}
.y6e{bottom:332.043333pt;}
.yef{bottom:332.044667pt;}
.yb6{bottom:332.046000pt;}
.y48{bottom:339.310133pt;}
.y14f{bottom:345.020000pt;}
.y114{bottom:348.691333pt;}
.y9c{bottom:348.694000pt;}
.yee{bottom:348.710000pt;}
.y6d{bottom:348.711333pt;}
.y47{bottom:356.638133pt;}
.y14e{bottom:359.686667pt;}
.y113{bottom:365.359333pt;}
.y9b{bottom:365.362000pt;}
.yed{bottom:365.378000pt;}
.y6c{bottom:365.379333pt;}
.y46{bottom:365.976800pt;}
.y14d{bottom:374.353333pt;}
.y112{bottom:382.027333pt;}
.y9a{bottom:382.030000pt;}
.yec{bottom:382.044667pt;}
.y45{bottom:383.304800pt;}
.y191{bottom:387.613733pt;}
.y14c{bottom:389.020000pt;}
.y44{bottom:392.643467pt;}
.yb5{bottom:392.947067pt;}
.yeb{bottom:398.688667pt;}
.y111{bottom:398.695333pt;}
.y99{bottom:398.698000pt;}
.y6b{bottom:398.706000pt;}
.y190{bottom:402.280400pt;}
.y14b{bottom:403.686667pt;}
.yb4{bottom:407.613733pt;}
.y43{bottom:409.971467pt;}
.yea{bottom:415.356667pt;}
.y110{bottom:415.363333pt;}
.y98{bottom:415.366000pt;}
.y6a{bottom:415.374000pt;}
.y18f{bottom:416.947067pt;}
.y149{bottom:418.353333pt;}
.y18e{bottom:431.613733pt;}
.ye9{bottom:432.024667pt;}
.y10f{bottom:432.031333pt;}
.y97{bottom:432.034000pt;}
.y69{bottom:432.042000pt;}
.y14a{bottom:433.020000pt;}
.y148{bottom:433.020267pt;}
.ycc{bottom:442.478267pt;}
.y22{bottom:443.345733pt;}
.y18d{bottom:446.280400pt;}
.y10e{bottom:448.699333pt;}
.y96{bottom:448.702000pt;}
.y68{bottom:448.710000pt;}
.y147{bottom:451.452267pt;}
.y21{bottom:456.677733pt;}
.ycb{bottom:457.144933pt;}
.y18c{bottom:460.947067pt;}
.ye8{bottom:465.360667pt;}
.y10d{bottom:465.367333pt;}
.y67{bottom:465.378000pt;}
.y146{bottom:466.118933pt;}
.y20{bottom:470.009733pt;}
.y18b{bottom:475.613733pt;}
.y145{bottom:480.785600pt;}
.ye7{bottom:482.028667pt;}
.y10c{bottom:482.035333pt;}
.y95{bottom:482.038000pt;}
.y66{bottom:482.043333pt;}
.y1f{bottom:483.341733pt;}
.y18a{bottom:490.280400pt;}
.y144{bottom:495.452267pt;}
.y1e{bottom:496.673733pt;}
.ye6{bottom:498.696667pt;}
.y94{bottom:498.706000pt;}
.y65{bottom:498.711333pt;}
.y189{bottom:504.947067pt;}
.y1d{bottom:510.005733pt;}
.y143{bottom:510.118933pt;}
.ye5{bottom:515.364667pt;}
.y10b{bottom:515.371333pt;}
.y93{bottom:515.374000pt;}
.y64{bottom:515.375333pt;}
.y188{bottom:519.613733pt;}
.y1c{bottom:523.337733pt;}
.y142{bottom:524.785600pt;}
.ye4{bottom:532.032667pt;}
.y10a{bottom:532.039333pt;}
.y92{bottom:532.042000pt;}
.y63{bottom:532.043333pt;}
.y187{bottom:534.280400pt;}
.y1b{bottom:536.669733pt;}
.y141{bottom:539.452267pt;}
.ye3{bottom:548.700667pt;}
.y109{bottom:548.707333pt;}
.y91{bottom:548.710000pt;}
.y62{bottom:548.711333pt;}
.y186{bottom:548.947067pt;}
.y1a{bottom:550.001733pt;}
.y13f{bottom:554.118933pt;}
.y19{bottom:563.333733pt;}
.y185{bottom:563.613733pt;}
.ye2{bottom:565.368667pt;}
.y108{bottom:565.375333pt;}
.y90{bottom:565.378000pt;}
.y61{bottom:565.379333pt;}
.y140{bottom:568.785600pt;}
.y13e{bottom:568.785867pt;}
.y18{bottom:576.665733pt;}
.y184{bottom:578.280400pt;}
.y8f{bottom:582.046000pt;}
.y13d{bottom:587.217867pt;}
.y17{bottom:589.997733pt;}
.y183{bottom:592.947067pt;}
.y60{bottom:598.703333pt;}
.ye1{bottom:598.704667pt;}
.y107{bottom:598.711333pt;}
.y13c{bottom:601.884533pt;}
.y16{bottom:603.329733pt;}
.y182{bottom:607.613733pt;}
.y106{bottom:615.360667pt;}
.y5f{bottom:615.371333pt;}
.ye0{bottom:615.372667pt;}
.y8e{bottom:615.379333pt;}
.y13b{bottom:616.551200pt;}
.y15{bottom:616.661733pt;}
.y181{bottom:622.280400pt;}
.y14{bottom:629.993733pt;}
.y13a{bottom:631.217867pt;}
.y105{bottom:632.028667pt;}
.y5e{bottom:632.039333pt;}
.ydf{bottom:632.040667pt;}
.yca{bottom:634.280400pt;}
.y180{bottom:636.947067pt;}
.y13{bottom:643.325733pt;}
.y139{bottom:645.884533pt;}
.y104{bottom:648.696667pt;}
.y5d{bottom:648.707333pt;}
.yde{bottom:648.708667pt;}
.yc9{bottom:648.947067pt;}
.y17f{bottom:651.613733pt;}
.y12{bottom:656.657733pt;}
.yb3{bottom:659.613733pt;}
.y137{bottom:660.551200pt;}
.yc8{bottom:663.613733pt;}
.y103{bottom:665.364667pt;}
.y8d{bottom:665.366000pt;}
.y5c{bottom:665.375333pt;}
.ydd{bottom:665.376667pt;}
.y17e{bottom:666.280400pt;}
.y11{bottom:669.989733pt;}
.yb2{bottom:674.280400pt;}
.y138{bottom:675.217867pt;}
.y136{bottom:675.218133pt;}
.yc7{bottom:678.280400pt;}
.y17d{bottom:680.947067pt;}
.y102{bottom:682.032667pt;}
.y8c{bottom:682.034000pt;}
.y5b{bottom:682.043333pt;}
.ydc{bottom:682.044667pt;}
.y10{bottom:683.321733pt;}
.yc6{bottom:692.947067pt;}
.y135{bottom:693.650133pt;}
.y17c{bottom:695.613733pt;}
.yf{bottom:696.653733pt;}
.y101{bottom:698.700667pt;}
.y8b{bottom:698.702000pt;}
.y5a{bottom:698.711333pt;}
.ydb{bottom:698.712667pt;}
.yc5{bottom:707.613733pt;}
.y134{bottom:708.316800pt;}
.ye{bottom:709.985733pt;}
.y17b{bottom:710.280400pt;}
.yb1{bottom:711.613733pt;}
.y100{bottom:715.368667pt;}
.y8a{bottom:715.370000pt;}
.y59{bottom:715.379333pt;}
.y133{bottom:722.983467pt;}
.yd{bottom:723.317733pt;}
.y17a{bottom:724.947067pt;}
.yb0{bottom:726.280400pt;}
.yff{bottom:732.036667pt;}
.y89{bottom:732.038000pt;}
.yda{bottom:732.046000pt;}
.yc{bottom:736.649733pt;}
.y132{bottom:737.650133pt;}
.y179{bottom:739.613733pt;}
.yaf{bottom:740.947067pt;}
.y58{bottom:748.704667pt;}
.y88{bottom:748.706000pt;}
.yb{bottom:749.981733pt;}
.y131{bottom:752.316800pt;}
.y178{bottom:754.280400pt;}
.ya{bottom:763.313733pt;}
.y57{bottom:765.372667pt;}
.y87{bottom:765.374000pt;}
.y12f{bottom:766.983467pt;}
.y177{bottom:768.947067pt;}
.y9{bottom:776.645733pt;}
.y130{bottom:781.650133pt;}
.y12e{bottom:781.650400pt;}
.yd9{bottom:782.031333pt;}
.y56{bottom:782.040667pt;}
.y86{bottom:782.042000pt;}
.y176{bottom:783.613733pt;}
.y8{bottom:789.977733pt;}
.y175{bottom:798.280400pt;}
.yd8{bottom:798.699333pt;}
.y55{bottom:798.708667pt;}
.y85{bottom:798.710000pt;}
.y12d{bottom:800.082400pt;}
.y7{bottom:803.309733pt;}
.y174{bottom:812.947067pt;}
.y12c{bottom:814.749067pt;}
.yd7{bottom:815.367333pt;}
.y54{bottom:815.376667pt;}
.y84{bottom:815.378000pt;}
.y23{bottom:820.701600pt;}
.y173{bottom:827.613733pt;}
.y12b{bottom:829.415733pt;}
.yd6{bottom:832.035333pt;}
.y53{bottom:832.044667pt;}
.y83{bottom:832.046000pt;}
.y172{bottom:842.280400pt;}
.y2c{bottom:843.978933pt;}
.y12a{bottom:844.082400pt;}
.yd5{bottom:848.703333pt;}
.y52{bottom:848.708667pt;}
.yfe{bottom:848.712667pt;}
.y171{bottom:856.947067pt;}
.y2b{bottom:858.645600pt;}
.y129{bottom:858.749067pt;}
.yd4{bottom:865.371333pt;}
.y51{bottom:865.376667pt;}
.y170{bottom:871.613733pt;}
.y2a{bottom:873.309600pt;}
.y128{bottom:873.415733pt;}
.yfd{bottom:882.030000pt;}
.y50{bottom:882.044667pt;}
.y16f{bottom:886.280400pt;}
.y127{bottom:888.082400pt;}
.yfc{bottom:898.698000pt;}
.y82{bottom:898.707333pt;}
.y4f{bottom:898.710000pt;}
.y16e{bottom:900.947067pt;}
.y126{bottom:902.749067pt;}
.y35{bottom:908.178400pt;}
.yfb{bottom:915.366000pt;}
.y81{bottom:915.375333pt;}
.y4e{bottom:915.378000pt;}
.y16d{bottom:915.613733pt;}
.y124{bottom:917.415733pt;}
.y34{bottom:927.378400pt;}
.y16c{bottom:930.280400pt;}
.yfa{bottom:932.034000pt;}
.y80{bottom:932.043333pt;}
.y4d{bottom:932.046000pt;}
.y125{bottom:932.082400pt;}
.y123{bottom:932.083067pt;}
.y16b{bottom:944.947067pt;}
.yf9{bottom:948.702000pt;}
.y7f{bottom:948.711333pt;}
.y122{bottom:950.515067pt;}
.y26{bottom:952.491200pt;}
.yae{bottom:959.613733pt;}
.y29{bottom:962.610667pt;}
.yf8{bottom:965.370000pt;}
.y7e{bottom:965.376667pt;}
.y4c{bottom:965.379333pt;}
.y121{bottom:968.947067pt;}
.yad{bottom:974.280400pt;}
.y28{bottom:975.944000pt;}
.y25{bottom:981.291200pt;}
.y27{bottom:989.277333pt;}
.y24{bottom:1010.091200pt;}
.hf{height:27.047250pt;}
.h1f{height:27.047783pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.he{height:33.468750pt;}
.h5{height:34.968750pt;}
.h10{height:35.009283pt;}
.h1d{height:35.965267pt;}
.h19{height:37.615150pt;}
.h4{height:38.250000pt;}
.h9{height:39.573333pt;}
.hb{height:40.461592pt;}
.h1a{height:40.467458pt;}
.h15{height:40.472792pt;}
.h13{height:40.478125pt;}
.h17{height:40.483458pt;}
.h16{height:40.488792pt;}
.h14{height:40.494125pt;}
.h1c{height:40.584792pt;}
.h7{height:41.994792pt;}
.h6{height:43.031250pt;}
.h12{height:43.041917pt;}
.h18{height:43.052583pt;}
.h1b{height:43.105917pt;}
.h1e{height:46.170667pt;}
.ha{height:48.448000pt;}
.h11{height:50.368000pt;}
.h8{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x15{left:78.547467pt;}
.x16{left:79.489067pt;}
.x1c{left:81.423867pt;}
.x1b{left:91.590533pt;}
.x17{left:95.489067pt;}
.x1f{left:99.590533pt;}
.x21{left:103.370000pt;}
.x13{left:123.857067pt;}
.x1d{left:177.232133pt;}
.x10{left:222.160533pt;}
.x12{left:233.797867pt;}
.xc{left:239.392800pt;}
.x6{left:240.587467pt;}
.x9{left:241.771467pt;}
.x11{left:243.557867pt;}
.x1e{left:245.712133pt;}
.xa{left:262.518133pt;}
.x3{left:277.941200pt;}
.xf{left:286.480533pt;}
.xd{left:304.055733pt;}
.x7{left:317.046133pt;}
.xb{left:332.470133pt;}
.x8{left:344.939467pt;}
.x4{left:351.597200pt;}
.x1a{left:401.177867pt;}
.x14{left:404.970933pt;}
.xe{left:406.839733pt;}
.x1{left:417.573467pt;}
.x18{left:421.422667pt;}
.x19{left:437.417333pt;}
.x20{left:441.637733pt;}
.x22{left:445.418000pt;}
.x5{left:452.277200pt;}
}




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