
    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_f2475bd567632f4f5eaada9f.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_957bd6d12f2e3e7a0b2904a6.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_3f8439fa7123f6c4b2cd84cc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.963000;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_c145238e63aeb11a612310c5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.920000;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_257d8694e363eb68545162dd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934000;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_889adb9b2d14faab00d87586.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_484d19b56510f5e9177123b7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dba41f21f813b87c3081c449.woff')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_aaa36794944d200bb52c39f3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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_794e02d186ccc76a61eaaa66.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_9c425681c3f6a5290badb93c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.143000;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_ae94f1599aa0222c2168220d.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_761a5f405d2b4e832b26dc48.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e3339b07647bfde08f32a344.woff')format("woff");}.ffe{font-family:ffe;line-height:1.238000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9940c015b02eff0b447ad3d0.woff')format("woff");}.fff{font-family:fff;line-height:1.114000;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;}
.v1{vertical-align:18.162000px;}
.lsb{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.960000px;}
.ls2{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.096000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.810000px;}
.ls8{letter-spacing:0.918000px;}
.ls9{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.296000px;}
.ls3{letter-spacing:3.507966px;}
.ls0{letter-spacing:5.460000px;}
.lsa{letter-spacing:5.675400px;}
.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;}
.ws76{word-spacing:-4.914000px;}
.ws23{word-spacing:-4.806000px;}
.ws86{word-spacing:-4.428000px;}
.ws28{word-spacing:-3.942000px;}
.ws3b{word-spacing:-3.888000px;}
.ws55{word-spacing:-3.834000px;}
.ws82{word-spacing:-3.726000px;}
.ws11{word-spacing:-3.618000px;}
.ws5b{word-spacing:-3.294000px;}
.ws56{word-spacing:-2.808000px;}
.ws51{word-spacing:-2.700000px;}
.ws5d{word-spacing:-2.646000px;}
.ws1a{word-spacing:-2.592000px;}
.ws60{word-spacing:-2.538000px;}
.ws3{word-spacing:-2.376000px;}
.ws52{word-spacing:-2.214000px;}
.ws3f{word-spacing:-2.106000px;}
.ws67{word-spacing:-2.052000px;}
.ws41{word-spacing:-1.890000px;}
.wsa{word-spacing:-1.782000px;}
.ws88{word-spacing:-1.674000px;}
.ws31{word-spacing:-1.296000px;}
.ws7a{word-spacing:-1.242000px;}
.ws43{word-spacing:-1.188000px;}
.ws80{word-spacing:-1.134000px;}
.ws73{word-spacing:-1.080000px;}
.ws6b{word-spacing:-0.918000px;}
.ws22{word-spacing:-0.864000px;}
.ws64{word-spacing:-0.810000px;}
.ws7{word-spacing:-0.756000px;}
.ws3d{word-spacing:-0.648000px;}
.ws49{word-spacing:-0.594000px;}
.ws36{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.486000px;}
.ws75{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.270000px;}
.ws39{word-spacing:-0.162000px;}
.ws57{word-spacing:-0.108000px;}
.ws8a{word-spacing:-0.096000px;}
.ws8{word-spacing:-0.054000px;}
.ws89{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws8c{word-spacing:0.096000px;}
.ws8d{word-spacing:0.144000px;}
.ws5f{word-spacing:0.270000px;}
.ws7b{word-spacing:0.324000px;}
.ws1c{word-spacing:0.432000px;}
.ws3a{word-spacing:0.540000px;}
.ws6{word-spacing:0.594000px;}
.ws13{word-spacing:0.756000px;}
.wsc{word-spacing:0.810000px;}
.ws8b{word-spacing:0.960000px;}
.ws85{word-spacing:1.080000px;}
.ws78{word-spacing:1.134000px;}
.ws30{word-spacing:1.242000px;}
.ws2b{word-spacing:1.296000px;}
.ws6c{word-spacing:1.350000px;}
.ws65{word-spacing:1.512000px;}
.ws25{word-spacing:1.566000px;}
.ws26{word-spacing:1.782000px;}
.wsf{word-spacing:1.836000px;}
.ws46{word-spacing:1.890000px;}
.ws33{word-spacing:1.998000px;}
.ws54{word-spacing:2.052000px;}
.ws12{word-spacing:2.268000px;}
.ws5a{word-spacing:2.322000px;}
.ws21{word-spacing:2.484000px;}
.ws10{word-spacing:2.538000px;}
.ws70{word-spacing:2.754000px;}
.ws7c{word-spacing:2.808000px;}
.ws4{word-spacing:2.970000px;}
.ws5e{word-spacing:3.024000px;}
.ws20{word-spacing:3.132000px;}
.ws1d{word-spacing:3.186000px;}
.ws5c{word-spacing:3.348000px;}
.ws87{word-spacing:3.564000px;}
.ws1b{word-spacing:3.618000px;}
.ws4e{word-spacing:3.726000px;}
.ws66{word-spacing:3.780000px;}
.ws2e{word-spacing:3.834000px;}
.ws6f{word-spacing:3.888000px;}
.ws5{word-spacing:4.158000px;}
.wsd{word-spacing:4.212000px;}
.ws1e{word-spacing:4.266000px;}
.ws47{word-spacing:4.374000px;}
.ws6a{word-spacing:4.590000px;}
.ws77{word-spacing:4.752000px;}
.ws6e{word-spacing:4.860000px;}
.ws37{word-spacing:4.914000px;}
.ws2c{word-spacing:4.968000px;}
.ws18{word-spacing:5.076000px;}
.ws38{word-spacing:5.184000px;}
.ws4f{word-spacing:5.238000px;}
.ws83{word-spacing:5.292000px;}
.ws48{word-spacing:5.508000px;}
.ws62{word-spacing:5.562000px;}
.ws61{word-spacing:5.670000px;}
.ws79{word-spacing:5.724000px;}
.ws1f{word-spacing:5.886000px;}
.ws58{word-spacing:6.102000px;}
.ws19{word-spacing:6.156000px;}
.ws81{word-spacing:6.210000px;}
.ws2a{word-spacing:6.264000px;}
.ws40{word-spacing:6.318000px;}
.wsb{word-spacing:6.372000px;}
.ws4b{word-spacing:6.588000px;}
.ws15{word-spacing:6.642000px;}
.ws35{word-spacing:6.804000px;}
.ws42{word-spacing:7.020000px;}
.ws71{word-spacing:7.074000px;}
.ws32{word-spacing:7.128000px;}
.ws34{word-spacing:7.506000px;}
.ws16{word-spacing:7.560000px;}
.ws50{word-spacing:7.830000px;}
.ws72{word-spacing:8.262000px;}
.ws14{word-spacing:8.640000px;}
.wse{word-spacing:8.748000px;}
.ws68{word-spacing:8.972370px;}
.ws4d{word-spacing:9.018000px;}
.ws24{word-spacing:9.180000px;}
.ws2d{word-spacing:9.234000px;}
.ws4c{word-spacing:9.396000px;}
.ws74{word-spacing:9.450000px;}
.ws9{word-spacing:9.666000px;}
.ws4a{word-spacing:9.774000px;}
.ws27{word-spacing:10.044000px;}
.ws7f{word-spacing:10.368000px;}
.ws2f{word-spacing:10.476000px;}
.ws3c{word-spacing:11.286000px;}
.ws7e{word-spacing:11.340000px;}
.ws7d{word-spacing:11.610000px;}
.ws59{word-spacing:11.772000px;}
.ws45{word-spacing:11.826000px;}
.ws6d{word-spacing:12.096000px;}
.ws63{word-spacing:12.582000px;}
.ws3e{word-spacing:13.554000px;}
.ws69{word-spacing:13.716000px;}
.ws84{word-spacing:14.742000px;}
.ws44{word-spacing:14.958000px;}
.ws17{word-spacing:24.948000px;}
._4{margin-left:-15.493800px;}
._7{margin-left:-10.680000px;}
._18{margin-left:-8.219400px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.872400px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._8{width:2.649600px;}
._9{width:3.726000px;}
._a{width:4.762800px;}
._b{width:6.690600px;}
._11{width:7.840800px;}
._12{width:8.883000px;}
._10{width:9.936000px;}
._c{width:10.989000px;}
._13{width:14.310000px;}
._19{width:15.379200px;}
._1a{width:16.723800px;}
._15{width:18.246600px;}
._16{width:19.580400px;}
._14{width:22.204800px;}
._17{width:24.105600px;}
._e{width:48.600000px;}
._f{width:50.652000px;}
._d{width:57.132000px;}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs8{font-size:31.482000px;}
.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;}
.y2b{bottom:53.621700px;}
.y29{bottom:53.624700px;}
.y2a{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.y1c2{bottom:107.114700px;}
.y17a{bottom:110.546700px;}
.y103{bottom:112.900950px;}
.yb5{bottom:112.909950px;}
.y5b{bottom:112.932450px;}
.y51{bottom:112.945950px;}
.y150{bottom:112.947450px;}
.y94{bottom:112.959450px;}
.ye4{bottom:112.995450px;}
.y127{bottom:113.013450px;}
.y12d{bottom:113.017950px;}
.yd0{bottom:113.022450px;}
.y1d8{bottom:113.858700px;}
.y201{bottom:119.870700px;}
.y1c1{bottom:126.614700px;}
.y179{bottom:130.046700px;}
.y14f{bottom:132.447450px;}
.y1d7{bottom:133.358700px;}
.y102{bottom:135.405450px;}
.yb4{bottom:135.414450px;}
.y5a{bottom:135.436950px;}
.y50{bottom:135.450450px;}
.y93{bottom:135.463950px;}
.ye3{bottom:135.499950px;}
.y126{bottom:135.517950px;}
.y12c{bottom:135.522450px;}
.ycf{bottom:135.526950px;}
.y1f8{bottom:139.370700px;}
.y1a1{bottom:146.114700px;}
.y14e{bottom:151.947450px;}
.y1f0{bottom:152.858700px;}
.y26{bottom:156.167250px;}
.y101{bottom:157.909950px;}
.yb3{bottom:157.918950px;}
.y59{bottom:157.941450px;}
.y4f{bottom:157.954950px;}
.y92{bottom:157.968450px;}
.y12b{bottom:158.026950px;}
.yce{bottom:158.031450px;}
.y1f7{bottom:158.870700px;}
.y178{bottom:161.450700px;}
.y1a0{bottom:165.614700px;}
.y200{bottom:171.626700px;}
.y1ef{bottom:172.358700px;}
.y1c0{bottom:178.370700px;}
.y25{bottom:178.671750px;}
.y100{bottom:180.414450px;}
.yb2{bottom:180.423450px;}
.y58{bottom:180.445950px;}
.y7f{bottom:180.459450px;}
.y91{bottom:180.472950px;}
.ye2{bottom:180.495450px;}
.y125{bottom:180.513450px;}
.y12a{bottom:180.531450px;}
.y177{bottom:180.950700px;}
.y14d{bottom:184.203450px;}
.y19f{bottom:185.114700px;}
.y1f6{bottom:191.126700px;}
.y1ee{bottom:191.858700px;}
.y1bf{bottom:197.870700px;}
.y24{bottom:201.176250px;}
.yff{bottom:202.918950px;}
.yb1{bottom:202.927950px;}
.y4e{bottom:202.950450px;}
.y7e{bottom:202.963950px;}
.y90{bottom:202.977450px;}
.ye1{bottom:202.999950px;}
.y124{bottom:203.017950px;}
.ycd{bottom:203.031450px;}
.y14c{bottom:203.703450px;}
.y1d6{bottom:204.614700px;}
.y1f5{bottom:210.626700px;}
.y176{bottom:212.354700px;}
.y19e{bottom:217.370700px;}
.y14b{bottom:223.203450px;}
.y1ff{bottom:223.382700px;}
.y23{bottom:223.680750px;}
.y1ed{bottom:224.114700px;}
.yfe{bottom:225.423450px;}
.yb0{bottom:225.432450px;}
.y4d{bottom:225.454950px;}
.y7d{bottom:225.468450px;}
.ye0{bottom:225.504450px;}
.y123{bottom:225.522450px;}
.y129{bottom:225.531450px;}
.y1be{bottom:230.126700px;}
.y1d5{bottom:236.870700px;}
.y1f4{bottom:242.882700px;}
.y175{bottom:243.758700px;}
.y22{bottom:246.185250px;}
.ycc{bottom:247.909950px;}
.yd6{bottom:247.923450px;}
.yfd{bottom:247.927950px;}
.y4c{bottom:247.959450px;}
.y7c{bottom:247.972950px;}
.ydf{bottom:248.008950px;}
.y122{bottom:248.026950px;}
.y19d{bottom:249.626700px;}
.y14a{bottom:255.459450px;}
.y1d4{bottom:256.370700px;}
.y1bd{bottom:262.382700px;}
.y174{bottom:263.258700px;}
.y21{bottom:268.689750px;}
.y19c{bottom:269.126700px;}
.ycb{bottom:270.414450px;}
.yaf{bottom:270.427950px;}
.y57{bottom:270.463950px;}
.y7b{bottom:270.477450px;}
.yde{bottom:270.513450px;}
.y121{bottom:270.531450px;}
.y149{bottom:274.959450px;}
.y1fe{bottom:275.138700px;}
.y1d3{bottom:275.870700px;}
.y1bc{bottom:281.882700px;}
.y173{bottom:282.758700px;}
.y20{bottom:291.194250px;}
.yca{bottom:292.918950px;}
.yfc{bottom:292.923450px;}
.yae{bottom:292.932450px;}
.y4b{bottom:292.954950px;}
.y8f{bottom:292.981950px;}
.ydd{bottom:293.017950px;}
.y148{bottom:294.459450px;}
.y1f3{bottom:294.638700px;}
.y19b{bottom:301.382700px;}
.y1d2{bottom:308.126700px;}
.y1f{bottom:313.698750px;}
.y1bb{bottom:314.138700px;}
.y172{bottom:314.162700px;}
.yc9{bottom:315.423450px;}
.yfb{bottom:315.427950px;}
.yad{bottom:315.436950px;}
.y4a{bottom:315.459450px;}
.y7a{bottom:315.472950px;}
.y8e{bottom:315.486450px;}
.y120{bottom:315.531450px;}
.y19a{bottom:320.882700px;}
.y147{bottom:326.715450px;}
.y1ec{bottom:327.626700px;}
.y1ba{bottom:333.638700px;}
.y171{bottom:333.662700px;}
.yc8{bottom:337.927950px;}
.yfa{bottom:337.932450px;}
.yac{bottom:337.941450px;}
.y49{bottom:337.963950px;}
.y79{bottom:337.977450px;}
.y8d{bottom:337.990950px;}
.ydc{bottom:338.013450px;}
.y1d1{bottom:340.382700px;}
.y146{bottom:346.215450px;}
.y1eb{bottom:347.126700px;}
.y199{bottom:353.138700px;}
.y170{bottom:353.162700px;}
.y1e{bottom:358.694250px;}
.yc7{bottom:360.432450px;}
.yf9{bottom:360.436950px;}
.yab{bottom:360.445950px;}
.y48{bottom:360.468450px;}
.y78{bottom:360.481950px;}
.ydb{bottom:360.517950px;}
.y1b9{bottom:365.894700px;}
.y198{bottom:372.638700px;}
.y145{bottom:378.471450px;}
.y1ea{bottom:379.382700px;}
.yc6{bottom:382.936950px;}
.yf8{bottom:382.941450px;}
.y11f{bottom:382.945950px;}
.yaa{bottom:382.950450px;}
.y47{bottom:382.972950px;}
.y77{bottom:382.986450px;}
.yda{bottom:383.022450px;}
.y16f{bottom:384.566700px;}
.y1b8{bottom:385.394700px;}
.y1d0{bottom:392.138700px;}
.y144{bottom:397.971450px;}
.y1e9{bottom:398.882700px;}
.y1d{bottom:403.689750px;}
.y16e{bottom:404.066700px;}
.y197{bottom:404.894700px;}
.yc5{bottom:405.441450px;}
.yf7{bottom:405.445950px;}
.y11e{bottom:405.450450px;}
.ya9{bottom:405.454950px;}
.y56{bottom:405.477450px;}
.y76{bottom:405.490950px;}
.yd9{bottom:405.526950px;}
.y1b7{bottom:417.650700px;}
.y16d{bottom:423.566700px;}
.y196{bottom:424.394700px;}
.y1c{bottom:426.194250px;}
.y128{bottom:427.945950px;}
.yf6{bottom:427.950450px;}
.y11d{bottom:427.954950px;}
.ya8{bottom:427.959450px;}
.y46{bottom:427.968450px;}
.y75{bottom:427.995450px;}
.yd8{bottom:428.031450px;}
.y143{bottom:430.227450px;}
.y1e8{bottom:431.138700px;}
.y1b6{bottom:437.150700px;}
.y195{bottom:443.894700px;}
.y1b{bottom:448.698750px;}
.y142{bottom:449.727450px;}
.yc4{bottom:450.436950px;}
.yd5{bottom:450.450450px;}
.yf5{bottom:450.454950px;}
.y11c{bottom:450.459450px;}
.ya7{bottom:450.463950px;}
.y45{bottom:450.472950px;}
.y74{bottom:450.499950px;}
.y16c{bottom:454.970700px;}
.y1b5{bottom:456.650700px;}
.y1cf{bottom:463.394700px;}
.y1a{bottom:471.203250px;}
.yc3{bottom:472.941450px;}
.yd4{bottom:472.954950px;}
.y44{bottom:472.977450px;}
.y73{bottom:473.004450px;}
.yd7{bottom:473.031450px;}
.y194{bottom:476.150700px;}
.y141{bottom:481.983450px;}
.y1e7{bottom:482.894700px;}
.y16b{bottom:486.374700px;}
.y1b4{bottom:488.906700px;}
.y19{bottom:493.707750px;}
.yc2{bottom:495.445950px;}
.yf4{bottom:495.450450px;}
.y11b{bottom:495.454950px;}
.ya6{bottom:495.459450px;}
.y43{bottom:495.481950px;}
.y72{bottom:495.508950px;}
.y193{bottom:495.650700px;}
.y140{bottom:501.483450px;}
.y1b3{bottom:508.406700px;}
.y192{bottom:515.150700px;}
.y18{bottom:516.212250px;}
.y16a{bottom:517.778700px;}
.yc1{bottom:517.950450px;}
.yf3{bottom:517.954950px;}
.y11a{bottom:517.959450px;}
.ya5{bottom:517.963950px;}
.y42{bottom:517.986450px;}
.y8c{bottom:517.999950px;}
.y13f{bottom:520.983450px;}
.y1b2{bottom:527.906700px;}
.y1e6{bottom:534.650700px;}
.y169{bottom:537.278700px;}
.y17{bottom:538.716750px;}
.yc0{bottom:540.454950px;}
.yf2{bottom:540.459450px;}
.y119{bottom:540.463950px;}
.ya4{bottom:540.468450px;}
.y55{bottom:540.490950px;}
.y71{bottom:540.504450px;}
.y1fd{bottom:540.662700px;}
.y191{bottom:547.406700px;}
.y13e{bottom:553.239450px;}
.y168{bottom:556.778700px;}
.y1b1{bottom:560.162700px;}
.y16{bottom:561.221250px;}
.ybf{bottom:562.959450px;}
.yf1{bottom:562.963950px;}
.y118{bottom:562.968450px;}
.ya3{bottom:562.972950px;}
.y41{bottom:562.981950px;}
.y70{bottom:563.008950px;}
.y1ce{bottom:566.906700px;}
.y190{bottom:579.662700px;}
.y15{bottom:583.725750px;}
.ybe{bottom:585.463950px;}
.yf0{bottom:585.468450px;}
.y117{bottom:585.472950px;}
.ya2{bottom:585.477450px;}
.y40{bottom:585.486450px;}
.y13d{bottom:585.495450px;}
.y6f{bottom:585.513450px;}
.y1cd{bottom:586.406700px;}
.y167{bottom:588.182700px;}
.y1fc{bottom:592.418700px;}
.y18f{bottom:599.162700px;}
.y13c{bottom:604.995450px;}
.y14{bottom:606.230250px;}
.y166{bottom:607.682700px;}
.yd3{bottom:607.968450px;}
.yef{bottom:607.972950px;}
.y116{bottom:607.977450px;}
.y3f{bottom:607.990950px;}
.y6e{bottom:608.017950px;}
.y1b0{bottom:611.918700px;}
.y1cc{bottom:618.662700px;}
.y1fb{bottom:624.674700px;}
.y13{bottom:628.734750px;}
.ybd{bottom:630.459450px;}
.ya1{bottom:630.472950px;}
.yee{bottom:630.477450px;}
.y3e{bottom:630.495450px;}
.y6d{bottom:630.522450px;}
.y18e{bottom:631.418700px;}
.y13b{bottom:637.251450px;}
.y1cb{bottom:638.162700px;}
.y165{bottom:639.086700px;}
.y1af{bottom:644.174700px;}
.y18d{bottom:650.918700px;}
.y12{bottom:651.239250px;}
.ybc{bottom:652.963950px;}
.y115{bottom:652.972950px;}
.ya0{bottom:652.977450px;}
.y3d{bottom:652.999950px;}
.y6c{bottom:653.026950px;}
.y13a{bottom:656.751450px;}
.y164{bottom:658.586700px;}
.y1ae{bottom:663.674700px;}
.y18c{bottom:670.418700px;}
.y11{bottom:673.743750px;}
.ybb{bottom:675.468450px;}
.yed{bottom:675.472950px;}
.y114{bottom:675.477450px;}
.y9f{bottom:675.481950px;}
.y6b{bottom:675.486450px;}
.y3c{bottom:675.504450px;}
.y8b{bottom:675.517950px;}
.y163{bottom:678.086700px;}
.y1f2{bottom:683.174700px;}
.y139{bottom:689.007450px;}
.y18b{bottom:689.918700px;}
.y1ad{bottom:695.930700px;}
.y10{bottom:696.248250px;}
.yba{bottom:697.972950px;}
.yec{bottom:697.977450px;}
.y113{bottom:697.981950px;}
.y9e{bottom:697.986450px;}
.y6a{bottom:697.990950px;}
.y3b{bottom:698.008950px;}
.y8a{bottom:698.022450px;}
.y1f1{bottom:702.674700px;}
.y138{bottom:708.507450px;}
.y1e5{bottom:709.418700px;}
.y162{bottom:709.490700px;}
.y1ac{bottom:715.430700px;}
.yf{bottom:718.752750px;}
.yb9{bottom:720.477450px;}
.yeb{bottom:720.481950px;}
.y112{bottom:720.486450px;}
.y9d{bottom:720.490950px;}
.y69{bottom:720.495450px;}
.y3a{bottom:720.513450px;}
.y89{bottom:720.526950px;}
.y18a{bottom:722.174700px;}
.y137{bottom:728.007450px;}
.y161{bottom:728.990700px;}
.y1ab{bottom:734.930700px;}
.ye{bottom:741.257250px;}
.y189{bottom:741.674700px;}
.yb8{bottom:742.981950px;}
.yea{bottom:742.986450px;}
.y111{bottom:742.990950px;}
.y9c{bottom:742.995450px;}
.y68{bottom:742.999950px;}
.y54{bottom:743.004450px;}
.y88{bottom:743.031450px;}
.y1fa{bottom:747.686700px;}
.y1ca{bottom:754.430700px;}
.y136{bottom:760.263450px;}
.y160{bottom:760.394700px;}
.y1e4{bottom:761.174700px;}
.yb7{bottom:765.486450px;}
.ye9{bottom:765.490950px;}
.y9b{bottom:765.499950px;}
.y67{bottom:765.504450px;}
.y39{bottom:765.508950px;}
.y1aa{bottom:767.186700px;}
.y188{bottom:773.930700px;}
.y135{bottom:779.763450px;}
.y15f{bottom:779.894700px;}
.y1a9{bottom:786.686700px;}
.y110{bottom:787.986450px;}
.yb6{bottom:787.990950px;}
.ye8{bottom:787.995450px;}
.y38{bottom:788.013450px;}
.y87{bottom:788.031450px;}
.yd{bottom:788.048250px;}
.y1c9{bottom:793.430700px;}
.y15e{bottom:799.394700px;}
.y1f9{bottom:799.442700px;}
.y187{bottom:806.186700px;}
.y10f{bottom:810.490950px;}
.y9a{bottom:810.495450px;}
.y66{bottom:810.499950px;}
.y37{bottom:810.517950px;}
.y134{bottom:812.019450px;}
.y1e3{bottom:812.930700px;}
.y1a8{bottom:818.942700px;}
.y1c8{bottom:825.686700px;}
.y15d{bottom:830.798700px;}
.y133{bottom:831.519450px;}
.y1e2{bottom:832.430700px;}
.y86{bottom:832.986450px;}
.y10e{bottom:832.995450px;}
.y99{bottom:832.999950px;}
.y65{bottom:833.004450px;}
.y36{bottom:833.022450px;}
.y186{bottom:838.442700px;}
.y1c7{bottom:845.186700px;}
.yc{bottom:848.815950px;}
.y15c{bottom:850.298700px;}
.y85{bottom:855.490950px;}
.y10d{bottom:855.499950px;}
.y98{bottom:855.504450px;}
.y64{bottom:855.508950px;}
.y35{bottom:855.526950px;}
.y185{bottom:857.942700px;}
.y132{bottom:863.775450px;}
.y1e1{bottom:864.686700px;}
.yb{bottom:865.315950px;}
.y1a7{bottom:870.698700px;}
.y1c6{bottom:877.442700px;}
.y84{bottom:877.995450px;}
.y10c{bottom:878.004450px;}
.y97{bottom:878.008950px;}
.y63{bottom:878.013450px;}
.y34{bottom:878.031450px;}
.y15b{bottom:881.702700px;}
.y131{bottom:883.275450px;}
.y1e0{bottom:884.186700px;}
.ya{bottom:888.193950px;}
.y184{bottom:890.198700px;}
.y83{bottom:900.499950px;}
.ye7{bottom:900.504450px;}
.y10b{bottom:900.508950px;}
.yd2{bottom:900.513450px;}
.y62{bottom:900.517950px;}
.y15a{bottom:901.202700px;}
.y183{bottom:909.698700px;}
.y130{bottom:915.531450px;}
.y1df{bottom:916.442700px;}
.y1a6{bottom:922.454700px;}
.y82{bottom:923.004450px;}
.ye6{bottom:923.008950px;}
.y10a{bottom:923.013450px;}
.yd1{bottom:923.017950px;}
.y61{bottom:923.022450px;}
.y33{bottom:923.031450px;}
.y1c5{bottom:929.198700px;}
.y159{bottom:932.606700px;}
.y12f{bottom:935.031450px;}
.y1de{bottom:935.942700px;}
.y182{bottom:941.954700px;}
.y81{bottom:945.508950px;}
.ye5{bottom:945.513450px;}
.y9{bottom:948.214500px;}
.y158{bottom:952.106700px;}
.y181{bottom:961.454700px;}
.y109{bottom:968.008950px;}
.y80{bottom:968.013450px;}
.y60{bottom:968.017950px;}
.y12e{bottom:968.031450px;}
.y1dd{bottom:968.198700px;}
.y8{bottom:970.717500px;}
.y157{bottom:971.606700px;}
.y1a5{bottom:974.210700px;}
.y1c4{bottom:980.954700px;}
.y1dc{bottom:987.698700px;}
.y53{bottom:990.504450px;}
.y108{bottom:990.513450px;}
.y32{bottom:990.517950px;}
.y5f{bottom:990.522450px;}
.y180{bottom:993.710700px;}
.y156{bottom:1003.010700px;}
.y7{bottom:1005.973500px;}
.y52{bottom:1013.008950px;}
.y107{bottom:1013.017950px;}
.y96{bottom:1013.022450px;}
.y5e{bottom:1013.026950px;}
.y17f{bottom:1013.210700px;}
.y1db{bottom:1019.954700px;}
.y155{bottom:1022.510700px;}
.y1a4{bottom:1025.966700px;}
.y17e{bottom:1032.710700px;}
.y31{bottom:1035.513450px;}
.y106{bottom:1035.522450px;}
.y95{bottom:1035.526950px;}
.y5d{bottom:1035.531450px;}
.y6{bottom:1038.973500px;}
.y1a3{bottom:1045.466700px;}
.y1da{bottom:1052.210700px;}
.y154{bottom:1053.914700px;}
.y30{bottom:1058.017950px;}
.y105{bottom:1058.026950px;}
.y17d{bottom:1064.966700px;}
.y5{bottom:1071.973500px;}
.y1a2{bottom:1077.722700px;}
.y2f{bottom:1080.522450px;}
.y104{bottom:1080.531450px;}
.y5c{bottom:1080.535950px;}
.y1c3{bottom:1084.466700px;}
.y153{bottom:1085.318700px;}
.y17c{bottom:1097.222700px;}
.y2e{bottom:1103.026950px;}
.y1d9{bottom:1103.966700px;}
.y152{bottom:1104.818700px;}
.y17b{bottom:1116.722700px;}
.y2d{bottom:1125.531450px;}
.y151{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y28{bottom:1182.887700px;}
.y2c{bottom:1197.026700px;}
.y27{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h7{height:36.624000px;}
.hc{height:36.816000px;}
.ha{height:38.340000px;}
.h9{height:39.420000px;}
.h8{height:41.202000px;}
.hb{height:42.444000px;}
.h6{height:43.800000px;}
.h14{height:47.088000px;}
.h13{height:47.184000px;}
.he{height:52.974000px;}
.h12{height:52.992000px;}
.h11{height:53.082000px;}
.h10{height:53.154000px;}
.h5{height:55.380000px;}
.hd{height:59.004000px;}
.hf{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;}
.x8{left:141.803100px;}
.xb{left:148.823100px;}
.x3{left:585.415800px;}
.x4{left:626.092800px;}
.x2{left:677.563800px;}
.xa{left:724.573950px;}
.x9{left:727.408650px;}
.x6{left:729.638250px;}
.x7{left:731.610900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.144000pt;}
.lsb{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.853333pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.085333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.720000pt;}
.ls8{letter-spacing:0.816000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.152000pt;}
.ls3{letter-spacing:3.118192pt;}
.ls0{letter-spacing:4.853333pt;}
.lsa{letter-spacing:5.044800pt;}
.ws0{word-spacing:-13.776000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws76{word-spacing:-4.368000pt;}
.ws23{word-spacing:-4.272000pt;}
.ws86{word-spacing:-3.936000pt;}
.ws28{word-spacing:-3.504000pt;}
.ws3b{word-spacing:-3.456000pt;}
.ws55{word-spacing:-3.408000pt;}
.ws82{word-spacing:-3.312000pt;}
.ws11{word-spacing:-3.216000pt;}
.ws5b{word-spacing:-2.928000pt;}
.ws56{word-spacing:-2.496000pt;}
.ws51{word-spacing:-2.400000pt;}
.ws5d{word-spacing:-2.352000pt;}
.ws1a{word-spacing:-2.304000pt;}
.ws60{word-spacing:-2.256000pt;}
.ws3{word-spacing:-2.112000pt;}
.ws52{word-spacing:-1.968000pt;}
.ws3f{word-spacing:-1.872000pt;}
.ws67{word-spacing:-1.824000pt;}
.ws41{word-spacing:-1.680000pt;}
.wsa{word-spacing:-1.584000pt;}
.ws88{word-spacing:-1.488000pt;}
.ws31{word-spacing:-1.152000pt;}
.ws7a{word-spacing:-1.104000pt;}
.ws43{word-spacing:-1.056000pt;}
.ws80{word-spacing:-1.008000pt;}
.ws73{word-spacing:-0.960000pt;}
.ws6b{word-spacing:-0.816000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws64{word-spacing:-0.720000pt;}
.ws7{word-spacing:-0.672000pt;}
.ws3d{word-spacing:-0.576000pt;}
.ws49{word-spacing:-0.528000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.432000pt;}
.ws75{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.240000pt;}
.ws39{word-spacing:-0.144000pt;}
.ws57{word-spacing:-0.096000pt;}
.ws8a{word-spacing:-0.085333pt;}
.ws8{word-spacing:-0.048000pt;}
.ws89{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws8c{word-spacing:0.085333pt;}
.ws8d{word-spacing:0.128000pt;}
.ws5f{word-spacing:0.240000pt;}
.ws7b{word-spacing:0.288000pt;}
.ws1c{word-spacing:0.384000pt;}
.ws3a{word-spacing:0.480000pt;}
.ws6{word-spacing:0.528000pt;}
.ws13{word-spacing:0.672000pt;}
.wsc{word-spacing:0.720000pt;}
.ws8b{word-spacing:0.853333pt;}
.ws85{word-spacing:0.960000pt;}
.ws78{word-spacing:1.008000pt;}
.ws30{word-spacing:1.104000pt;}
.ws2b{word-spacing:1.152000pt;}
.ws6c{word-spacing:1.200000pt;}
.ws65{word-spacing:1.344000pt;}
.ws25{word-spacing:1.392000pt;}
.ws26{word-spacing:1.584000pt;}
.wsf{word-spacing:1.632000pt;}
.ws46{word-spacing:1.680000pt;}
.ws33{word-spacing:1.776000pt;}
.ws54{word-spacing:1.824000pt;}
.ws12{word-spacing:2.016000pt;}
.ws5a{word-spacing:2.064000pt;}
.ws21{word-spacing:2.208000pt;}
.ws10{word-spacing:2.256000pt;}
.ws70{word-spacing:2.448000pt;}
.ws7c{word-spacing:2.496000pt;}
.ws4{word-spacing:2.640000pt;}
.ws5e{word-spacing:2.688000pt;}
.ws20{word-spacing:2.784000pt;}
.ws1d{word-spacing:2.832000pt;}
.ws5c{word-spacing:2.976000pt;}
.ws87{word-spacing:3.168000pt;}
.ws1b{word-spacing:3.216000pt;}
.ws4e{word-spacing:3.312000pt;}
.ws66{word-spacing:3.360000pt;}
.ws2e{word-spacing:3.408000pt;}
.ws6f{word-spacing:3.456000pt;}
.ws5{word-spacing:3.696000pt;}
.wsd{word-spacing:3.744000pt;}
.ws1e{word-spacing:3.792000pt;}
.ws47{word-spacing:3.888000pt;}
.ws6a{word-spacing:4.080000pt;}
.ws77{word-spacing:4.224000pt;}
.ws6e{word-spacing:4.320000pt;}
.ws37{word-spacing:4.368000pt;}
.ws2c{word-spacing:4.416000pt;}
.ws18{word-spacing:4.512000pt;}
.ws38{word-spacing:4.608000pt;}
.ws4f{word-spacing:4.656000pt;}
.ws83{word-spacing:4.704000pt;}
.ws48{word-spacing:4.896000pt;}
.ws62{word-spacing:4.944000pt;}
.ws61{word-spacing:5.040000pt;}
.ws79{word-spacing:5.088000pt;}
.ws1f{word-spacing:5.232000pt;}
.ws58{word-spacing:5.424000pt;}
.ws19{word-spacing:5.472000pt;}
.ws81{word-spacing:5.520000pt;}
.ws2a{word-spacing:5.568000pt;}
.ws40{word-spacing:5.616000pt;}
.wsb{word-spacing:5.664000pt;}
.ws4b{word-spacing:5.856000pt;}
.ws15{word-spacing:5.904000pt;}
.ws35{word-spacing:6.048000pt;}
.ws42{word-spacing:6.240000pt;}
.ws71{word-spacing:6.288000pt;}
.ws32{word-spacing:6.336000pt;}
.ws34{word-spacing:6.672000pt;}
.ws16{word-spacing:6.720000pt;}
.ws50{word-spacing:6.960000pt;}
.ws72{word-spacing:7.344000pt;}
.ws14{word-spacing:7.680000pt;}
.wse{word-spacing:7.776000pt;}
.ws68{word-spacing:7.975440pt;}
.ws4d{word-spacing:8.016000pt;}
.ws24{word-spacing:8.160000pt;}
.ws2d{word-spacing:8.208000pt;}
.ws4c{word-spacing:8.352000pt;}
.ws74{word-spacing:8.400000pt;}
.ws9{word-spacing:8.592000pt;}
.ws4a{word-spacing:8.688000pt;}
.ws27{word-spacing:8.928000pt;}
.ws7f{word-spacing:9.216000pt;}
.ws2f{word-spacing:9.312000pt;}
.ws3c{word-spacing:10.032000pt;}
.ws7e{word-spacing:10.080000pt;}
.ws7d{word-spacing:10.320000pt;}
.ws59{word-spacing:10.464000pt;}
.ws45{word-spacing:10.512000pt;}
.ws6d{word-spacing:10.752000pt;}
.ws63{word-spacing:11.184000pt;}
.ws3e{word-spacing:12.048000pt;}
.ws69{word-spacing:12.192000pt;}
.ws84{word-spacing:13.104000pt;}
.ws44{word-spacing:13.296000pt;}
.ws17{word-spacing:22.176000pt;}
._4{margin-left:-13.772267pt;}
._7{margin-left:-9.493333pt;}
._18{margin-left:-7.306133pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.442133pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._8{width:2.355200pt;}
._9{width:3.312000pt;}
._a{width:4.233600pt;}
._b{width:5.947200pt;}
._11{width:6.969600pt;}
._12{width:7.896000pt;}
._10{width:8.832000pt;}
._c{width:9.768000pt;}
._13{width:12.720000pt;}
._19{width:13.670400pt;}
._1a{width:14.865600pt;}
._15{width:16.219200pt;}
._16{width:17.404800pt;}
._14{width:19.737600pt;}
._17{width:21.427200pt;}
._e{width:43.200000pt;}
._f{width:45.024000pt;}
._d{width:50.784000pt;}
.fs8{font-size:27.984000pt;}
.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;}
.y2b{bottom:47.663733pt;}
.y29{bottom:47.666400pt;}
.y2a{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.y1c2{bottom:95.213067pt;}
.y17a{bottom:98.263733pt;}
.y103{bottom:100.356400pt;}
.yb5{bottom:100.364400pt;}
.y5b{bottom:100.384400pt;}
.y51{bottom:100.396400pt;}
.y150{bottom:100.397733pt;}
.y94{bottom:100.408400pt;}
.ye4{bottom:100.440400pt;}
.y127{bottom:100.456400pt;}
.y12d{bottom:100.460400pt;}
.yd0{bottom:100.464400pt;}
.y1d8{bottom:101.207733pt;}
.y201{bottom:106.551733pt;}
.y1c1{bottom:112.546400pt;}
.y179{bottom:115.597067pt;}
.y14f{bottom:117.731067pt;}
.y1d7{bottom:118.541067pt;}
.y102{bottom:120.360400pt;}
.yb4{bottom:120.368400pt;}
.y5a{bottom:120.388400pt;}
.y50{bottom:120.400400pt;}
.y93{bottom:120.412400pt;}
.ye3{bottom:120.444400pt;}
.y126{bottom:120.460400pt;}
.y12c{bottom:120.464400pt;}
.ycf{bottom:120.468400pt;}
.y1f8{bottom:123.885067pt;}
.y1a1{bottom:129.879733pt;}
.y14e{bottom:135.064400pt;}
.y1f0{bottom:135.874400pt;}
.y26{bottom:138.815333pt;}
.y101{bottom:140.364400pt;}
.yb3{bottom:140.372400pt;}
.y59{bottom:140.392400pt;}
.y4f{bottom:140.404400pt;}
.y92{bottom:140.416400pt;}
.y12b{bottom:140.468400pt;}
.yce{bottom:140.472400pt;}
.y1f7{bottom:141.218400pt;}
.y178{bottom:143.511733pt;}
.y1a0{bottom:147.213067pt;}
.y200{bottom:152.557067pt;}
.y1ef{bottom:153.207733pt;}
.y1c0{bottom:158.551733pt;}
.y25{bottom:158.819333pt;}
.y100{bottom:160.368400pt;}
.yb2{bottom:160.376400pt;}
.y58{bottom:160.396400pt;}
.y7f{bottom:160.408400pt;}
.y91{bottom:160.420400pt;}
.ye2{bottom:160.440400pt;}
.y125{bottom:160.456400pt;}
.y12a{bottom:160.472400pt;}
.y177{bottom:160.845067pt;}
.y14d{bottom:163.736400pt;}
.y19f{bottom:164.546400pt;}
.y1f6{bottom:169.890400pt;}
.y1ee{bottom:170.541067pt;}
.y1bf{bottom:175.885067pt;}
.y24{bottom:178.823333pt;}
.yff{bottom:180.372400pt;}
.yb1{bottom:180.380400pt;}
.y4e{bottom:180.400400pt;}
.y7e{bottom:180.412400pt;}
.y90{bottom:180.424400pt;}
.ye1{bottom:180.444400pt;}
.y124{bottom:180.460400pt;}
.ycd{bottom:180.472400pt;}
.y14c{bottom:181.069733pt;}
.y1d6{bottom:181.879733pt;}
.y1f5{bottom:187.223733pt;}
.y176{bottom:188.759733pt;}
.y19e{bottom:193.218400pt;}
.y14b{bottom:198.403067pt;}
.y1ff{bottom:198.562400pt;}
.y23{bottom:198.827333pt;}
.y1ed{bottom:199.213067pt;}
.yfe{bottom:200.376400pt;}
.yb0{bottom:200.384400pt;}
.y4d{bottom:200.404400pt;}
.y7d{bottom:200.416400pt;}
.ye0{bottom:200.448400pt;}
.y123{bottom:200.464400pt;}
.y129{bottom:200.472400pt;}
.y1be{bottom:204.557067pt;}
.y1d5{bottom:210.551733pt;}
.y1f4{bottom:215.895733pt;}
.y175{bottom:216.674400pt;}
.y22{bottom:218.831333pt;}
.ycc{bottom:220.364400pt;}
.yd6{bottom:220.376400pt;}
.yfd{bottom:220.380400pt;}
.y4c{bottom:220.408400pt;}
.y7c{bottom:220.420400pt;}
.ydf{bottom:220.452400pt;}
.y122{bottom:220.468400pt;}
.y19d{bottom:221.890400pt;}
.y14a{bottom:227.075067pt;}
.y1d4{bottom:227.885067pt;}
.y1bd{bottom:233.229067pt;}
.y174{bottom:234.007733pt;}
.y21{bottom:238.835333pt;}
.y19c{bottom:239.223733pt;}
.ycb{bottom:240.368400pt;}
.yaf{bottom:240.380400pt;}
.y57{bottom:240.412400pt;}
.y7b{bottom:240.424400pt;}
.yde{bottom:240.456400pt;}
.y121{bottom:240.472400pt;}
.y149{bottom:244.408400pt;}
.y1fe{bottom:244.567733pt;}
.y1d3{bottom:245.218400pt;}
.y1bc{bottom:250.562400pt;}
.y173{bottom:251.341067pt;}
.y20{bottom:258.839333pt;}
.yca{bottom:260.372400pt;}
.yfc{bottom:260.376400pt;}
.yae{bottom:260.384400pt;}
.y4b{bottom:260.404400pt;}
.y8f{bottom:260.428400pt;}
.ydd{bottom:260.460400pt;}
.y148{bottom:261.741733pt;}
.y1f3{bottom:261.901067pt;}
.y19b{bottom:267.895733pt;}
.y1d2{bottom:273.890400pt;}
.y1f{bottom:278.843333pt;}
.y1bb{bottom:279.234400pt;}
.y172{bottom:279.255733pt;}
.yc9{bottom:280.376400pt;}
.yfb{bottom:280.380400pt;}
.yad{bottom:280.388400pt;}
.y4a{bottom:280.408400pt;}
.y7a{bottom:280.420400pt;}
.y8e{bottom:280.432400pt;}
.y120{bottom:280.472400pt;}
.y19a{bottom:285.229067pt;}
.y147{bottom:290.413733pt;}
.y1ec{bottom:291.223733pt;}
.y1ba{bottom:296.567733pt;}
.y171{bottom:296.589067pt;}
.yc8{bottom:300.380400pt;}
.yfa{bottom:300.384400pt;}
.yac{bottom:300.392400pt;}
.y49{bottom:300.412400pt;}
.y79{bottom:300.424400pt;}
.y8d{bottom:300.436400pt;}
.ydc{bottom:300.456400pt;}
.y1d1{bottom:302.562400pt;}
.y146{bottom:307.747067pt;}
.y1eb{bottom:308.557067pt;}
.y199{bottom:313.901067pt;}
.y170{bottom:313.922400pt;}
.y1e{bottom:318.839333pt;}
.yc7{bottom:320.384400pt;}
.yf9{bottom:320.388400pt;}
.yab{bottom:320.396400pt;}
.y48{bottom:320.416400pt;}
.y78{bottom:320.428400pt;}
.ydb{bottom:320.460400pt;}
.y1b9{bottom:325.239733pt;}
.y198{bottom:331.234400pt;}
.y145{bottom:336.419067pt;}
.y1ea{bottom:337.229067pt;}
.yc6{bottom:340.388400pt;}
.yf8{bottom:340.392400pt;}
.y11f{bottom:340.396400pt;}
.yaa{bottom:340.400400pt;}
.y47{bottom:340.420400pt;}
.y77{bottom:340.432400pt;}
.yda{bottom:340.464400pt;}
.y16f{bottom:341.837067pt;}
.y1b8{bottom:342.573067pt;}
.y1d0{bottom:348.567733pt;}
.y144{bottom:353.752400pt;}
.y1e9{bottom:354.562400pt;}
.y1d{bottom:358.835333pt;}
.y16e{bottom:359.170400pt;}
.y197{bottom:359.906400pt;}
.yc5{bottom:360.392400pt;}
.yf7{bottom:360.396400pt;}
.y11e{bottom:360.400400pt;}
.ya9{bottom:360.404400pt;}
.y56{bottom:360.424400pt;}
.y76{bottom:360.436400pt;}
.yd9{bottom:360.468400pt;}
.y1b7{bottom:371.245067pt;}
.y16d{bottom:376.503733pt;}
.y196{bottom:377.239733pt;}
.y1c{bottom:378.839333pt;}
.y128{bottom:380.396400pt;}
.yf6{bottom:380.400400pt;}
.y11d{bottom:380.404400pt;}
.ya8{bottom:380.408400pt;}
.y46{bottom:380.416400pt;}
.y75{bottom:380.440400pt;}
.yd8{bottom:380.472400pt;}
.y143{bottom:382.424400pt;}
.y1e8{bottom:383.234400pt;}
.y1b6{bottom:388.578400pt;}
.y195{bottom:394.573067pt;}
.y1b{bottom:398.843333pt;}
.y142{bottom:399.757733pt;}
.yc4{bottom:400.388400pt;}
.yd5{bottom:400.400400pt;}
.yf5{bottom:400.404400pt;}
.y11c{bottom:400.408400pt;}
.ya7{bottom:400.412400pt;}
.y45{bottom:400.420400pt;}
.y74{bottom:400.444400pt;}
.y16c{bottom:404.418400pt;}
.y1b5{bottom:405.911733pt;}
.y1cf{bottom:411.906400pt;}
.y1a{bottom:418.847333pt;}
.yc3{bottom:420.392400pt;}
.yd4{bottom:420.404400pt;}
.y44{bottom:420.424400pt;}
.y73{bottom:420.448400pt;}
.yd7{bottom:420.472400pt;}
.y194{bottom:423.245067pt;}
.y141{bottom:428.429733pt;}
.y1e7{bottom:429.239733pt;}
.y16b{bottom:432.333067pt;}
.y1b4{bottom:434.583733pt;}
.y19{bottom:438.851333pt;}
.yc2{bottom:440.396400pt;}
.yf4{bottom:440.400400pt;}
.y11b{bottom:440.404400pt;}
.ya6{bottom:440.408400pt;}
.y43{bottom:440.428400pt;}
.y72{bottom:440.452400pt;}
.y193{bottom:440.578400pt;}
.y140{bottom:445.763067pt;}
.y1b3{bottom:451.917067pt;}
.y192{bottom:457.911733pt;}
.y18{bottom:458.855333pt;}
.y16a{bottom:460.247733pt;}
.yc1{bottom:460.400400pt;}
.yf3{bottom:460.404400pt;}
.y11a{bottom:460.408400pt;}
.ya5{bottom:460.412400pt;}
.y42{bottom:460.432400pt;}
.y8c{bottom:460.444400pt;}
.y13f{bottom:463.096400pt;}
.y1b2{bottom:469.250400pt;}
.y1e6{bottom:475.245067pt;}
.y169{bottom:477.581067pt;}
.y17{bottom:478.859333pt;}
.yc0{bottom:480.404400pt;}
.yf2{bottom:480.408400pt;}
.y119{bottom:480.412400pt;}
.ya4{bottom:480.416400pt;}
.y55{bottom:480.436400pt;}
.y71{bottom:480.448400pt;}
.y1fd{bottom:480.589067pt;}
.y191{bottom:486.583733pt;}
.y13e{bottom:491.768400pt;}
.y168{bottom:494.914400pt;}
.y1b1{bottom:497.922400pt;}
.y16{bottom:498.863333pt;}
.ybf{bottom:500.408400pt;}
.yf1{bottom:500.412400pt;}
.y118{bottom:500.416400pt;}
.ya3{bottom:500.420400pt;}
.y41{bottom:500.428400pt;}
.y70{bottom:500.452400pt;}
.y1ce{bottom:503.917067pt;}
.y190{bottom:515.255733pt;}
.y15{bottom:518.867333pt;}
.ybe{bottom:520.412400pt;}
.yf0{bottom:520.416400pt;}
.y117{bottom:520.420400pt;}
.ya2{bottom:520.424400pt;}
.y40{bottom:520.432400pt;}
.y13d{bottom:520.440400pt;}
.y6f{bottom:520.456400pt;}
.y1cd{bottom:521.250400pt;}
.y167{bottom:522.829067pt;}
.y1fc{bottom:526.594400pt;}
.y18f{bottom:532.589067pt;}
.y13c{bottom:537.773733pt;}
.y14{bottom:538.871333pt;}
.y166{bottom:540.162400pt;}
.yd3{bottom:540.416400pt;}
.yef{bottom:540.420400pt;}
.y116{bottom:540.424400pt;}
.y3f{bottom:540.436400pt;}
.y6e{bottom:540.460400pt;}
.y1b0{bottom:543.927733pt;}
.y1cc{bottom:549.922400pt;}
.y1fb{bottom:555.266400pt;}
.y13{bottom:558.875333pt;}
.ybd{bottom:560.408400pt;}
.ya1{bottom:560.420400pt;}
.yee{bottom:560.424400pt;}
.y3e{bottom:560.440400pt;}
.y6d{bottom:560.464400pt;}
.y18e{bottom:561.261067pt;}
.y13b{bottom:566.445733pt;}
.y1cb{bottom:567.255733pt;}
.y165{bottom:568.077067pt;}
.y1af{bottom:572.599733pt;}
.y18d{bottom:578.594400pt;}
.y12{bottom:578.879333pt;}
.ybc{bottom:580.412400pt;}
.y115{bottom:580.420400pt;}
.ya0{bottom:580.424400pt;}
.y3d{bottom:580.444400pt;}
.y6c{bottom:580.468400pt;}
.y13a{bottom:583.779067pt;}
.y164{bottom:585.410400pt;}
.y1ae{bottom:589.933067pt;}
.y18c{bottom:595.927733pt;}
.y11{bottom:598.883333pt;}
.ybb{bottom:600.416400pt;}
.yed{bottom:600.420400pt;}
.y114{bottom:600.424400pt;}
.y9f{bottom:600.428400pt;}
.y6b{bottom:600.432400pt;}
.y3c{bottom:600.448400pt;}
.y8b{bottom:600.460400pt;}
.y163{bottom:602.743733pt;}
.y1f2{bottom:607.266400pt;}
.y139{bottom:612.451067pt;}
.y18b{bottom:613.261067pt;}
.y1ad{bottom:618.605067pt;}
.y10{bottom:618.887333pt;}
.yba{bottom:620.420400pt;}
.yec{bottom:620.424400pt;}
.y113{bottom:620.428400pt;}
.y9e{bottom:620.432400pt;}
.y6a{bottom:620.436400pt;}
.y3b{bottom:620.452400pt;}
.y8a{bottom:620.464400pt;}
.y1f1{bottom:624.599733pt;}
.y138{bottom:629.784400pt;}
.y1e5{bottom:630.594400pt;}
.y162{bottom:630.658400pt;}
.y1ac{bottom:635.938400pt;}
.yf{bottom:638.891333pt;}
.yb9{bottom:640.424400pt;}
.yeb{bottom:640.428400pt;}
.y112{bottom:640.432400pt;}
.y9d{bottom:640.436400pt;}
.y69{bottom:640.440400pt;}
.y3a{bottom:640.456400pt;}
.y89{bottom:640.468400pt;}
.y18a{bottom:641.933067pt;}
.y137{bottom:647.117733pt;}
.y161{bottom:647.991733pt;}
.y1ab{bottom:653.271733pt;}
.ye{bottom:658.895333pt;}
.y189{bottom:659.266400pt;}
.yb8{bottom:660.428400pt;}
.yea{bottom:660.432400pt;}
.y111{bottom:660.436400pt;}
.y9c{bottom:660.440400pt;}
.y68{bottom:660.444400pt;}
.y54{bottom:660.448400pt;}
.y88{bottom:660.472400pt;}
.y1fa{bottom:664.610400pt;}
.y1ca{bottom:670.605067pt;}
.y136{bottom:675.789733pt;}
.y160{bottom:675.906400pt;}
.y1e4{bottom:676.599733pt;}
.yb7{bottom:680.432400pt;}
.ye9{bottom:680.436400pt;}
.y9b{bottom:680.444400pt;}
.y67{bottom:680.448400pt;}
.y39{bottom:680.452400pt;}
.y1aa{bottom:681.943733pt;}
.y188{bottom:687.938400pt;}
.y135{bottom:693.123067pt;}
.y15f{bottom:693.239733pt;}
.y1a9{bottom:699.277067pt;}
.y110{bottom:700.432400pt;}
.yb6{bottom:700.436400pt;}
.ye8{bottom:700.440400pt;}
.y38{bottom:700.456400pt;}
.y87{bottom:700.472400pt;}
.yd{bottom:700.487333pt;}
.y1c9{bottom:705.271733pt;}
.y15e{bottom:710.573067pt;}
.y1f9{bottom:710.615733pt;}
.y187{bottom:716.610400pt;}
.y10f{bottom:720.436400pt;}
.y9a{bottom:720.440400pt;}
.y66{bottom:720.444400pt;}
.y37{bottom:720.460400pt;}
.y134{bottom:721.795067pt;}
.y1e3{bottom:722.605067pt;}
.y1a8{bottom:727.949067pt;}
.y1c8{bottom:733.943733pt;}
.y15d{bottom:738.487733pt;}
.y133{bottom:739.128400pt;}
.y1e2{bottom:739.938400pt;}
.y86{bottom:740.432400pt;}
.y10e{bottom:740.440400pt;}
.y99{bottom:740.444400pt;}
.y65{bottom:740.448400pt;}
.y36{bottom:740.464400pt;}
.y186{bottom:745.282400pt;}
.y1c7{bottom:751.277067pt;}
.yc{bottom:754.503067pt;}
.y15c{bottom:755.821067pt;}
.y85{bottom:760.436400pt;}
.y10d{bottom:760.444400pt;}
.y98{bottom:760.448400pt;}
.y64{bottom:760.452400pt;}
.y35{bottom:760.468400pt;}
.y185{bottom:762.615733pt;}
.y132{bottom:767.800400pt;}
.y1e1{bottom:768.610400pt;}
.yb{bottom:769.169733pt;}
.y1a7{bottom:773.954400pt;}
.y1c6{bottom:779.949067pt;}
.y84{bottom:780.440400pt;}
.y10c{bottom:780.448400pt;}
.y97{bottom:780.452400pt;}
.y63{bottom:780.456400pt;}
.y34{bottom:780.472400pt;}
.y15b{bottom:783.735733pt;}
.y131{bottom:785.133733pt;}
.y1e0{bottom:785.943733pt;}
.ya{bottom:789.505733pt;}
.y184{bottom:791.287733pt;}
.y83{bottom:800.444400pt;}
.ye7{bottom:800.448400pt;}
.y10b{bottom:800.452400pt;}
.yd2{bottom:800.456400pt;}
.y62{bottom:800.460400pt;}
.y15a{bottom:801.069067pt;}
.y183{bottom:808.621067pt;}
.y130{bottom:813.805733pt;}
.y1df{bottom:814.615733pt;}
.y1a6{bottom:819.959733pt;}
.y82{bottom:820.448400pt;}
.ye6{bottom:820.452400pt;}
.y10a{bottom:820.456400pt;}
.yd1{bottom:820.460400pt;}
.y61{bottom:820.464400pt;}
.y33{bottom:820.472400pt;}
.y1c5{bottom:825.954400pt;}
.y159{bottom:828.983733pt;}
.y12f{bottom:831.139067pt;}
.y1de{bottom:831.949067pt;}
.y182{bottom:837.293067pt;}
.y81{bottom:840.452400pt;}
.ye5{bottom:840.456400pt;}
.y9{bottom:842.857333pt;}
.y158{bottom:846.317067pt;}
.y181{bottom:854.626400pt;}
.y109{bottom:860.452400pt;}
.y80{bottom:860.456400pt;}
.y60{bottom:860.460400pt;}
.y12e{bottom:860.472400pt;}
.y1dd{bottom:860.621067pt;}
.y8{bottom:862.860000pt;}
.y157{bottom:863.650400pt;}
.y1a5{bottom:865.965067pt;}
.y1c4{bottom:871.959733pt;}
.y1dc{bottom:877.954400pt;}
.y53{bottom:880.448400pt;}
.y108{bottom:880.456400pt;}
.y32{bottom:880.460400pt;}
.y5f{bottom:880.464400pt;}
.y180{bottom:883.298400pt;}
.y156{bottom:891.565067pt;}
.y7{bottom:894.198667pt;}
.y52{bottom:900.452400pt;}
.y107{bottom:900.460400pt;}
.y96{bottom:900.464400pt;}
.y5e{bottom:900.468400pt;}
.y17f{bottom:900.631733pt;}
.y1db{bottom:906.626400pt;}
.y155{bottom:908.898400pt;}
.y1a4{bottom:911.970400pt;}
.y17e{bottom:917.965067pt;}
.y31{bottom:920.456400pt;}
.y106{bottom:920.464400pt;}
.y95{bottom:920.468400pt;}
.y5d{bottom:920.472400pt;}
.y6{bottom:923.532000pt;}
.y1a3{bottom:929.303733pt;}
.y1da{bottom:935.298400pt;}
.y154{bottom:936.813067pt;}
.y30{bottom:940.460400pt;}
.y105{bottom:940.468400pt;}
.y17d{bottom:946.637067pt;}
.y5{bottom:952.865333pt;}
.y1a2{bottom:957.975733pt;}
.y2f{bottom:960.464400pt;}
.y104{bottom:960.472400pt;}
.y5c{bottom:960.476400pt;}
.y1c3{bottom:963.970400pt;}
.y153{bottom:964.727733pt;}
.y17c{bottom:975.309067pt;}
.y2e{bottom:980.468400pt;}
.y1d9{bottom:981.303733pt;}
.y152{bottom:982.061067pt;}
.y17b{bottom:992.642400pt;}
.y2d{bottom:1000.472400pt;}
.y151{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y28{bottom:1051.455733pt;}
.y2c{bottom:1064.023733pt;}
.y27{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h7{height:32.554667pt;}
.hc{height:32.725333pt;}
.ha{height:34.080000pt;}
.h9{height:35.040000pt;}
.h8{height:36.624000pt;}
.hb{height:37.728000pt;}
.h6{height:38.933333pt;}
.h14{height:41.856000pt;}
.h13{height:41.941333pt;}
.he{height:47.088000pt;}
.h12{height:47.104000pt;}
.h11{height:47.184000pt;}
.h10{height:47.248000pt;}
.h5{height:49.226667pt;}
.hd{height:52.448000pt;}
.hf{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;}
.x8{left:126.047200pt;}
.xb{left:132.287200pt;}
.x3{left:520.369600pt;}
.x4{left:556.526933pt;}
.x2{left:602.278933pt;}
.xa{left:644.065733pt;}
.x9{left:646.585467pt;}
.x6{left:648.567333pt;}
.x7{left:650.320800pt;}
}




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