
    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_815eff8e93ff013010bc9326.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_8f2bc8a56bf22a8e9c021be0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_28765e3dd5290c322ce0fb4b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708000;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_a8d87b11637841be4f53eb48.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_eadaa6842840b1e87c21e09c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_603f1a2657f64b46f783d9a7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.934200;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_26ed486abd74f75fd3d93de8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_1a209a9207f8c34b72f60101.woff')format("woff");}.ff8{font-family:ff8;line-height:0.934200;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_de69ead101bce4206735b5ea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986000;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_9f6216606f3191386da9f68d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.164000;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_7eccc789e7dc46b059ac6eef.woff')format("woff");}.ffb{font-family:ffb;line-height:1.251000;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_50664252afaa887a4c894400.woff')format("woff");}.ffc{font-family:ffc;line-height:1.251000;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_e5de9f653dc52d432048aca7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.131000;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_22c3d977095411dbcc44022e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.131000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.540000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.918000px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.ws0{word-spacing:-15.498000px;}
.ws1{word-spacing:-10.800000px;}
.ws6f{word-spacing:-5.724000px;}
.ws7c{word-spacing:-5.130000px;}
.ws91{word-spacing:-5.022000px;}
.ws21{word-spacing:-4.752000px;}
.wsa{word-spacing:-4.698000px;}
.ws4b{word-spacing:-4.428000px;}
.wsa0{word-spacing:-4.374000px;}
.ws3b{word-spacing:-4.320000px;}
.wsc0{word-spacing:-3.942000px;}
.ws5e{word-spacing:-3.834000px;}
.ws4f{word-spacing:-3.672000px;}
.ws87{word-spacing:-3.456000px;}
.ws9d{word-spacing:-3.402000px;}
.wsb3{word-spacing:-3.348000px;}
.wsaa{word-spacing:-3.294000px;}
.wsbc{word-spacing:-3.186000px;}
.ws9a{word-spacing:-2.970000px;}
.ws62{word-spacing:-2.808000px;}
.ws53{word-spacing:-2.592000px;}
.ws47{word-spacing:-2.376000px;}
.ws57{word-spacing:-2.322000px;}
.ws6a{word-spacing:-2.214000px;}
.ws43{word-spacing:-2.052000px;}
.ws55{word-spacing:-1.998000px;}
.ws2e{word-spacing:-1.944000px;}
.ws49{word-spacing:-1.890000px;}
.ws1f{word-spacing:-1.620000px;}
.ws54{word-spacing:-1.458000px;}
.ws56{word-spacing:-1.404000px;}
.ws2f{word-spacing:-1.350000px;}
.wse{word-spacing:-1.242000px;}
.ws36{word-spacing:-1.188000px;}
.wsc{word-spacing:-0.972000px;}
.wsa6{word-spacing:-0.918000px;}
.ws27{word-spacing:-0.864000px;}
.wsc8{word-spacing:-0.702000px;}
.ws5{word-spacing:-0.648000px;}
.ws40{word-spacing:-0.594000px;}
.ws2c{word-spacing:-0.540000px;}
.wsa9{word-spacing:-0.432000px;}
.ws4a{word-spacing:-0.324000px;}
.wscd{word-spacing:-0.288000px;}
.ws42{word-spacing:-0.270000px;}
.wscb{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.054000px;}
.ws50{word-spacing:0.162000px;}
.ws46{word-spacing:0.216000px;}
.wsc7{word-spacing:0.270000px;}
.ws2b{word-spacing:0.324000px;}
.ws6{word-spacing:0.540000px;}
.ws88{word-spacing:0.594000px;}
.ws3e{word-spacing:0.702000px;}
.ws4{word-spacing:0.780000px;}
.ws24{word-spacing:0.810000px;}
.wsb{word-spacing:0.918000px;}
.ws35{word-spacing:0.972000px;}
.ws3c{word-spacing:1.080000px;}
.ws89{word-spacing:1.134000px;}
.ws25{word-spacing:1.188000px;}
.ws3{word-spacing:1.200000px;}
.wsaf{word-spacing:1.242000px;}
.ws9{word-spacing:1.404000px;}
.ws13{word-spacing:1.458000px;}
.ws48{word-spacing:1.512000px;}
.ws33{word-spacing:1.566000px;}
.ws69{word-spacing:1.620000px;}
.ws67{word-spacing:1.674000px;}
.wsa2{word-spacing:1.728000px;}
.ws44{word-spacing:1.782000px;}
.ws8d{word-spacing:1.836000px;}
.wsbd{word-spacing:1.890000px;}
.ws4d{word-spacing:1.944000px;}
.ws90{word-spacing:1.998000px;}
.wsac{word-spacing:2.052000px;}
.ws60{word-spacing:2.106000px;}
.ws7{word-spacing:2.160000px;}
.ws10{word-spacing:2.214000px;}
.ws92{word-spacing:2.430000px;}
.ws8{word-spacing:2.484000px;}
.ws86{word-spacing:2.538000px;}
.wsb7{word-spacing:2.646000px;}
.ws77{word-spacing:2.700000px;}
.ws2a{word-spacing:2.754000px;}
.wscc{word-spacing:2.862000px;}
.ws17{word-spacing:2.916000px;}
.wsc9{word-spacing:2.970000px;}
.ws4e{word-spacing:3.024000px;}
.ws8a{word-spacing:3.078000px;}
.ws23{word-spacing:3.402000px;}
.ws20{word-spacing:3.456000px;}
.ws3f{word-spacing:3.510000px;}
.ws74{word-spacing:3.564000px;}
.ws12{word-spacing:3.618000px;}
.ws16{word-spacing:3.672000px;}
.ws7e{word-spacing:3.726000px;}
.ws72{word-spacing:3.780000px;}
.ws61{word-spacing:3.942000px;}
.ws84{word-spacing:3.996000px;}
.ws8e{word-spacing:4.104000px;}
.wsa4{word-spacing:4.158000px;}
.wsb5{word-spacing:4.212000px;}
.ws7d{word-spacing:4.266000px;}
.ws8b{word-spacing:4.320000px;}
.ws76{word-spacing:4.482000px;}
.ws51{word-spacing:4.752000px;}
.ws22{word-spacing:4.860000px;}
.ws8c{word-spacing:5.022000px;}
.ws81{word-spacing:5.184000px;}
.ws6c{word-spacing:5.346000px;}
.ws3d{word-spacing:5.454000px;}
.wsb4{word-spacing:5.508000px;}
.ws6b{word-spacing:5.562000px;}
.ws7f{word-spacing:5.670000px;}
.wsab{word-spacing:5.832000px;}
.wsb2{word-spacing:5.940000px;}
.ws68{word-spacing:5.994000px;}
.wsa8{word-spacing:6.048000px;}
.ws5d{word-spacing:6.102000px;}
.wsb6{word-spacing:6.210000px;}
.ws37{word-spacing:6.318000px;}
.ws75{word-spacing:6.372000px;}
.wsb1{word-spacing:6.426000px;}
.ws18{word-spacing:6.480000px;}
.wsca{word-spacing:6.642000px;}
.ws52{word-spacing:6.750000px;}
.ws9c{word-spacing:6.804000px;}
.ws94{word-spacing:6.858000px;}
.ws1e{word-spacing:6.912000px;}
.ws63{word-spacing:6.966000px;}
.ws11{word-spacing:7.074000px;}
.ws98{word-spacing:7.128000px;}
.ws5a{word-spacing:7.182000px;}
.ws39{word-spacing:7.290000px;}
.ws79{word-spacing:7.398000px;}
.ws9b{word-spacing:7.560000px;}
.wsd{word-spacing:7.614000px;}
.ws1d{word-spacing:7.668000px;}
.wsb8{word-spacing:7.722000px;}
.ws9f{word-spacing:7.776000px;}
.ws41{word-spacing:7.884000px;}
.ws1a{word-spacing:7.938000px;}
.ws8f{word-spacing:8.154000px;}
.ws65{word-spacing:8.370000px;}
.ws1c{word-spacing:8.586000px;}
.ws31{word-spacing:8.748000px;}
.ws34{word-spacing:8.802000px;}
.ws14{word-spacing:8.856000px;}
.wsa7{word-spacing:8.910000px;}
.ws6d{word-spacing:8.964000px;}
.wsba{word-spacing:9.072000px;}
.ws59{word-spacing:9.234000px;}
.ws80{word-spacing:9.342000px;}
.wsbf{word-spacing:9.612000px;}
.wsb0{word-spacing:9.666000px;}
.ws73{word-spacing:9.828000px;}
.wsc1{word-spacing:9.882000px;}
.ws83{word-spacing:9.936000px;}
.ws99{word-spacing:10.152000px;}
.ws1b{word-spacing:10.206000px;}
.ws4c{word-spacing:10.638000px;}
.wsc2{word-spacing:10.908000px;}
.ws32{word-spacing:11.070000px;}
.wsa3{word-spacing:11.124000px;}
.ws38{word-spacing:11.178000px;}
.ws82{word-spacing:11.394000px;}
.wsad{word-spacing:11.502000px;}
.ws58{word-spacing:11.610000px;}
.ws5b{word-spacing:11.880000px;}
.ws93{word-spacing:12.258000px;}
.wsf{word-spacing:12.312000px;}
.ws3a{word-spacing:12.420000px;}
.ws45{word-spacing:12.528000px;}
.ws96{word-spacing:12.582000px;}
.ws5f{word-spacing:12.798000px;}
.wsae{word-spacing:13.122000px;}
.ws7b{word-spacing:13.554000px;}
.ws78{word-spacing:13.716000px;}
.wsc3{word-spacing:13.770000px;}
.ws15{word-spacing:14.148000px;}
.ws6e{word-spacing:14.202000px;}
.ws26{word-spacing:14.526000px;}
.ws71{word-spacing:14.580000px;}
.ws5c{word-spacing:14.958000px;}
.ws70{word-spacing:15.012000px;}
.ws2d{word-spacing:15.174000px;}
.ws66{word-spacing:15.228000px;}
.wsa5{word-spacing:15.282000px;}
.wsc4{word-spacing:15.336000px;}
.wsbe{word-spacing:15.552000px;}
.ws30{word-spacing:15.768000px;}
.ws85{word-spacing:16.038000px;}
.ws9e{word-spacing:17.010000px;}
.wsb9{word-spacing:17.442000px;}
.ws29{word-spacing:17.712000px;}
.ws95{word-spacing:18.090000px;}
.ws7a{word-spacing:18.306000px;}
.wsc5{word-spacing:18.468000px;}
.wsa1{word-spacing:19.170000px;}
.ws64{word-spacing:19.224000px;}
.wsbb{word-spacing:19.818000px;}
.wsc6{word-spacing:20.952000px;}
.ws97{word-spacing:21.978000px;}
._4{margin-left:-15.493800px;}
._f{margin-left:-10.306800px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.840000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._e{width:2.436000px;}
._c{width:3.488400px;}
._9{width:4.973400px;}
._b{width:6.234000px;}
._8{width:7.273800px;}
._a{width:8.337600px;}
._d{width:9.473400px;}
._12{width:10.864800px;}
._7{width:12.020400px;}
._10{width:13.807800px;}
._14{width:15.751800px;}
._13{width:18.144000px;}
._16{width:20.169000px;}
._11{width:30.612600px;}
._15{width:72.792000px;}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.621700px;}
.y28{bottom:53.624700px;}
.y29{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.ya2{bottom:112.927950px;}
.y70{bottom:112.950450px;}
.y10a{bottom:112.954950px;}
.y51{bottom:112.959450px;}
.y7f{bottom:112.963950px;}
.yf9{bottom:112.977450px;}
.ybe{bottom:113.013450px;}
.yd5{bottom:113.026950px;}
.y17b{bottom:113.126700px;}
.y17a{bottom:132.626700px;}
.y127{bottom:135.427950px;}
.ya1{bottom:135.432450px;}
.y6f{bottom:135.454950px;}
.y109{bottom:135.459450px;}
.y50{bottom:135.463950px;}
.y7e{bottom:135.468450px;}
.yf8{bottom:135.481950px;}
.ybd{bottom:135.517950px;}
.yd4{bottom:135.531450px;}
.y179{bottom:152.126700px;}
.y25{bottom:156.195900px;}
.y126{bottom:157.932450px;}
.y6e{bottom:157.959450px;}
.y108{bottom:157.963950px;}
.y4f{bottom:157.968450px;}
.yeb{bottom:158.022450px;}
.y1b1{bottom:164.882700px;}
.y150{bottom:165.471450px;}
.y19b{bottom:171.626700px;}
.y24{bottom:178.700400px;}
.ya0{bottom:180.427950px;}
.y125{bottom:180.436950px;}
.y6d{bottom:180.463950px;}
.y4e{bottom:180.472950px;}
.yf7{bottom:180.477450px;}
.ybc{bottom:180.513450px;}
.yea{bottom:180.526950px;}
.yd3{bottom:180.531450px;}
.y178{bottom:184.382700px;}
.y14f{bottom:184.971450px;}
.y19a{bottom:191.126700px;}
.y23{bottom:201.204900px;}
.y9f{bottom:202.932450px;}
.y107{bottom:202.959450px;}
.y6c{bottom:202.968450px;}
.yf6{bottom:202.981950px;}
.ybb{bottom:203.017950px;}
.y12d{bottom:203.026950px;}
.ye9{bottom:203.031450px;}
.y177{bottom:203.882700px;}
.y14e{bottom:204.471450px;}
.y1b0{bottom:216.638700px;}
.y176{bottom:223.382700px;}
.y14d{bottom:223.971450px;}
.y124{bottom:225.432450px;}
.y9e{bottom:225.436950px;}
.y106{bottom:225.463950px;}
.y4d{bottom:225.468450px;}
.y6b{bottom:225.472950px;}
.yd2{bottom:225.477450px;}
.yf5{bottom:225.486450px;}
.yba{bottom:225.522450px;}
.y12c{bottom:225.531450px;}
.y1af{bottom:236.138700px;}
.y199{bottom:242.882700px;}
.y22{bottom:246.200400px;}
.y123{bottom:247.936950px;}
.y9d{bottom:247.941450px;}
.y105{bottom:247.968450px;}
.y4c{bottom:247.972950px;}
.y6a{bottom:247.977450px;}
.yd1{bottom:247.981950px;}
.yf4{bottom:247.990950px;}
.yb9{bottom:248.026950px;}
.ye8{bottom:248.031450px;}
.y175{bottom:255.638700px;}
.y14c{bottom:256.227450px;}
.y198{bottom:262.382700px;}
.y122{bottom:270.441450px;}
.y9c{bottom:270.445950px;}
.y104{bottom:270.472950px;}
.y4b{bottom:270.477450px;}
.y69{bottom:270.481950px;}
.yd0{bottom:270.486450px;}
.yf3{bottom:270.495450px;}
.yb8{bottom:270.531450px;}
.y174{bottom:275.138700px;}
.y14b{bottom:275.727450px;}
.y21{bottom:291.195900px;}
.y121{bottom:292.945950px;}
.y9b{bottom:292.950450px;}
.ye7{bottom:292.977450px;}
.y4a{bottom:292.981950px;}
.ycf{bottom:292.990950px;}
.yf2{bottom:292.999950px;}
.y197{bottom:294.638700px;}
.y173{bottom:307.394700px;}
.y14a{bottom:307.983450px;}
.y20{bottom:313.700400px;}
.y196{bottom:314.138700px;}
.y120{bottom:315.450450px;}
.y103{bottom:315.468450px;}
.y68{bottom:315.477450px;}
.ye6{bottom:315.481950px;}
.y49{bottom:315.486450px;}
.yce{bottom:315.495450px;}
.yf1{bottom:315.504450px;}
.yb7{bottom:315.531450px;}
.y172{bottom:326.894700px;}
.y149{bottom:327.483450px;}
.y195{bottom:333.638700px;}
.y1f{bottom:336.204900px;}
.y9a{bottom:337.945950px;}
.y11f{bottom:337.954950px;}
.y102{bottom:337.972950px;}
.y67{bottom:337.981950px;}
.ye5{bottom:337.986450px;}
.y10e{bottom:337.990950px;}
.y1ae{bottom:339.650700px;}
.y171{bottom:346.394700px;}
.y194{bottom:353.138700px;}
.y1e{bottom:358.709400px;}
.y1ad{bottom:359.150700px;}
.y148{bottom:359.739450px;}
.y99{bottom:360.450450px;}
.y11e{bottom:360.459450px;}
.y101{bottom:360.477450px;}
.y48{bottom:360.481950px;}
.y66{bottom:360.486450px;}
.ycd{bottom:360.490950px;}
.y10d{bottom:360.495450px;}
.yb6{bottom:360.499950px;}
.y170{bottom:378.650700px;}
.y147{bottom:379.239450px;}
.y1d{bottom:381.213900px;}
.y98{bottom:382.954950px;}
.y100{bottom:382.981950px;}
.y47{bottom:382.986450px;}
.y65{bottom:382.990950px;}
.ycc{bottom:382.995450px;}
.y10c{bottom:382.999950px;}
.yb5{bottom:383.004450px;}
.y193{bottom:385.394700px;}
.y16f{bottom:398.150700px;}
.y146{bottom:398.739450px;}
.y1c{bottom:403.718400px;}
.y192{bottom:404.894700px;}
.y11d{bottom:405.454950px;}
.y97{bottom:405.459450px;}
.yff{bottom:405.486450px;}
.y46{bottom:405.490950px;}
.y64{bottom:405.495450px;}
.ycb{bottom:405.499950px;}
.yf0{bottom:405.508950px;}
.y1ac{bottom:410.906700px;}
.y191{bottom:424.394700px;}
.y1b{bottom:426.222900px;}
.y11c{bottom:427.959450px;}
.y96{bottom:427.963950px;}
.ye4{bottom:427.990950px;}
.y45{bottom:427.995450px;}
.y63{bottom:427.999950px;}
.yca{bottom:428.004450px;}
.yef{bottom:428.013450px;}
.y16e{bottom:430.406700px;}
.y145{bottom:430.995450px;}
.y190{bottom:443.894700px;}
.y1a{bottom:448.727400px;}
.y16d{bottom:449.906700px;}
.y11b{bottom:450.463950px;}
.y95{bottom:450.468450px;}
.y7d{bottom:450.490950px;}
.ye3{bottom:450.495450px;}
.y44{bottom:450.499950px;}
.yb4{bottom:450.504450px;}
.yc9{bottom:450.508950px;}
.yee{bottom:450.517950px;}
.y1ab{bottom:462.662700px;}
.y144{bottom:469.995450px;}
.y19{bottom:471.231900px;}
.y11a{bottom:472.968450px;}
.yfe{bottom:472.986450px;}
.y62{bottom:472.995450px;}
.ye2{bottom:472.999950px;}
.y43{bottom:473.004450px;}
.yb3{bottom:473.008950px;}
.yc8{bottom:473.013450px;}
.yed{bottom:473.022450px;}
.y18f{bottom:476.150700px;}
.y16c{bottom:482.162700px;}
.y18{bottom:493.736400px;}
.y94{bottom:495.463950px;}
.y119{bottom:495.472950px;}
.yfd{bottom:495.490950px;}
.y61{bottom:495.499950px;}
.ye1{bottom:495.504450px;}
.y10b{bottom:495.508950px;}
.yb2{bottom:495.513450px;}
.yc7{bottom:495.517950px;}
.y18e{bottom:495.650700px;}
.y16b{bottom:501.662700px;}
.y143{bottom:502.251450px;}
.y1aa{bottom:514.418700px;}
.y17{bottom:516.240900px;}
.y93{bottom:517.968450px;}
.yfc{bottom:517.995450px;}
.y42{bottom:517.999950px;}
.y60{bottom:518.004450px;}
.ye0{bottom:518.008950px;}
.yb1{bottom:518.017950px;}
.y16a{bottom:521.162700px;}
.y142{bottom:521.751450px;}
.y18d{bottom:527.906700px;}
.y1a9{bottom:533.918700px;}
.y16{bottom:538.745400px;}
.y118{bottom:540.468450px;}
.y92{bottom:540.472950px;}
.yfb{bottom:540.499950px;}
.y41{bottom:540.504450px;}
.y5f{bottom:540.508950px;}
.yc6{bottom:540.513450px;}
.yb0{bottom:540.522450px;}
.y18c{bottom:547.406700px;}
.y169{bottom:553.418700px;}
.y141{bottom:554.007450px;}
.y15{bottom:561.249900px;}
.y117{bottom:562.972950px;}
.y91{bottom:562.977450px;}
.ydf{bottom:563.004450px;}
.y40{bottom:563.008950px;}
.y5e{bottom:563.013450px;}
.yc5{bottom:563.017950px;}
.yaf{bottom:563.026950px;}
.y1a8{bottom:566.174700px;}
.y168{bottom:572.918700px;}
.y140{bottom:573.507450px;}
.y18b{bottom:579.662700px;}
.y14{bottom:583.754400px;}
.y116{bottom:585.477450px;}
.y90{bottom:585.481950px;}
.yde{bottom:585.508950px;}
.y3f{bottom:585.513450px;}
.y5d{bottom:585.517950px;}
.yc4{bottom:585.522450px;}
.yec{bottom:585.531450px;}
.y1a7{bottom:585.674700px;}
.y18a{bottom:599.162700px;}
.y167{bottom:605.174700px;}
.y13f{bottom:605.763450px;}
.y13{bottom:606.258900px;}
.y115{bottom:607.981950px;}
.y7c{bottom:608.008950px;}
.ydd{bottom:608.013450px;}
.y3e{bottom:608.017950px;}
.y5c{bottom:608.022450px;}
.yc3{bottom:608.026950px;}
.y1a6{bottom:617.930700px;}
.y166{bottom:624.674700px;}
.y13e{bottom:625.263450px;}
.y12{bottom:628.763400px;}
.y8f{bottom:630.477450px;}
.yfa{bottom:630.504450px;}
.y7b{bottom:630.513450px;}
.y12b{bottom:630.525450px;}
.y5b{bottom:630.526950px;}
.yc2{bottom:630.531450px;}
.y189{bottom:631.418700px;}
.y1a5{bottom:637.430700px;}
.y165{bottom:644.174700px;}
.y13d{bottom:644.763450px;}
.y114{bottom:652.977450px;}
.y8e{bottom:652.981950px;}
.ydc{bottom:653.008950px;}
.y3d{bottom:653.013450px;}
.y7a{bottom:653.017950px;}
.y5a{bottom:653.031450px;}
.y1a4{bottom:656.930700px;}
.y188{bottom:663.674700px;}
.y113{bottom:675.481950px;}
.y8d{bottom:675.486450px;}
.ydb{bottom:675.513450px;}
.y3c{bottom:675.517950px;}
.y79{bottom:675.522450px;}
.yc1{bottom:675.531450px;}
.y164{bottom:676.430700px;}
.y13c{bottom:677.019450px;}
.y11{bottom:679.658400px;}
.y187{bottom:683.174700px;}
.y1a3{bottom:689.186700px;}
.y163{bottom:695.930700px;}
.y13b{bottom:696.519450px;}
.y112{bottom:697.986450px;}
.y8c{bottom:697.990950px;}
.yda{bottom:698.017950px;}
.y3b{bottom:698.022450px;}
.y78{bottom:698.026950px;}
.y59{bottom:698.031450px;}
.y186{bottom:702.674700px;}
.y1a2{bottom:708.686700px;}
.yc0{bottom:720.477450px;}
.y111{bottom:720.490950px;}
.y8b{bottom:720.495450px;}
.yd9{bottom:720.522450px;}
.y3a{bottom:720.526950px;}
.y77{bottom:720.531450px;}
.y162{bottom:728.186700px;}
.y13a{bottom:728.775450px;}
.y185{bottom:734.930700px;}
.y10{bottom:740.426100px;}
.y1a1{bottom:740.942700px;}
.ybf{bottom:742.981950px;}
.y110{bottom:742.995450px;}
.y8a{bottom:742.999950px;}
.y58{bottom:743.008950px;}
.yd8{bottom:743.026950px;}
.y39{bottom:743.031450px;}
.y161{bottom:747.686700px;}
.y139{bottom:748.275450px;}
.yf{bottom:756.926100px;}
.y1a0{bottom:760.442700px;}
.yae{bottom:765.486450px;}
.y10f{bottom:765.499950px;}
.y89{bottom:765.504450px;}
.y57{bottom:765.513450px;}
.y76{bottom:765.531450px;}
.y184{bottom:767.186700px;}
.ye{bottom:779.804100px;}
.y160{bottom:779.942700px;}
.y138{bottom:780.531450px;}
.y183{bottom:786.686700px;}
.yad{bottom:787.990950px;}
.y12a{bottom:788.004450px;}
.y88{bottom:788.008950px;}
.y56{bottom:788.017950px;}
.y38{bottom:788.031450px;}
.y15f{bottom:799.442700px;}
.y137{bottom:800.031450px;}
.y75{bottom:810.481950px;}
.yac{bottom:810.495450px;}
.y87{bottom:810.513450px;}
.y55{bottom:810.522450px;}
.yd7{bottom:810.531450px;}
.y19f{bottom:812.198700px;}
.yd{bottom:814.315950px;}
.y182{bottom:818.942700px;}
.yc{bottom:830.815950px;}
.y15e{bottom:831.698700px;}
.y74{bottom:832.986450px;}
.yab{bottom:832.999950px;}
.y54{bottom:833.026950px;}
.y136{bottom:833.031450px;}
.y181{bottom:838.442700px;}
.y15d{bottom:851.198700px;}
.yb{bottom:853.693950px;}
.y37{bottom:855.490950px;}
.yaa{bottom:855.504450px;}
.y86{bottom:855.508950px;}
.y53{bottom:855.531450px;}
.y15c{bottom:870.698700px;}
.y73{bottom:877.995450px;}
.ya9{bottom:878.008950px;}
.y85{bottom:878.013450px;}
.y19e{bottom:883.454700px;}
.y180{bottom:890.198700px;}
.y36{bottom:900.486450px;}
.y72{bottom:900.499950px;}
.y135{bottom:900.508950px;}
.yd6{bottom:900.513450px;}
.y84{bottom:900.517950px;}
.y52{bottom:900.531450px;}
.y15b{bottom:902.954700px;}
.y17f{bottom:909.698700px;}
.ya{bottom:913.714500px;}
.y15a{bottom:922.454700px;}
.y35{bottom:922.990950px;}
.y71{bottom:923.004450px;}
.y134{bottom:923.013450px;}
.y129{bottom:923.017950px;}
.y83{bottom:923.022450px;}
.y19d{bottom:935.210700px;}
.y9{bottom:936.217500px;}
.y159{bottom:941.954700px;}
.y34{bottom:945.495450px;}
.ya8{bottom:945.508950px;}
.y133{bottom:945.517950px;}
.y128{bottom:945.522450px;}
.y82{bottom:945.526950px;}
.y19c{bottom:954.710700px;}
.y17e{bottom:961.454700px;}
.y33{bottom:967.999950px;}
.ya7{bottom:968.013450px;}
.y132{bottom:968.022450px;}
.y81{bottom:968.031450px;}
.y8{bottom:971.473500px;}
.y158{bottom:974.210700px;}
.y32{bottom:990.504450px;}
.ya6{bottom:990.517950px;}
.y157{bottom:993.710700px;}
.y7{bottom:1004.473500px;}
.y31{bottom:1013.008950px;}
.y131{bottom:1013.017950px;}
.ya5{bottom:1013.022450px;}
.y80{bottom:1013.031450px;}
.y17d{bottom:1013.210700px;}
.y156{bottom:1025.966700px;}
.y30{bottom:1035.513450px;}
.y130{bottom:1035.522450px;}
.ya4{bottom:1035.526950px;}
.y6{bottom:1037.473500px;}
.y155{bottom:1045.466700px;}
.y2f{bottom:1058.017950px;}
.y12f{bottom:1058.026950px;}
.ya3{bottom:1058.031450px;}
.y154{bottom:1064.966700px;}
.y5{bottom:1070.473500px;}
.y2e{bottom:1080.522450px;}
.y12e{bottom:1080.531450px;}
.y17c{bottom:1084.466700px;}
.y153{bottom:1097.222700px;}
.y2d{bottom:1103.026950px;}
.y152{bottom:1116.722700px;}
.y2c{bottom:1125.531450px;}
.y151{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y27{bottom:1182.887700px;}
.y2b{bottom:1197.026700px;}
.y26{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h7{height:36.624000px;}
.hb{height:36.816000px;}
.h9{height:39.420000px;}
.h8{height:41.202000px;}
.ha{height:42.444000px;}
.h6{height:43.800000px;}
.hf{height:47.088000px;}
.hd{height:52.974000px;}
.hc{height:59.004000px;}
.h5{height:59.514000px;}
.he{height:64.746000px;}
.h4{height:88.440000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.x5{left:127.009050px;}
.x9{left:141.803100px;}
.xb{left:148.823100px;}
.x3{left:585.415800px;}
.x4{left:625.420800px;}
.x2{left:677.563800px;}
.x8{left:739.128600px;}
.xa{left:741.931200px;}
.x6{left:744.702150px;}
.x7{left:746.676600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.816000pt;}
.ls0{letter-spacing:4.853333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws6f{word-spacing:-5.088000pt;}
.ws7c{word-spacing:-4.560000pt;}
.ws91{word-spacing:-4.464000pt;}
.ws21{word-spacing:-4.224000pt;}
.wsa{word-spacing:-4.176000pt;}
.ws4b{word-spacing:-3.936000pt;}
.wsa0{word-spacing:-3.888000pt;}
.ws3b{word-spacing:-3.840000pt;}
.wsc0{word-spacing:-3.504000pt;}
.ws5e{word-spacing:-3.408000pt;}
.ws4f{word-spacing:-3.264000pt;}
.ws87{word-spacing:-3.072000pt;}
.ws9d{word-spacing:-3.024000pt;}
.wsb3{word-spacing:-2.976000pt;}
.wsaa{word-spacing:-2.928000pt;}
.wsbc{word-spacing:-2.832000pt;}
.ws9a{word-spacing:-2.640000pt;}
.ws62{word-spacing:-2.496000pt;}
.ws53{word-spacing:-2.304000pt;}
.ws47{word-spacing:-2.112000pt;}
.ws57{word-spacing:-2.064000pt;}
.ws6a{word-spacing:-1.968000pt;}
.ws43{word-spacing:-1.824000pt;}
.ws55{word-spacing:-1.776000pt;}
.ws2e{word-spacing:-1.728000pt;}
.ws49{word-spacing:-1.680000pt;}
.ws1f{word-spacing:-1.440000pt;}
.ws54{word-spacing:-1.296000pt;}
.ws56{word-spacing:-1.248000pt;}
.ws2f{word-spacing:-1.200000pt;}
.wse{word-spacing:-1.104000pt;}
.ws36{word-spacing:-1.056000pt;}
.wsc{word-spacing:-0.864000pt;}
.wsa6{word-spacing:-0.816000pt;}
.ws27{word-spacing:-0.768000pt;}
.wsc8{word-spacing:-0.624000pt;}
.ws5{word-spacing:-0.576000pt;}
.ws40{word-spacing:-0.528000pt;}
.ws2c{word-spacing:-0.480000pt;}
.wsa9{word-spacing:-0.384000pt;}
.ws4a{word-spacing:-0.288000pt;}
.wscd{word-spacing:-0.256000pt;}
.ws42{word-spacing:-0.240000pt;}
.wscb{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.048000pt;}
.ws50{word-spacing:0.144000pt;}
.ws46{word-spacing:0.192000pt;}
.wsc7{word-spacing:0.240000pt;}
.ws2b{word-spacing:0.288000pt;}
.ws6{word-spacing:0.480000pt;}
.ws88{word-spacing:0.528000pt;}
.ws3e{word-spacing:0.624000pt;}
.ws4{word-spacing:0.693333pt;}
.ws24{word-spacing:0.720000pt;}
.wsb{word-spacing:0.816000pt;}
.ws35{word-spacing:0.864000pt;}
.ws3c{word-spacing:0.960000pt;}
.ws89{word-spacing:1.008000pt;}
.ws25{word-spacing:1.056000pt;}
.ws3{word-spacing:1.066667pt;}
.wsaf{word-spacing:1.104000pt;}
.ws9{word-spacing:1.248000pt;}
.ws13{word-spacing:1.296000pt;}
.ws48{word-spacing:1.344000pt;}
.ws33{word-spacing:1.392000pt;}
.ws69{word-spacing:1.440000pt;}
.ws67{word-spacing:1.488000pt;}
.wsa2{word-spacing:1.536000pt;}
.ws44{word-spacing:1.584000pt;}
.ws8d{word-spacing:1.632000pt;}
.wsbd{word-spacing:1.680000pt;}
.ws4d{word-spacing:1.728000pt;}
.ws90{word-spacing:1.776000pt;}
.wsac{word-spacing:1.824000pt;}
.ws60{word-spacing:1.872000pt;}
.ws7{word-spacing:1.920000pt;}
.ws10{word-spacing:1.968000pt;}
.ws92{word-spacing:2.160000pt;}
.ws8{word-spacing:2.208000pt;}
.ws86{word-spacing:2.256000pt;}
.wsb7{word-spacing:2.352000pt;}
.ws77{word-spacing:2.400000pt;}
.ws2a{word-spacing:2.448000pt;}
.wscc{word-spacing:2.544000pt;}
.ws17{word-spacing:2.592000pt;}
.wsc9{word-spacing:2.640000pt;}
.ws4e{word-spacing:2.688000pt;}
.ws8a{word-spacing:2.736000pt;}
.ws23{word-spacing:3.024000pt;}
.ws20{word-spacing:3.072000pt;}
.ws3f{word-spacing:3.120000pt;}
.ws74{word-spacing:3.168000pt;}
.ws12{word-spacing:3.216000pt;}
.ws16{word-spacing:3.264000pt;}
.ws7e{word-spacing:3.312000pt;}
.ws72{word-spacing:3.360000pt;}
.ws61{word-spacing:3.504000pt;}
.ws84{word-spacing:3.552000pt;}
.ws8e{word-spacing:3.648000pt;}
.wsa4{word-spacing:3.696000pt;}
.wsb5{word-spacing:3.744000pt;}
.ws7d{word-spacing:3.792000pt;}
.ws8b{word-spacing:3.840000pt;}
.ws76{word-spacing:3.984000pt;}
.ws51{word-spacing:4.224000pt;}
.ws22{word-spacing:4.320000pt;}
.ws8c{word-spacing:4.464000pt;}
.ws81{word-spacing:4.608000pt;}
.ws6c{word-spacing:4.752000pt;}
.ws3d{word-spacing:4.848000pt;}
.wsb4{word-spacing:4.896000pt;}
.ws6b{word-spacing:4.944000pt;}
.ws7f{word-spacing:5.040000pt;}
.wsab{word-spacing:5.184000pt;}
.wsb2{word-spacing:5.280000pt;}
.ws68{word-spacing:5.328000pt;}
.wsa8{word-spacing:5.376000pt;}
.ws5d{word-spacing:5.424000pt;}
.wsb6{word-spacing:5.520000pt;}
.ws37{word-spacing:5.616000pt;}
.ws75{word-spacing:5.664000pt;}
.wsb1{word-spacing:5.712000pt;}
.ws18{word-spacing:5.760000pt;}
.wsca{word-spacing:5.904000pt;}
.ws52{word-spacing:6.000000pt;}
.ws9c{word-spacing:6.048000pt;}
.ws94{word-spacing:6.096000pt;}
.ws1e{word-spacing:6.144000pt;}
.ws63{word-spacing:6.192000pt;}
.ws11{word-spacing:6.288000pt;}
.ws98{word-spacing:6.336000pt;}
.ws5a{word-spacing:6.384000pt;}
.ws39{word-spacing:6.480000pt;}
.ws79{word-spacing:6.576000pt;}
.ws9b{word-spacing:6.720000pt;}
.wsd{word-spacing:6.768000pt;}
.ws1d{word-spacing:6.816000pt;}
.wsb8{word-spacing:6.864000pt;}
.ws9f{word-spacing:6.912000pt;}
.ws41{word-spacing:7.008000pt;}
.ws1a{word-spacing:7.056000pt;}
.ws8f{word-spacing:7.248000pt;}
.ws65{word-spacing:7.440000pt;}
.ws1c{word-spacing:7.632000pt;}
.ws31{word-spacing:7.776000pt;}
.ws34{word-spacing:7.824000pt;}
.ws14{word-spacing:7.872000pt;}
.wsa7{word-spacing:7.920000pt;}
.ws6d{word-spacing:7.968000pt;}
.wsba{word-spacing:8.064000pt;}
.ws59{word-spacing:8.208000pt;}
.ws80{word-spacing:8.304000pt;}
.wsbf{word-spacing:8.544000pt;}
.wsb0{word-spacing:8.592000pt;}
.ws73{word-spacing:8.736000pt;}
.wsc1{word-spacing:8.784000pt;}
.ws83{word-spacing:8.832000pt;}
.ws99{word-spacing:9.024000pt;}
.ws1b{word-spacing:9.072000pt;}
.ws4c{word-spacing:9.456000pt;}
.wsc2{word-spacing:9.696000pt;}
.ws32{word-spacing:9.840000pt;}
.wsa3{word-spacing:9.888000pt;}
.ws38{word-spacing:9.936000pt;}
.ws82{word-spacing:10.128000pt;}
.wsad{word-spacing:10.224000pt;}
.ws58{word-spacing:10.320000pt;}
.ws5b{word-spacing:10.560000pt;}
.ws93{word-spacing:10.896000pt;}
.wsf{word-spacing:10.944000pt;}
.ws3a{word-spacing:11.040000pt;}
.ws45{word-spacing:11.136000pt;}
.ws96{word-spacing:11.184000pt;}
.ws5f{word-spacing:11.376000pt;}
.wsae{word-spacing:11.664000pt;}
.ws7b{word-spacing:12.048000pt;}
.ws78{word-spacing:12.192000pt;}
.wsc3{word-spacing:12.240000pt;}
.ws15{word-spacing:12.576000pt;}
.ws6e{word-spacing:12.624000pt;}
.ws26{word-spacing:12.912000pt;}
.ws71{word-spacing:12.960000pt;}
.ws5c{word-spacing:13.296000pt;}
.ws70{word-spacing:13.344000pt;}
.ws2d{word-spacing:13.488000pt;}
.ws66{word-spacing:13.536000pt;}
.wsa5{word-spacing:13.584000pt;}
.wsc4{word-spacing:13.632000pt;}
.wsbe{word-spacing:13.824000pt;}
.ws30{word-spacing:14.016000pt;}
.ws85{word-spacing:14.256000pt;}
.ws9e{word-spacing:15.120000pt;}
.wsb9{word-spacing:15.504000pt;}
.ws29{word-spacing:15.744000pt;}
.ws95{word-spacing:16.080000pt;}
.ws7a{word-spacing:16.272000pt;}
.wsc5{word-spacing:16.416000pt;}
.wsa1{word-spacing:17.040000pt;}
.ws64{word-spacing:17.088000pt;}
.wsbb{word-spacing:17.616000pt;}
.wsc6{word-spacing:18.624000pt;}
.ws97{word-spacing:19.536000pt;}
._4{margin-left:-13.772267pt;}
._f{margin-left:-9.161600pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.413333pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._e{width:2.165333pt;}
._c{width:3.100800pt;}
._9{width:4.420800pt;}
._b{width:5.541333pt;}
._8{width:6.465600pt;}
._a{width:7.411200pt;}
._d{width:8.420800pt;}
._12{width:9.657600pt;}
._7{width:10.684800pt;}
._10{width:12.273600pt;}
._14{width:14.001600pt;}
._13{width:16.128000pt;}
._16{width:17.928000pt;}
._11{width:27.211200pt;}
._15{width:64.704000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.663733pt;}
.y28{bottom:47.666400pt;}
.y29{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.ya2{bottom:100.380400pt;}
.y70{bottom:100.400400pt;}
.y10a{bottom:100.404400pt;}
.y51{bottom:100.408400pt;}
.y7f{bottom:100.412400pt;}
.yf9{bottom:100.424400pt;}
.ybe{bottom:100.456400pt;}
.yd5{bottom:100.468400pt;}
.y17b{bottom:100.557067pt;}
.y17a{bottom:117.890400pt;}
.y127{bottom:120.380400pt;}
.ya1{bottom:120.384400pt;}
.y6f{bottom:120.404400pt;}
.y109{bottom:120.408400pt;}
.y50{bottom:120.412400pt;}
.y7e{bottom:120.416400pt;}
.yf8{bottom:120.428400pt;}
.ybd{bottom:120.460400pt;}
.yd4{bottom:120.472400pt;}
.y179{bottom:135.223733pt;}
.y25{bottom:138.840800pt;}
.y126{bottom:140.384400pt;}
.y6e{bottom:140.408400pt;}
.y108{bottom:140.412400pt;}
.y4f{bottom:140.416400pt;}
.yeb{bottom:140.464400pt;}
.y1b1{bottom:146.562400pt;}
.y150{bottom:147.085733pt;}
.y19b{bottom:152.557067pt;}
.y24{bottom:158.844800pt;}
.ya0{bottom:160.380400pt;}
.y125{bottom:160.388400pt;}
.y6d{bottom:160.412400pt;}
.y4e{bottom:160.420400pt;}
.yf7{bottom:160.424400pt;}
.ybc{bottom:160.456400pt;}
.yea{bottom:160.468400pt;}
.yd3{bottom:160.472400pt;}
.y178{bottom:163.895733pt;}
.y14f{bottom:164.419067pt;}
.y19a{bottom:169.890400pt;}
.y23{bottom:178.848800pt;}
.y9f{bottom:180.384400pt;}
.y107{bottom:180.408400pt;}
.y6c{bottom:180.416400pt;}
.yf6{bottom:180.428400pt;}
.ybb{bottom:180.460400pt;}
.y12d{bottom:180.468400pt;}
.ye9{bottom:180.472400pt;}
.y177{bottom:181.229067pt;}
.y14e{bottom:181.752400pt;}
.y1b0{bottom:192.567733pt;}
.y176{bottom:198.562400pt;}
.y14d{bottom:199.085733pt;}
.y124{bottom:200.384400pt;}
.y9e{bottom:200.388400pt;}
.y106{bottom:200.412400pt;}
.y4d{bottom:200.416400pt;}
.y6b{bottom:200.420400pt;}
.yd2{bottom:200.424400pt;}
.yf5{bottom:200.432400pt;}
.yba{bottom:200.464400pt;}
.y12c{bottom:200.472400pt;}
.y1af{bottom:209.901067pt;}
.y199{bottom:215.895733pt;}
.y22{bottom:218.844800pt;}
.y123{bottom:220.388400pt;}
.y9d{bottom:220.392400pt;}
.y105{bottom:220.416400pt;}
.y4c{bottom:220.420400pt;}
.y6a{bottom:220.424400pt;}
.yd1{bottom:220.428400pt;}
.yf4{bottom:220.436400pt;}
.yb9{bottom:220.468400pt;}
.ye8{bottom:220.472400pt;}
.y175{bottom:227.234400pt;}
.y14c{bottom:227.757733pt;}
.y198{bottom:233.229067pt;}
.y122{bottom:240.392400pt;}
.y9c{bottom:240.396400pt;}
.y104{bottom:240.420400pt;}
.y4b{bottom:240.424400pt;}
.y69{bottom:240.428400pt;}
.yd0{bottom:240.432400pt;}
.yf3{bottom:240.440400pt;}
.yb8{bottom:240.472400pt;}
.y174{bottom:244.567733pt;}
.y14b{bottom:245.091067pt;}
.y21{bottom:258.840800pt;}
.y121{bottom:260.396400pt;}
.y9b{bottom:260.400400pt;}
.ye7{bottom:260.424400pt;}
.y4a{bottom:260.428400pt;}
.ycf{bottom:260.436400pt;}
.yf2{bottom:260.444400pt;}
.y197{bottom:261.901067pt;}
.y173{bottom:273.239733pt;}
.y14a{bottom:273.763067pt;}
.y20{bottom:278.844800pt;}
.y196{bottom:279.234400pt;}
.y120{bottom:280.400400pt;}
.y103{bottom:280.416400pt;}
.y68{bottom:280.424400pt;}
.ye6{bottom:280.428400pt;}
.y49{bottom:280.432400pt;}
.yce{bottom:280.440400pt;}
.yf1{bottom:280.448400pt;}
.yb7{bottom:280.472400pt;}
.y172{bottom:290.573067pt;}
.y149{bottom:291.096400pt;}
.y195{bottom:296.567733pt;}
.y1f{bottom:298.848800pt;}
.y9a{bottom:300.396400pt;}
.y11f{bottom:300.404400pt;}
.y102{bottom:300.420400pt;}
.y67{bottom:300.428400pt;}
.ye5{bottom:300.432400pt;}
.y10e{bottom:300.436400pt;}
.y1ae{bottom:301.911733pt;}
.y171{bottom:307.906400pt;}
.y194{bottom:313.901067pt;}
.y1e{bottom:318.852800pt;}
.y1ad{bottom:319.245067pt;}
.y148{bottom:319.768400pt;}
.y99{bottom:320.400400pt;}
.y11e{bottom:320.408400pt;}
.y101{bottom:320.424400pt;}
.y48{bottom:320.428400pt;}
.y66{bottom:320.432400pt;}
.ycd{bottom:320.436400pt;}
.y10d{bottom:320.440400pt;}
.yb6{bottom:320.444400pt;}
.y170{bottom:336.578400pt;}
.y147{bottom:337.101733pt;}
.y1d{bottom:338.856800pt;}
.y98{bottom:340.404400pt;}
.y100{bottom:340.428400pt;}
.y47{bottom:340.432400pt;}
.y65{bottom:340.436400pt;}
.ycc{bottom:340.440400pt;}
.y10c{bottom:340.444400pt;}
.yb5{bottom:340.448400pt;}
.y193{bottom:342.573067pt;}
.y16f{bottom:353.911733pt;}
.y146{bottom:354.435067pt;}
.y1c{bottom:358.860800pt;}
.y192{bottom:359.906400pt;}
.y11d{bottom:360.404400pt;}
.y97{bottom:360.408400pt;}
.yff{bottom:360.432400pt;}
.y46{bottom:360.436400pt;}
.y64{bottom:360.440400pt;}
.ycb{bottom:360.444400pt;}
.yf0{bottom:360.452400pt;}
.y1ac{bottom:365.250400pt;}
.y191{bottom:377.239733pt;}
.y1b{bottom:378.864800pt;}
.y11c{bottom:380.408400pt;}
.y96{bottom:380.412400pt;}
.ye4{bottom:380.436400pt;}
.y45{bottom:380.440400pt;}
.y63{bottom:380.444400pt;}
.yca{bottom:380.448400pt;}
.yef{bottom:380.456400pt;}
.y16e{bottom:382.583733pt;}
.y145{bottom:383.107067pt;}
.y190{bottom:394.573067pt;}
.y1a{bottom:398.868800pt;}
.y16d{bottom:399.917067pt;}
.y11b{bottom:400.412400pt;}
.y95{bottom:400.416400pt;}
.y7d{bottom:400.436400pt;}
.ye3{bottom:400.440400pt;}
.y44{bottom:400.444400pt;}
.yb4{bottom:400.448400pt;}
.yc9{bottom:400.452400pt;}
.yee{bottom:400.460400pt;}
.y1ab{bottom:411.255733pt;}
.y144{bottom:417.773733pt;}
.y19{bottom:418.872800pt;}
.y11a{bottom:420.416400pt;}
.yfe{bottom:420.432400pt;}
.y62{bottom:420.440400pt;}
.ye2{bottom:420.444400pt;}
.y43{bottom:420.448400pt;}
.yb3{bottom:420.452400pt;}
.yc8{bottom:420.456400pt;}
.yed{bottom:420.464400pt;}
.y18f{bottom:423.245067pt;}
.y16c{bottom:428.589067pt;}
.y18{bottom:438.876800pt;}
.y94{bottom:440.412400pt;}
.y119{bottom:440.420400pt;}
.yfd{bottom:440.436400pt;}
.y61{bottom:440.444400pt;}
.ye1{bottom:440.448400pt;}
.y10b{bottom:440.452400pt;}
.yb2{bottom:440.456400pt;}
.yc7{bottom:440.460400pt;}
.y18e{bottom:440.578400pt;}
.y16b{bottom:445.922400pt;}
.y143{bottom:446.445733pt;}
.y1aa{bottom:457.261067pt;}
.y17{bottom:458.880800pt;}
.y93{bottom:460.416400pt;}
.yfc{bottom:460.440400pt;}
.y42{bottom:460.444400pt;}
.y60{bottom:460.448400pt;}
.ye0{bottom:460.452400pt;}
.yb1{bottom:460.460400pt;}
.y16a{bottom:463.255733pt;}
.y142{bottom:463.779067pt;}
.y18d{bottom:469.250400pt;}
.y1a9{bottom:474.594400pt;}
.y16{bottom:478.884800pt;}
.y118{bottom:480.416400pt;}
.y92{bottom:480.420400pt;}
.yfb{bottom:480.444400pt;}
.y41{bottom:480.448400pt;}
.y5f{bottom:480.452400pt;}
.yc6{bottom:480.456400pt;}
.yb0{bottom:480.464400pt;}
.y18c{bottom:486.583733pt;}
.y169{bottom:491.927733pt;}
.y141{bottom:492.451067pt;}
.y15{bottom:498.888800pt;}
.y117{bottom:500.420400pt;}
.y91{bottom:500.424400pt;}
.ydf{bottom:500.448400pt;}
.y40{bottom:500.452400pt;}
.y5e{bottom:500.456400pt;}
.yc5{bottom:500.460400pt;}
.yaf{bottom:500.468400pt;}
.y1a8{bottom:503.266400pt;}
.y168{bottom:509.261067pt;}
.y140{bottom:509.784400pt;}
.y18b{bottom:515.255733pt;}
.y14{bottom:518.892800pt;}
.y116{bottom:520.424400pt;}
.y90{bottom:520.428400pt;}
.yde{bottom:520.452400pt;}
.y3f{bottom:520.456400pt;}
.y5d{bottom:520.460400pt;}
.yc4{bottom:520.464400pt;}
.yec{bottom:520.472400pt;}
.y1a7{bottom:520.599733pt;}
.y18a{bottom:532.589067pt;}
.y167{bottom:537.933067pt;}
.y13f{bottom:538.456400pt;}
.y13{bottom:538.896800pt;}
.y115{bottom:540.428400pt;}
.y7c{bottom:540.452400pt;}
.ydd{bottom:540.456400pt;}
.y3e{bottom:540.460400pt;}
.y5c{bottom:540.464400pt;}
.yc3{bottom:540.468400pt;}
.y1a6{bottom:549.271733pt;}
.y166{bottom:555.266400pt;}
.y13e{bottom:555.789733pt;}
.y12{bottom:558.900800pt;}
.y8f{bottom:560.424400pt;}
.yfa{bottom:560.448400pt;}
.y7b{bottom:560.456400pt;}
.y12b{bottom:560.467067pt;}
.y5b{bottom:560.468400pt;}
.yc2{bottom:560.472400pt;}
.y189{bottom:561.261067pt;}
.y1a5{bottom:566.605067pt;}
.y165{bottom:572.599733pt;}
.y13d{bottom:573.123067pt;}
.y114{bottom:580.424400pt;}
.y8e{bottom:580.428400pt;}
.ydc{bottom:580.452400pt;}
.y3d{bottom:580.456400pt;}
.y7a{bottom:580.460400pt;}
.y5a{bottom:580.472400pt;}
.y1a4{bottom:583.938400pt;}
.y188{bottom:589.933067pt;}
.y113{bottom:600.428400pt;}
.y8d{bottom:600.432400pt;}
.ydb{bottom:600.456400pt;}
.y3c{bottom:600.460400pt;}
.y79{bottom:600.464400pt;}
.yc1{bottom:600.472400pt;}
.y164{bottom:601.271733pt;}
.y13c{bottom:601.795067pt;}
.y11{bottom:604.140800pt;}
.y187{bottom:607.266400pt;}
.y1a3{bottom:612.610400pt;}
.y163{bottom:618.605067pt;}
.y13b{bottom:619.128400pt;}
.y112{bottom:620.432400pt;}
.y8c{bottom:620.436400pt;}
.yda{bottom:620.460400pt;}
.y3b{bottom:620.464400pt;}
.y78{bottom:620.468400pt;}
.y59{bottom:620.472400pt;}
.y186{bottom:624.599733pt;}
.y1a2{bottom:629.943733pt;}
.yc0{bottom:640.424400pt;}
.y111{bottom:640.436400pt;}
.y8b{bottom:640.440400pt;}
.yd9{bottom:640.464400pt;}
.y3a{bottom:640.468400pt;}
.y77{bottom:640.472400pt;}
.y162{bottom:647.277067pt;}
.y13a{bottom:647.800400pt;}
.y185{bottom:653.271733pt;}
.y10{bottom:658.156533pt;}
.y1a1{bottom:658.615733pt;}
.ybf{bottom:660.428400pt;}
.y110{bottom:660.440400pt;}
.y8a{bottom:660.444400pt;}
.y58{bottom:660.452400pt;}
.yd8{bottom:660.468400pt;}
.y39{bottom:660.472400pt;}
.y161{bottom:664.610400pt;}
.y139{bottom:665.133733pt;}
.yf{bottom:672.823200pt;}
.y1a0{bottom:675.949067pt;}
.yae{bottom:680.432400pt;}
.y10f{bottom:680.444400pt;}
.y89{bottom:680.448400pt;}
.y57{bottom:680.456400pt;}
.y76{bottom:680.472400pt;}
.y184{bottom:681.943733pt;}
.ye{bottom:693.159200pt;}
.y160{bottom:693.282400pt;}
.y138{bottom:693.805733pt;}
.y183{bottom:699.277067pt;}
.yad{bottom:700.436400pt;}
.y12a{bottom:700.448400pt;}
.y88{bottom:700.452400pt;}
.y56{bottom:700.460400pt;}
.y38{bottom:700.472400pt;}
.y15f{bottom:710.615733pt;}
.y137{bottom:711.139067pt;}
.y75{bottom:720.428400pt;}
.yac{bottom:720.440400pt;}
.y87{bottom:720.456400pt;}
.y55{bottom:720.464400pt;}
.yd7{bottom:720.472400pt;}
.y19f{bottom:721.954400pt;}
.yd{bottom:723.836400pt;}
.y182{bottom:727.949067pt;}
.yc{bottom:738.503067pt;}
.y15e{bottom:739.287733pt;}
.y74{bottom:740.432400pt;}
.yab{bottom:740.444400pt;}
.y54{bottom:740.468400pt;}
.y136{bottom:740.472400pt;}
.y181{bottom:745.282400pt;}
.y15d{bottom:756.621067pt;}
.yb{bottom:758.839067pt;}
.y37{bottom:760.436400pt;}
.yaa{bottom:760.448400pt;}
.y86{bottom:760.452400pt;}
.y53{bottom:760.472400pt;}
.y15c{bottom:773.954400pt;}
.y73{bottom:780.440400pt;}
.ya9{bottom:780.452400pt;}
.y85{bottom:780.456400pt;}
.y19e{bottom:785.293067pt;}
.y180{bottom:791.287733pt;}
.y36{bottom:800.432400pt;}
.y72{bottom:800.444400pt;}
.y135{bottom:800.452400pt;}
.yd6{bottom:800.456400pt;}
.y84{bottom:800.460400pt;}
.y52{bottom:800.472400pt;}
.y15b{bottom:802.626400pt;}
.y17f{bottom:808.621067pt;}
.ya{bottom:812.190667pt;}
.y15a{bottom:819.959733pt;}
.y35{bottom:820.436400pt;}
.y71{bottom:820.448400pt;}
.y134{bottom:820.456400pt;}
.y129{bottom:820.460400pt;}
.y83{bottom:820.464400pt;}
.y19d{bottom:831.298400pt;}
.y9{bottom:832.193333pt;}
.y159{bottom:837.293067pt;}
.y34{bottom:840.440400pt;}
.ya8{bottom:840.452400pt;}
.y133{bottom:840.460400pt;}
.y128{bottom:840.464400pt;}
.y82{bottom:840.468400pt;}
.y19c{bottom:848.631733pt;}
.y17e{bottom:854.626400pt;}
.y33{bottom:860.444400pt;}
.ya7{bottom:860.456400pt;}
.y132{bottom:860.464400pt;}
.y81{bottom:860.472400pt;}
.y8{bottom:863.532000pt;}
.y158{bottom:865.965067pt;}
.y32{bottom:880.448400pt;}
.ya6{bottom:880.460400pt;}
.y157{bottom:883.298400pt;}
.y7{bottom:892.865333pt;}
.y31{bottom:900.452400pt;}
.y131{bottom:900.460400pt;}
.ya5{bottom:900.464400pt;}
.y80{bottom:900.472400pt;}
.y17d{bottom:900.631733pt;}
.y156{bottom:911.970400pt;}
.y30{bottom:920.456400pt;}
.y130{bottom:920.464400pt;}
.ya4{bottom:920.468400pt;}
.y6{bottom:922.198667pt;}
.y155{bottom:929.303733pt;}
.y2f{bottom:940.460400pt;}
.y12f{bottom:940.468400pt;}
.ya3{bottom:940.472400pt;}
.y154{bottom:946.637067pt;}
.y5{bottom:951.532000pt;}
.y2e{bottom:960.464400pt;}
.y12e{bottom:960.472400pt;}
.y17c{bottom:963.970400pt;}
.y153{bottom:975.309067pt;}
.y2d{bottom:980.468400pt;}
.y152{bottom:992.642400pt;}
.y2c{bottom:1000.472400pt;}
.y151{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y27{bottom:1051.455733pt;}
.y2b{bottom:1064.023733pt;}
.y26{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h7{height:32.554667pt;}
.hb{height:32.725333pt;}
.h9{height:35.040000pt;}
.h8{height:36.624000pt;}
.ha{height:37.728000pt;}
.h6{height:38.933333pt;}
.hf{height:41.856000pt;}
.hd{height:47.088000pt;}
.hc{height:52.448000pt;}
.h5{height:52.901333pt;}
.he{height:57.552000pt;}
.h4{height:78.613333pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.x5{left:112.896933pt;}
.x9{left:126.047200pt;}
.xb{left:132.287200pt;}
.x3{left:520.369600pt;}
.x4{left:555.929600pt;}
.x2{left:602.278933pt;}
.x8{left:657.003200pt;}
.xa{left:659.494400pt;}
.x6{left:661.957467pt;}
.x7{left:663.712533pt;}
}




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