
    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_df9ebc486cae7ba2bab27370.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.141000;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_fb8448b57465612994b78425.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_4e159729b8a0b346aab97107.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.993000;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_c436b030fe1239e09ac322b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029000;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_69006220c7ee7552a0ec4b16.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141000;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_3d91857568fa460eb6d6b51c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.868000;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_22b044ec95ae1186e474db0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;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_a8dd723d42463ff30dbf109c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988000;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_47a20915a39cfa9e3f77f01d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.862000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.934000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.624000px;}
.ls1{letter-spacing:0.720000px;}
.lse{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.864000px;}
.ls14{letter-spacing:0.912000px;}
.ls1d{letter-spacing:0.960000px;}
.ls11{letter-spacing:1.152000px;}
.ls0{letter-spacing:1.200000px;}
.ls13{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.344000px;}
.ls17{letter-spacing:1.392000px;}
.lsf{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.464000px;}
.ls1b{letter-spacing:1.488000px;}
.ls8{letter-spacing:1.573800px;}
.lsb{letter-spacing:1.574400px;}
.ls1c{letter-spacing:1.680000px;}
.ls18{letter-spacing:1.728000px;}
.ls19{letter-spacing:2.112000px;}
.lsc{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.430000px;}
.ls9{letter-spacing:2.592000px;}
.ls7{letter-spacing:2.700000px;}
.lsd{letter-spacing:2.705400px;}
.ls6{letter-spacing:3.000000px;}
.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;}
}
.ws31{word-spacing:-16.200000px;}
.wsba{word-spacing:-15.498000px;}
.ws80{word-spacing:-14.850000px;}
.ws108{word-spacing:-14.580000px;}
.ws14{word-spacing:-13.800000px;}
.ws13{word-spacing:-9.660000px;}
.wsa6{word-spacing:-3.888000px;}
.wsc1{word-spacing:-3.672000px;}
.wsd9{word-spacing:-3.402000px;}
.ws9a{word-spacing:-3.312000px;}
.wsbc{word-spacing:-3.264000px;}
.ws3a{word-spacing:-3.240000px;}
.wsfd{word-spacing:-3.186000px;}
.ws104{word-spacing:-3.132000px;}
.wse1{word-spacing:-2.976000px;}
.ws39{word-spacing:-2.970000px;}
.ws5e{word-spacing:-2.916000px;}
.ws9b{word-spacing:-2.880000px;}
.ws67{word-spacing:-2.862000px;}
.wsad{word-spacing:-2.832000px;}
.wsa7{word-spacing:-2.808000px;}
.wsea{word-spacing:-2.784000px;}
.wsa9{word-spacing:-2.754000px;}
.wsd6{word-spacing:-2.736000px;}
.ws57{word-spacing:-2.700000px;}
.ws27{word-spacing:-2.604000px;}
.ws3e{word-spacing:-2.592000px;}
.wsfa{word-spacing:-2.538000px;}
.wsc4{word-spacing:-2.496000px;}
.ws59{word-spacing:-2.484000px;}
.wse4{word-spacing:-2.448000px;}
.ws5a{word-spacing:-2.430000px;}
.wsb8{word-spacing:-2.376000px;}
.ws37{word-spacing:-2.322000px;}
.ws51{word-spacing:-2.268000px;}
.wseb{word-spacing:-2.160000px;}
.wsee{word-spacing:-2.052000px;}
.wsce{word-spacing:-1.998000px;}
.wsc3{word-spacing:-1.944000px;}
.ws7a{word-spacing:-1.890000px;}
.wsfb{word-spacing:-1.782000px;}
.ws9e{word-spacing:-1.728000px;}
.wsfc{word-spacing:-1.674000px;}
.wsde{word-spacing:-1.620000px;}
.ws1b{word-spacing:-1.596000px;}
.ws5b{word-spacing:-1.566000px;}
.ws4b{word-spacing:-1.512000px;}
.wse3{word-spacing:-1.488000px;}
.ws20{word-spacing:-1.470000px;}
.ws4d{word-spacing:-1.458000px;}
.wsa4{word-spacing:-1.440000px;}
.wse{word-spacing:-1.428000px;}
.ws53{word-spacing:-1.404000px;}
.wsb2{word-spacing:-1.392000px;}
.ws1f{word-spacing:-1.386000px;}
.ws24{word-spacing:-1.344000px;}
.ws2f{word-spacing:-1.302000px;}
.ws3c{word-spacing:-1.296000px;}
.ws58{word-spacing:-1.242000px;}
.ws1{word-spacing:-1.200000px;}
.wsb7{word-spacing:-1.188000px;}
.wsf0{word-spacing:-1.134000px;}
.ws4c{word-spacing:-1.080000px;}
.wsa5{word-spacing:-1.056000px;}
.wsf3{word-spacing:-1.026000px;}
.wsc5{word-spacing:-1.008000px;}
.ws5f{word-spacing:-0.972000px;}
.wscd{word-spacing:-0.960000px;}
.ws3b{word-spacing:-0.918000px;}
.ws75{word-spacing:-0.810000px;}
.ws26{word-spacing:-0.798000px;}
.wsb4{word-spacing:-0.768000px;}
.wsaf{word-spacing:-0.720000px;}
.ws49{word-spacing:-0.702000px;}
.ws15{word-spacing:-0.672000px;}
.ws61{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.600000px;}
.ws41{word-spacing:-0.594000px;}
.wsc9{word-spacing:-0.576000px;}
.ws92{word-spacing:-0.540000px;}
.wsb1{word-spacing:-0.528000px;}
.wse9{word-spacing:-0.486000px;}
.ws109{word-spacing:-0.480000px;}
.ws2{word-spacing:-0.420000px;}
.wsc7{word-spacing:-0.384000px;}
.ws89{word-spacing:-0.378000px;}
.wsdf{word-spacing:-0.324000px;}
.ws10{word-spacing:-0.294000px;}
.ws1a{word-spacing:-0.252000px;}
.ws4a{word-spacing:-0.162000px;}
.ws11{word-spacing:-0.126000px;}
.ws3d{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.084000px;}
.ws22{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.wsd8{word-spacing:0.048000px;}
.ws7c{word-spacing:0.108000px;}
.wsca{word-spacing:0.192000px;}
.ws2e{word-spacing:0.210000px;}
.ws16{word-spacing:0.252000px;}
.ws63{word-spacing:0.270000px;}
.ws7{word-spacing:0.336000px;}
.wsda{word-spacing:0.378000px;}
.ws79{word-spacing:0.432000px;}
.ws4f{word-spacing:0.540000px;}
.wsac{word-spacing:0.576000px;}
.ws96{word-spacing:0.594000px;}
.wsb5{word-spacing:0.624000px;}
.ws3f{word-spacing:0.648000px;}
.ws40{word-spacing:0.702000px;}
.wse5{word-spacing:0.720000px;}
.ws25{word-spacing:0.798000px;}
.ws2d{word-spacing:0.840000px;}
.ws6b{word-spacing:0.864000px;}
.wsb9{word-spacing:0.918000px;}
.ws42{word-spacing:0.972000px;}
.wsae{word-spacing:1.008000px;}
.ws68{word-spacing:1.026000px;}
.ws34{word-spacing:1.080000px;}
.ws19{word-spacing:1.092000px;}
.wsc0{word-spacing:1.134000px;}
.ws88{word-spacing:1.188000px;}
.wsd1{word-spacing:1.200000px;}
.ws7b{word-spacing:1.242000px;}
.wsbd{word-spacing:1.248000px;}
.ws95{word-spacing:1.296000px;}
.wsa{word-spacing:1.344000px;}
.wsed{word-spacing:1.350000px;}
.wsd4{word-spacing:1.392000px;}
.ws97{word-spacing:1.458000px;}
.ws76{word-spacing:1.566000px;}
.wsd2{word-spacing:1.584000px;}
.ws23{word-spacing:1.596000px;}
.ws85{word-spacing:1.620000px;}
.wsbe{word-spacing:1.632000px;}
.ws7e{word-spacing:1.674000px;}
.wsd{word-spacing:1.680000px;}
.ws6d{word-spacing:1.728000px;}
.ws18{word-spacing:1.806000px;}
.wsaa{word-spacing:1.836000px;}
.wse0{word-spacing:1.890000px;}
.ws66{word-spacing:1.944000px;}
.ws90{word-spacing:1.998000px;}
.ws5c{word-spacing:2.052000px;}
.wscc{word-spacing:2.064000px;}
.ws4e{word-spacing:2.106000px;}
.ws3{word-spacing:2.142000px;}
.ws46{word-spacing:2.160000px;}
.ws28{word-spacing:2.184000px;}
.ws52{word-spacing:2.214000px;}
.ws6c{word-spacing:2.268000px;}
.ws5d{word-spacing:2.322000px;}
.ws4{word-spacing:2.394000px;}
.ws8b{word-spacing:2.430000px;}
.ws98{word-spacing:2.484000px;}
.wse6{word-spacing:2.496000px;}
.ws71{word-spacing:2.592000px;}
.ws44{word-spacing:2.646000px;}
.wsc8{word-spacing:2.688000px;}
.ws5{word-spacing:2.730000px;}
.wsf4{word-spacing:2.754000px;}
.ws60{word-spacing:2.808000px;}
.wsdd{word-spacing:2.832000px;}
.ws9{word-spacing:2.856000px;}
.wsef{word-spacing:2.862000px;}
.ws8{word-spacing:2.898000px;}
.ws93{word-spacing:2.916000px;}
.ws30{word-spacing:3.024000px;}
.wsdb{word-spacing:3.120000px;}
.ws105{word-spacing:3.132000px;}
.wsd3{word-spacing:3.168000px;}
.ws107{word-spacing:3.186000px;}
.ws78{word-spacing:3.240000px;}
.ws43{word-spacing:3.294000px;}
.wse2{word-spacing:3.312000px;}
.wsa8{word-spacing:3.348000px;}
.wsab{word-spacing:3.360000px;}
.ws45{word-spacing:3.456000px;}
.ws2c{word-spacing:3.486000px;}
.ws77{word-spacing:3.510000px;}
.wsbb{word-spacing:3.564000px;}
.ws17{word-spacing:3.612000px;}
.ws35{word-spacing:3.618000px;}
.ws6a{word-spacing:3.672000px;}
.wsb3{word-spacing:3.696000px;}
.ws8f{word-spacing:3.726000px;}
.ws2b{word-spacing:3.738000px;}
.ws33{word-spacing:3.780000px;}
.wsd5{word-spacing:3.792000px;}
.ws70{word-spacing:3.834000px;}
.ws50{word-spacing:3.942000px;}
.wsb0{word-spacing:3.984000px;}
.ws62{word-spacing:3.996000px;}
.ws84{word-spacing:4.050000px;}
.ws102{word-spacing:4.158000px;}
.wsf1{word-spacing:4.266000px;}
.wscb{word-spacing:4.272000px;}
.ws81{word-spacing:4.320000px;}
.ws8a{word-spacing:4.374000px;}
.ws8c{word-spacing:4.428000px;}
.ws1c{word-spacing:4.452000px;}
.ws55{word-spacing:4.482000px;}
.ws101{word-spacing:4.590000px;}
.ws8e{word-spacing:4.698000px;}
.ws86{word-spacing:4.752000px;}
.wsc6{word-spacing:4.848000px;}
.ws38{word-spacing:4.860000px;}
.wscf{word-spacing:4.968000px;}
.ws99{word-spacing:5.130000px;}
.wsdc{word-spacing:5.136000px;}
.ws47{word-spacing:5.184000px;}
.ws6e{word-spacing:5.238000px;}
.wsb{word-spacing:5.292000px;}
.wsf{word-spacing:5.334000px;}
.wsb6{word-spacing:5.400000px;}
.wsa0{word-spacing:5.454000px;}
.ws6{word-spacing:5.502000px;}
.wse7{word-spacing:5.562000px;}
.wsc{word-spacing:5.586000px;}
.wsd0{word-spacing:5.664000px;}
.wsd7{word-spacing:5.712000px;}
.wsa3{word-spacing:5.724000px;}
.wsa1{word-spacing:5.778000px;}
.wsf2{word-spacing:5.832000px;}
.ws94{word-spacing:5.940000px;}
.wsfe{word-spacing:6.048000px;}
.ws1d{word-spacing:6.090000px;}
.wsc2{word-spacing:6.102000px;}
.wse8{word-spacing:6.156000px;}
.wsa2{word-spacing:6.210000px;}
.ws91{word-spacing:6.318000px;}
.wsf5{word-spacing:6.534000px;}
.ws36{word-spacing:6.804000px;}
.ws73{word-spacing:7.074000px;}
.ws74{word-spacing:7.236000px;}
.ws7d{word-spacing:7.452000px;}
.ws82{word-spacing:7.560000px;}
.ws32{word-spacing:7.668000px;}
.ws65{word-spacing:7.722000px;}
.ws9f{word-spacing:7.776000px;}
.ws72{word-spacing:7.830000px;}
.ws103{word-spacing:8.100000px;}
.wsbf{word-spacing:8.154000px;}
.wsf6{word-spacing:8.208000px;}
.ws21{word-spacing:8.358000px;}
.ws48{word-spacing:8.370000px;}
.ws56{word-spacing:8.424000px;}
.ws9c{word-spacing:8.640000px;}
.ws6f{word-spacing:8.694000px;}
.ws8d{word-spacing:8.748000px;}
.ws64{word-spacing:8.802000px;}
.ws87{word-spacing:8.964000px;}
.wsec{word-spacing:9.126000px;}
.ws29{word-spacing:9.366000px;}
.ws54{word-spacing:9.504000px;}
.ws83{word-spacing:9.828000px;}
.wsf8{word-spacing:10.206000px;}
.wsf9{word-spacing:10.746000px;}
.ws69{word-spacing:12.150000px;}
.ws7f{word-spacing:12.528000px;}
.ws106{word-spacing:12.744000px;}
.ws100{word-spacing:14.418000px;}
.ws2a{word-spacing:14.448000px;}
.wsff{word-spacing:15.174000px;}
.ws9d{word-spacing:15.390000px;}
.wsf7{word-spacing:32.616000px;}
._3{margin-left:-25.920000px;}
._a{margin-left:-19.980000px;}
._b{margin-left:-14.400000px;}
._11{margin-left:-11.943879px;}
._10{margin-left:-8.046000px;}
._9{margin-left:-6.630000px;}
._6{margin-left:-4.746000px;}
._2{margin-left:-2.760000px;}
._0{margin-left:-1.680000px;}
._4{width:1.260000px;}
._e{width:2.325600px;}
._7{width:3.754800px;}
._8{width:5.569200px;}
._f{width:6.940800px;}
._c{width:10.314000px;}
._5{width:11.625600px;}
._d{width:17.253000px;}
._1{width:151.802400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(92,92,92);}
.fc0{color:rgb(120,120,120);}
.fs6{font-size:31.482000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:47.973450px;}
.y1f{bottom:48.107550px;}
.y4e{bottom:48.444300px;}
.y50{bottom:49.273500px;}
.y1{bottom:49.989000px;}
.y1e{bottom:119.127000px;}
.ya9{bottom:120.932100px;}
.y75{bottom:122.114700px;}
.y181{bottom:123.432000px;}
.yc4{bottom:125.652900px;}
.y9a{bottom:125.712300px;}
.ye4{bottom:131.688750px;}
.y143{bottom:135.432450px;}
.ya8{bottom:140.426100px;}
.y74{bottom:141.608700px;}
.y164{bottom:141.800700px;}
.y1d{bottom:142.626000px;}
.y180{bottom:142.926000px;}
.y99{bottom:145.206300px;}
.y142{bottom:150.432450px;}
.ye3{bottom:151.182750px;}
.yc3{bottom:153.468750px;}
.y1a0{bottom:158.912700px;}
.ya7{bottom:159.920100px;}
.y73{bottom:161.102700px;}
.y163{bottom:161.294700px;}
.y98{bottom:164.700300px;}
.y141{bottom:165.432450px;}
.y17f{bottom:166.672500px;}
.ye2{bottom:170.676750px;}
.y107{bottom:171.184350px;}
.yc2{bottom:172.962750px;}
.y124{bottom:173.428500px;}
.y19f{bottom:175.412700px;}
.y1c1{bottom:176.664750px;}
.ya6{bottom:179.414100px;}
.y140{bottom:180.432450px;}
.y72{bottom:180.596700px;}
.y162{bottom:180.788700px;}
.y97{bottom:184.194300px;}
.y17e{bottom:186.166500px;}
.y106{bottom:186.184350px;}
.y123{bottom:188.428500px;}
.ye1{bottom:190.170750px;}
.y19e{bottom:191.912700px;}
.yc1{bottom:192.456750px;}
.y1c0{bottom:193.164750px;}
.y13f{bottom:195.432450px;}
.y4d{bottom:196.799400px;}
.ya5{bottom:198.908100px;}
.y71{bottom:200.270700px;}
.y161{bottom:200.282700px;}
.y105{bottom:201.184350px;}
.y122{bottom:203.428500px;}
.ya1{bottom:203.688300px;}
.y96{bottom:203.694300px;}
.y19d{bottom:208.412700px;}
.ye0{bottom:209.664750px;}
.y17d{bottom:209.913000px;}
.y13e{bottom:210.432450px;}
.yc0{bottom:211.950750px;}
.y104{bottom:216.184350px;}
.ya4{bottom:218.402100px;}
.y121{bottom:218.428500px;}
.y70{bottom:219.764700px;}
.y160{bottom:219.776700px;}
.y4c{bottom:220.802400px;}
.y1c{bottom:222.909000px;}
.y95{bottom:223.200300px;}
.y19c{bottom:224.912700px;}
.y13d{bottom:225.432450px;}
.y17c{bottom:229.407000px;}
.y103{bottom:231.184350px;}
.ybf{bottom:231.444750px;}
.y4b{bottom:232.803900px;}
.y120{bottom:233.428500px;}
.ya3{bottom:237.896100px;}
.y1b{bottom:237.913500px;}
.y6f{bottom:239.258700px;}
.y15f{bottom:239.270700px;}
.ya0{bottom:240.196200px;}
.y94{bottom:242.694300px;}
.y4a{bottom:244.805400px;}
.y102{bottom:246.184350px;}
.y11f{bottom:248.428500px;}
.ybe{bottom:250.938750px;}
.y1a{bottom:252.918000px;}
.y17b{bottom:253.153500px;}
.y1bf{bottom:253.164750px;}
.y13c{bottom:253.260300px;}
.y49{bottom:256.806900px;}
.ya2{bottom:257.390100px;}
.y6e{bottom:258.752700px;}
.y15e{bottom:258.764700px;}
.ydf{bottom:258.928500px;}
.y101{bottom:261.184350px;}
.y93{bottom:262.200300px;}
.y11e{bottom:263.428500px;}
.y19b{bottom:265.672500px;}
.y19{bottom:267.922500px;}
.y48{bottom:268.808400px;}
.y1be{bottom:269.664750px;}
.ybd{bottom:270.432750px;}
.y17a{bottom:272.647500px;}
.y13b{bottom:272.754300px;}
.yde{bottom:273.928500px;}
.y100{bottom:276.184350px;}
.y9f{bottom:276.884100px;}
.y6d{bottom:278.246700px;}
.y15d{bottom:278.258700px;}
.y11d{bottom:278.428500px;}
.y47{bottom:280.809900px;}
.y92{bottom:281.694300px;}
.y19a{bottom:282.172500px;}
.y18{bottom:282.927000px;}
.y1bd{bottom:286.164750px;}
.ydd{bottom:288.928500px;}
.ybc{bottom:289.926750px;}
.yff{bottom:291.184350px;}
.y13a{bottom:292.248300px;}
.y46{bottom:292.811400px;}
.y11c{bottom:293.428500px;}
.y9e{bottom:296.378100px;}
.y179{bottom:296.394000px;}
.y6c{bottom:297.740700px;}
.y15c{bottom:297.752700px;}
.y17{bottom:297.931500px;}
.y199{bottom:298.672500px;}
.y91{bottom:301.188300px;}
.y1bc{bottom:302.664750px;}
.ydc{bottom:303.928500px;}
.y45{bottom:304.812900px;}
.yfe{bottom:306.184350px;}
.ybb{bottom:309.420750px;}
.y139{bottom:311.742300px;}
.y16{bottom:312.936000px;}
.y198{bottom:315.172500px;}
.y9d{bottom:315.872100px;}
.y178{bottom:315.888000px;}
.y44{bottom:316.814400px;}
.y6b{bottom:317.234700px;}
.y15b{bottom:317.246700px;}
.ydb{bottom:318.928500px;}
.y1bb{bottom:319.164750px;}
.yfd{bottom:321.184350px;}
.y11b{bottom:321.208350px;}
.y15{bottom:327.940500px;}
.y43{bottom:328.815900px;}
.yba{bottom:328.914750px;}
.y138{bottom:331.236300px;}
.y197{bottom:331.672500px;}
.yda{bottom:333.928500px;}
.y9c{bottom:335.366100px;}
.y1ba{bottom:335.664750px;}
.yfc{bottom:336.184350px;}
.y6a{bottom:336.728700px;}
.y15a{bottom:336.740700px;}
.y90{bottom:337.696200px;}
.y177{bottom:339.634500px;}
.y11a{bottom:340.702350px;}
.y42{bottom:340.817400px;}
.y14{bottom:342.945000px;}
.y196{bottom:348.172500px;}
.yb9{bottom:348.408750px;}
.yd9{bottom:348.928500px;}
.y137{bottom:350.730300px;}
.yfb{bottom:351.184350px;}
.y41{bottom:352.818900px;}
.y9b{bottom:354.860100px;}
.y69{bottom:356.222700px;}
.y159{bottom:356.234700px;}
.y13{bottom:357.949500px;}
.y176{bottom:359.128500px;}
.y119{bottom:360.196350px;}
.yd8{bottom:363.928500px;}
.y195{bottom:364.796100px;}
.yfa{bottom:366.184350px;}
.y136{bottom:370.224300px;}
.y12{bottom:372.954000px;}
.y8f{bottom:374.354100px;}
.y68{bottom:375.716700px;}
.y158{bottom:375.728700px;}
.y1b9{bottom:376.424550px;}
.y40{bottom:377.574900px;}
.y175{bottom:378.622500px;}
.yd7{bottom:378.928500px;}
.y118{bottom:379.690350px;}
.yf9{bottom:381.184350px;}
.yb8{bottom:384.916650px;}
.y11{bottom:387.958500px;}
.y135{bottom:389.718300px;}
.y3f{bottom:392.574900px;}
.y1b8{bottom:392.924550px;}
.y8e{bottom:393.848100px;}
.yd6{bottom:393.928500px;}
.y67{bottom:395.210700px;}
.y157{bottom:395.222700px;}
.yf8{bottom:396.184350px;}
.y117{bottom:399.184350px;}
.yb7{bottom:399.916650px;}
.y174{bottom:402.369000px;}
.y10{bottom:402.963000px;}
.yd5{bottom:408.928500px;}
.y134{bottom:409.212300px;}
.y1b7{bottom:409.424550px;}
.y8d{bottom:413.342100px;}
.y66{bottom:414.704700px;}
.y156{bottom:414.716700px;}
.yb6{bottom:414.916650px;}
.yf{bottom:417.967500px;}
.y194{bottom:418.310100px;}
.yd4{bottom:423.928500px;}
.yf7{bottom:423.994200px;}
.y1b6{bottom:425.924550px;}
.y173{bottom:426.115500px;}
.y133{bottom:428.706300px;}
.y3e{bottom:432.309750px;}
.y8c{bottom:432.836100px;}
.ye{bottom:432.972000px;}
.y65{bottom:434.198700px;}
.y155{bottom:434.210700px;}
.y193{bottom:437.804100px;}
.yd3{bottom:438.928500px;}
.y1b5{bottom:442.424550px;}
.yb5{bottom:442.728300px;}
.yf6{bottom:443.488200px;}
.y172{bottom:445.609500px;}
.yd{bottom:447.976500px;}
.y132{bottom:448.200300px;}
.y116{bottom:448.448100px;}
.y8b{bottom:452.330100px;}
.y64{bottom:453.692700px;}
.y154{bottom:453.704700px;}
.y3d{bottom:456.312750px;}
.y1b4{bottom:458.924550px;}
.y192{bottom:461.550600px;}
.yb4{bottom:462.222300px;}
.yc{bottom:462.981000px;}
.yf5{bottom:462.982200px;}
.y115{bottom:463.448100px;}
.yd2{bottom:466.738350px;}
.y131{bottom:467.694300px;}
.y3c{bottom:468.314250px;}
.y171{bottom:469.356000px;}
.y8a{bottom:471.824100px;}
.y63{bottom:473.186700px;}
.y153{bottom:473.198700px;}
.y1b3{bottom:475.424550px;}
.yb{bottom:477.985500px;}
.y114{bottom:478.448100px;}
.y3b{bottom:480.315750px;}
.y191{bottom:481.044600px;}
.yb3{bottom:481.716300px;}
.yf4{bottom:482.476200px;}
.yd1{bottom:486.232350px;}
.y130{bottom:487.188300px;}
.y170{bottom:488.850000px;}
.y89{bottom:491.318100px;}
.y3a{bottom:492.317250px;}
.y62{bottom:492.680700px;}
.y152{bottom:492.692700px;}
.y113{bottom:493.448100px;}
.yb2{bottom:501.210300px;}
.ya{bottom:501.484500px;}
.yf3{bottom:501.970200px;}
.y39{bottom:504.318750px;}
.y190{bottom:504.791100px;}
.yd0{bottom:505.726350px;}
.y112{bottom:508.448100px;}
.y88{bottom:510.812100px;}
.y61{bottom:512.174700px;}
.y151{bottom:512.186700px;}
.y16f{bottom:512.596500px;}
.y1b2{bottom:516.184350px;}
.y38{bottom:516.320250px;}
.yb1{bottom:520.704300px;}
.yf2{bottom:521.464200px;}
.y111{bottom:523.448100px;}
.y18f{bottom:524.285100px;}
.ycf{bottom:525.220350px;}
.y12f{bottom:527.948100px;}
.y37{bottom:528.321750px;}
.y87{bottom:530.306100px;}
.y60{bottom:531.668700px;}
.y150{bottom:531.680700px;}
.y16e{bottom:532.090500px;}
.y1b1{bottom:532.684350px;}
.y110{bottom:538.448100px;}
.yb0{bottom:540.198300px;}
.y36{bottom:540.323250px;}
.yf1{bottom:540.958200px;}
.y12e{bottom:542.948100px;}
.yce{bottom:544.714350px;}
.y18e{bottom:548.031600px;}
.y1b0{bottom:549.184350px;}
.y86{bottom:549.800100px;}
.y5f{bottom:551.162700px;}
.y14f{bottom:551.174700px;}
.y16d{bottom:551.584500px;}
.y35{bottom:552.324750px;}
.y10f{bottom:553.448100px;}
.y12d{bottom:557.948100px;}
.yf0{bottom:560.452200px;}
.y9{bottom:560.516100px;}
.ycd{bottom:564.208350px;}
.y34{bottom:564.326250px;}
.y1af{bottom:565.684350px;}
.y18d{bottom:567.525600px;}
.y10e{bottom:568.448100px;}
.y85{bottom:569.294100px;}
.y5e{bottom:570.656700px;}
.y14e{bottom:570.668700px;}
.y16c{bottom:571.078500px;}
.y12c{bottom:572.948100px;}
.y33{bottom:576.327750px;}
.yaf{bottom:576.702300px;}
.yef{bottom:579.946200px;}
.y1ae{bottom:582.184350px;}
.y10d{bottom:583.448100px;}
.ycc{bottom:583.702350px;}
.y8{bottom:584.510100px;}
.y12b{bottom:587.948100px;}
.y32{bottom:588.329250px;}
.y84{bottom:588.788100px;}
.y5d{bottom:590.150700px;}
.y14d{bottom:590.162700px;}
.y18c{bottom:591.272100px;}
.y10c{bottom:598.448100px;}
.y1ad{bottom:598.684350px;}
.yee{bottom:599.440200px;}
.y31{bottom:600.330750px;}
.y12a{bottom:602.948100px;}
.ycb{bottom:603.196350px;}
.y16b{bottom:607.586400px;}
.y83{bottom:608.282100px;}
.y7{bottom:608.504100px;}
.y5c{bottom:609.644700px;}
.y14c{bottom:609.656700px;}
.y18b{bottom:610.766100px;}
.yae{bottom:613.206300px;}
.y10b{bottom:613.448100px;}
.y129{bottom:617.948100px;}
.yca{bottom:622.690350px;}
.y30{bottom:625.086600px;}
.y82{bottom:627.776100px;}
.y10a{bottom:628.448100px;}
.y5b{bottom:629.138700px;}
.y14b{bottom:629.150700px;}
.yad{bottom:632.700300px;}
.y128{bottom:632.948100px;}
.y18a{bottom:634.512600px;}
.yed{bottom:635.948100px;}
.y1ac{bottom:639.444150px;}
.y2f{bottom:640.086600px;}
.yc9{bottom:642.184350px;}
.y109{bottom:643.448100px;}
.y16a{bottom:646.236150px;}
.y81{bottom:647.270100px;}
.y127{bottom:647.948100px;}
.y5a{bottom:648.632700px;}
.y14a{bottom:648.644700px;}
.yec{bottom:650.948100px;}
.yac{bottom:652.194300px;}
.y6{bottom:653.764050px;}
.y189{bottom:654.006600px;}
.y1ab{bottom:655.944150px;}
.y108{bottom:658.448100px;}
.y126{bottom:662.948100px;}
.y169{bottom:663.312150px;}
.yeb{bottom:665.948100px;}
.y80{bottom:666.764100px;}
.y59{bottom:668.126700px;}
.y149{bottom:668.138700px;}
.yab{bottom:671.688300px;}
.y1aa{bottom:672.444150px;}
.y188{bottom:673.500600px;}
.y125{bottom:677.948100px;}
.y2e{bottom:679.823100px;}
.y168{bottom:680.388150px;}
.yea{bottom:680.948100px;}
.y7f{bottom:686.258100px;}
.y5{bottom:686.764050px;}
.y58{bottom:687.620700px;}
.y148{bottom:687.632700px;}
.y1a9{bottom:688.944150px;}
.yc8{bottom:691.448100px;}
.y187{bottom:692.994600px;}
.ye9{bottom:695.948100px;}
.y167{bottom:697.464150px;}
.y2d{bottom:703.826100px;}
.y1a8{bottom:705.444150px;}
.y7e{bottom:705.752100px;}
.yc7{bottom:706.448100px;}
.y57{bottom:707.114700px;}
.y147{bottom:707.126700px;}
.yaa{bottom:708.196200px;}
.ye8{bottom:710.948100px;}
.y166{bottom:714.540150px;}
.y2c{bottom:715.827600px;}
.y186{bottom:716.741100px;}
.y4{bottom:719.764050px;}
.yc6{bottom:721.448100px;}
.y1a7{bottom:721.944150px;}
.y7d{bottom:725.246100px;}
.ye7{bottom:725.948100px;}
.y56{bottom:726.608700px;}
.y146{bottom:726.620700px;}
.y2b{bottom:727.829100px;}
.y165{bottom:729.444150px;}
.y185{bottom:736.235100px;}
.yc5{bottom:736.448100px;}
.y2a{bottom:739.830600px;}
.ye6{bottom:740.948100px;}
.y7c{bottom:744.740100px;}
.y55{bottom:746.102700px;}
.y145{bottom:746.114700px;}
.y29{bottom:751.832100px;}
.y3{bottom:752.764050px;}
.y184{bottom:755.729100px;}
.ye5{bottom:755.948100px;}
.y1a6{bottom:762.704100px;}
.y28{bottom:763.833600px;}
.y7b{bottom:764.234100px;}
.y54{bottom:765.596700px;}
.y144{bottom:765.608700px;}
.y27{bottom:775.835100px;}
.y1a5{bottom:779.204100px;}
.y183{bottom:779.475600px;}
.y7a{bottom:783.728100px;}
.y53{bottom:785.102700px;}
.y26{bottom:787.836600px;}
.y1a4{bottom:795.704100px;}
.y182{bottom:798.969600px;}
.y25{bottom:799.838100px;}
.y79{bottom:803.222100px;}
.y52{bottom:804.596700px;}
.y24{bottom:811.839600px;}
.y1a3{bottom:812.204100px;}
.y78{bottom:822.716100px;}
.y23{bottom:823.841100px;}
.y51{bottom:824.090700px;}
.y1a2{bottom:828.704100px;}
.y22{bottom:835.842600px;}
.y77{bottom:842.210100px;}
.y1a1{bottom:845.204100px;}
.y21{bottom:860.598600px;}
.y76{bottom:861.704100px;}
.y4f{bottom:928.272300px;}
.y2{bottom:929.087700px;}
.h5{height:31.248000px;}
.h7{height:32.760000px;}
.hc{height:35.712000px;}
.h8{height:37.260000px;}
.hf{height:37.440000px;}
.h6{height:37.464000px;}
.hb{height:40.122000px;}
.he{height:40.176000px;}
.hd{height:42.120000px;}
.h2{height:42.816000px;}
.h9{height:44.640000px;}
.ha{height:48.168000px;}
.h4{height:64.224000px;}
.h3{height:89.280000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.xa{left:61.304250px;}
.xf{left:79.148100px;}
.xb{left:80.205750px;}
.xd{left:85.039350px;}
.xc{left:107.019750px;}
.x11{left:139.039350px;}
.x16{left:213.985500px;}
.x29{left:215.666850px;}
.x1b{left:220.166550px;}
.x2f{left:221.497950px;}
.x1f{left:224.066400px;}
.x28{left:226.394850px;}
.x2d{left:230.185950px;}
.x33{left:235.476300px;}
.x9{left:238.110150px;}
.x20{left:240.326400px;}
.x1a{left:245.006550px;}
.x13{left:247.575000px;}
.x1e{left:249.494400px;}
.x2a{left:252.206850px;}
.x7{left:254.378850px;}
.x15{left:256.028850px;}
.x2c{left:265.249950px;}
.x2e{left:266.893950px;}
.x21{left:270.458400px;}
.x6{left:278.732850px;}
.x23{left:316.778250px;}
.x5{left:320.410500px;}
.x24{left:324.758250px;}
.x3{left:342.640500px;}
.x26{left:356.510250px;}
.x2{left:396.397500px;}
.x17{left:398.642250px;}
.x14{left:414.735000px;}
.x25{left:418.574250px;}
.x19{left:428.199450px;}
.x36{left:432.012300px;}
.xe{left:435.632100px;}
.x1{left:436.889700px;}
.x1c{left:447.446550px;}
.x18{left:449.678250px;}
.x37{left:454.572300px;}
.x8{left:461.216850px;}
.x4{left:468.250500px;}
.x30{left:470.101950px;}
.x22{left:475.022400px;}
.x27{left:483.830250px;}
.x34{left:490.020300px;}
.x31{left:501.814050px;}
.x2b{left:503.974500px;}
.x1d{left:517.069050px;}
.x32{left:525.204300px;}
.x35{left:528.240300px;}
.x12{left:535.102350px;}
.x10{left:636.732300px;}
@media print{
.v1{vertical-align:-2.544000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.941333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.554667pt;}
.ls1{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.810667pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls11{letter-spacing:1.024000pt;}
.ls0{letter-spacing:1.066667pt;}
.ls13{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.194667pt;}
.ls17{letter-spacing:1.237333pt;}
.lsf{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.301333pt;}
.ls1b{letter-spacing:1.322667pt;}
.ls8{letter-spacing:1.398933pt;}
.lsb{letter-spacing:1.399467pt;}
.ls1c{letter-spacing:1.493333pt;}
.ls18{letter-spacing:1.536000pt;}
.ls19{letter-spacing:1.877333pt;}
.lsc{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.160000pt;}
.ls9{letter-spacing:2.304000pt;}
.ls7{letter-spacing:2.400000pt;}
.lsd{letter-spacing:2.404800pt;}
.ls6{letter-spacing:2.666667pt;}
.ws31{word-spacing:-14.400000pt;}
.wsba{word-spacing:-13.776000pt;}
.ws80{word-spacing:-13.200000pt;}
.ws108{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.266667pt;}
.ws13{word-spacing:-8.586667pt;}
.wsa6{word-spacing:-3.456000pt;}
.wsc1{word-spacing:-3.264000pt;}
.wsd9{word-spacing:-3.024000pt;}
.ws9a{word-spacing:-2.944000pt;}
.wsbc{word-spacing:-2.901333pt;}
.ws3a{word-spacing:-2.880000pt;}
.wsfd{word-spacing:-2.832000pt;}
.ws104{word-spacing:-2.784000pt;}
.wse1{word-spacing:-2.645333pt;}
.ws39{word-spacing:-2.640000pt;}
.ws5e{word-spacing:-2.592000pt;}
.ws9b{word-spacing:-2.560000pt;}
.ws67{word-spacing:-2.544000pt;}
.wsad{word-spacing:-2.517333pt;}
.wsa7{word-spacing:-2.496000pt;}
.wsea{word-spacing:-2.474667pt;}
.wsa9{word-spacing:-2.448000pt;}
.wsd6{word-spacing:-2.432000pt;}
.ws57{word-spacing:-2.400000pt;}
.ws27{word-spacing:-2.314667pt;}
.ws3e{word-spacing:-2.304000pt;}
.wsfa{word-spacing:-2.256000pt;}
.wsc4{word-spacing:-2.218667pt;}
.ws59{word-spacing:-2.208000pt;}
.wse4{word-spacing:-2.176000pt;}
.ws5a{word-spacing:-2.160000pt;}
.wsb8{word-spacing:-2.112000pt;}
.ws37{word-spacing:-2.064000pt;}
.ws51{word-spacing:-2.016000pt;}
.wseb{word-spacing:-1.920000pt;}
.wsee{word-spacing:-1.824000pt;}
.wsce{word-spacing:-1.776000pt;}
.wsc3{word-spacing:-1.728000pt;}
.ws7a{word-spacing:-1.680000pt;}
.wsfb{word-spacing:-1.584000pt;}
.ws9e{word-spacing:-1.536000pt;}
.wsfc{word-spacing:-1.488000pt;}
.wsde{word-spacing:-1.440000pt;}
.ws1b{word-spacing:-1.418667pt;}
.ws5b{word-spacing:-1.392000pt;}
.ws4b{word-spacing:-1.344000pt;}
.wse3{word-spacing:-1.322667pt;}
.ws20{word-spacing:-1.306667pt;}
.ws4d{word-spacing:-1.296000pt;}
.wsa4{word-spacing:-1.280000pt;}
.wse{word-spacing:-1.269333pt;}
.ws53{word-spacing:-1.248000pt;}
.wsb2{word-spacing:-1.237333pt;}
.ws1f{word-spacing:-1.232000pt;}
.ws24{word-spacing:-1.194667pt;}
.ws2f{word-spacing:-1.157333pt;}
.ws3c{word-spacing:-1.152000pt;}
.ws58{word-spacing:-1.104000pt;}
.ws1{word-spacing:-1.066667pt;}
.wsb7{word-spacing:-1.056000pt;}
.wsf0{word-spacing:-1.008000pt;}
.ws4c{word-spacing:-0.960000pt;}
.wsa5{word-spacing:-0.938667pt;}
.wsf3{word-spacing:-0.912000pt;}
.wsc5{word-spacing:-0.896000pt;}
.ws5f{word-spacing:-0.864000pt;}
.wscd{word-spacing:-0.853333pt;}
.ws3b{word-spacing:-0.816000pt;}
.ws75{word-spacing:-0.720000pt;}
.ws26{word-spacing:-0.709333pt;}
.wsb4{word-spacing:-0.682667pt;}
.wsaf{word-spacing:-0.640000pt;}
.ws49{word-spacing:-0.624000pt;}
.ws15{word-spacing:-0.597333pt;}
.ws61{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.533333pt;}
.ws41{word-spacing:-0.528000pt;}
.wsc9{word-spacing:-0.512000pt;}
.ws92{word-spacing:-0.480000pt;}
.wsb1{word-spacing:-0.469333pt;}
.wse9{word-spacing:-0.432000pt;}
.ws109{word-spacing:-0.426667pt;}
.ws2{word-spacing:-0.373333pt;}
.wsc7{word-spacing:-0.341333pt;}
.ws89{word-spacing:-0.336000pt;}
.wsdf{word-spacing:-0.288000pt;}
.ws10{word-spacing:-0.261333pt;}
.ws1a{word-spacing:-0.224000pt;}
.ws4a{word-spacing:-0.144000pt;}
.ws11{word-spacing:-0.112000pt;}
.ws3d{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.074667pt;}
.ws22{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.wsd8{word-spacing:0.042667pt;}
.ws7c{word-spacing:0.096000pt;}
.wsca{word-spacing:0.170667pt;}
.ws2e{word-spacing:0.186667pt;}
.ws16{word-spacing:0.224000pt;}
.ws63{word-spacing:0.240000pt;}
.ws7{word-spacing:0.298667pt;}
.wsda{word-spacing:0.336000pt;}
.ws79{word-spacing:0.384000pt;}
.ws4f{word-spacing:0.480000pt;}
.wsac{word-spacing:0.512000pt;}
.ws96{word-spacing:0.528000pt;}
.wsb5{word-spacing:0.554667pt;}
.ws3f{word-spacing:0.576000pt;}
.ws40{word-spacing:0.624000pt;}
.wse5{word-spacing:0.640000pt;}
.ws25{word-spacing:0.709333pt;}
.ws2d{word-spacing:0.746667pt;}
.ws6b{word-spacing:0.768000pt;}
.wsb9{word-spacing:0.816000pt;}
.ws42{word-spacing:0.864000pt;}
.wsae{word-spacing:0.896000pt;}
.ws68{word-spacing:0.912000pt;}
.ws34{word-spacing:0.960000pt;}
.ws19{word-spacing:0.970667pt;}
.wsc0{word-spacing:1.008000pt;}
.ws88{word-spacing:1.056000pt;}
.wsd1{word-spacing:1.066667pt;}
.ws7b{word-spacing:1.104000pt;}
.wsbd{word-spacing:1.109333pt;}
.ws95{word-spacing:1.152000pt;}
.wsa{word-spacing:1.194667pt;}
.wsed{word-spacing:1.200000pt;}
.wsd4{word-spacing:1.237333pt;}
.ws97{word-spacing:1.296000pt;}
.ws76{word-spacing:1.392000pt;}
.wsd2{word-spacing:1.408000pt;}
.ws23{word-spacing:1.418667pt;}
.ws85{word-spacing:1.440000pt;}
.wsbe{word-spacing:1.450667pt;}
.ws7e{word-spacing:1.488000pt;}
.wsd{word-spacing:1.493333pt;}
.ws6d{word-spacing:1.536000pt;}
.ws18{word-spacing:1.605333pt;}
.wsaa{word-spacing:1.632000pt;}
.wse0{word-spacing:1.680000pt;}
.ws66{word-spacing:1.728000pt;}
.ws90{word-spacing:1.776000pt;}
.ws5c{word-spacing:1.824000pt;}
.wscc{word-spacing:1.834667pt;}
.ws4e{word-spacing:1.872000pt;}
.ws3{word-spacing:1.904000pt;}
.ws46{word-spacing:1.920000pt;}
.ws28{word-spacing:1.941333pt;}
.ws52{word-spacing:1.968000pt;}
.ws6c{word-spacing:2.016000pt;}
.ws5d{word-spacing:2.064000pt;}
.ws4{word-spacing:2.128000pt;}
.ws8b{word-spacing:2.160000pt;}
.ws98{word-spacing:2.208000pt;}
.wse6{word-spacing:2.218667pt;}
.ws71{word-spacing:2.304000pt;}
.ws44{word-spacing:2.352000pt;}
.wsc8{word-spacing:2.389333pt;}
.ws5{word-spacing:2.426667pt;}
.wsf4{word-spacing:2.448000pt;}
.ws60{word-spacing:2.496000pt;}
.wsdd{word-spacing:2.517333pt;}
.ws9{word-spacing:2.538667pt;}
.wsef{word-spacing:2.544000pt;}
.ws8{word-spacing:2.576000pt;}
.ws93{word-spacing:2.592000pt;}
.ws30{word-spacing:2.688000pt;}
.wsdb{word-spacing:2.773333pt;}
.ws105{word-spacing:2.784000pt;}
.wsd3{word-spacing:2.816000pt;}
.ws107{word-spacing:2.832000pt;}
.ws78{word-spacing:2.880000pt;}
.ws43{word-spacing:2.928000pt;}
.wse2{word-spacing:2.944000pt;}
.wsa8{word-spacing:2.976000pt;}
.wsab{word-spacing:2.986667pt;}
.ws45{word-spacing:3.072000pt;}
.ws2c{word-spacing:3.098667pt;}
.ws77{word-spacing:3.120000pt;}
.wsbb{word-spacing:3.168000pt;}
.ws17{word-spacing:3.210667pt;}
.ws35{word-spacing:3.216000pt;}
.ws6a{word-spacing:3.264000pt;}
.wsb3{word-spacing:3.285333pt;}
.ws8f{word-spacing:3.312000pt;}
.ws2b{word-spacing:3.322667pt;}
.ws33{word-spacing:3.360000pt;}
.wsd5{word-spacing:3.370667pt;}
.ws70{word-spacing:3.408000pt;}
.ws50{word-spacing:3.504000pt;}
.wsb0{word-spacing:3.541333pt;}
.ws62{word-spacing:3.552000pt;}
.ws84{word-spacing:3.600000pt;}
.ws102{word-spacing:3.696000pt;}
.wsf1{word-spacing:3.792000pt;}
.wscb{word-spacing:3.797333pt;}
.ws81{word-spacing:3.840000pt;}
.ws8a{word-spacing:3.888000pt;}
.ws8c{word-spacing:3.936000pt;}
.ws1c{word-spacing:3.957333pt;}
.ws55{word-spacing:3.984000pt;}
.ws101{word-spacing:4.080000pt;}
.ws8e{word-spacing:4.176000pt;}
.ws86{word-spacing:4.224000pt;}
.wsc6{word-spacing:4.309333pt;}
.ws38{word-spacing:4.320000pt;}
.wscf{word-spacing:4.416000pt;}
.ws99{word-spacing:4.560000pt;}
.wsdc{word-spacing:4.565333pt;}
.ws47{word-spacing:4.608000pt;}
.ws6e{word-spacing:4.656000pt;}
.wsb{word-spacing:4.704000pt;}
.wsf{word-spacing:4.741333pt;}
.wsb6{word-spacing:4.800000pt;}
.wsa0{word-spacing:4.848000pt;}
.ws6{word-spacing:4.890667pt;}
.wse7{word-spacing:4.944000pt;}
.wsc{word-spacing:4.965333pt;}
.wsd0{word-spacing:5.034667pt;}
.wsd7{word-spacing:5.077333pt;}
.wsa3{word-spacing:5.088000pt;}
.wsa1{word-spacing:5.136000pt;}
.wsf2{word-spacing:5.184000pt;}
.ws94{word-spacing:5.280000pt;}
.wsfe{word-spacing:5.376000pt;}
.ws1d{word-spacing:5.413333pt;}
.wsc2{word-spacing:5.424000pt;}
.wse8{word-spacing:5.472000pt;}
.wsa2{word-spacing:5.520000pt;}
.ws91{word-spacing:5.616000pt;}
.wsf5{word-spacing:5.808000pt;}
.ws36{word-spacing:6.048000pt;}
.ws73{word-spacing:6.288000pt;}
.ws74{word-spacing:6.432000pt;}
.ws7d{word-spacing:6.624000pt;}
.ws82{word-spacing:6.720000pt;}
.ws32{word-spacing:6.816000pt;}
.ws65{word-spacing:6.864000pt;}
.ws9f{word-spacing:6.912000pt;}
.ws72{word-spacing:6.960000pt;}
.ws103{word-spacing:7.200000pt;}
.wsbf{word-spacing:7.248000pt;}
.wsf6{word-spacing:7.296000pt;}
.ws21{word-spacing:7.429333pt;}
.ws48{word-spacing:7.440000pt;}
.ws56{word-spacing:7.488000pt;}
.ws9c{word-spacing:7.680000pt;}
.ws6f{word-spacing:7.728000pt;}
.ws8d{word-spacing:7.776000pt;}
.ws64{word-spacing:7.824000pt;}
.ws87{word-spacing:7.968000pt;}
.wsec{word-spacing:8.112000pt;}
.ws29{word-spacing:8.325333pt;}
.ws54{word-spacing:8.448000pt;}
.ws83{word-spacing:8.736000pt;}
.wsf8{word-spacing:9.072000pt;}
.wsf9{word-spacing:9.552000pt;}
.ws69{word-spacing:10.800000pt;}
.ws7f{word-spacing:11.136000pt;}
.ws106{word-spacing:11.328000pt;}
.ws100{word-spacing:12.816000pt;}
.ws2a{word-spacing:12.842667pt;}
.wsff{word-spacing:13.488000pt;}
.ws9d{word-spacing:13.680000pt;}
.wsf7{word-spacing:28.992000pt;}
._3{margin-left:-23.040000pt;}
._a{margin-left:-17.760000pt;}
._b{margin-left:-12.800000pt;}
._11{margin-left:-10.616781pt;}
._10{margin-left:-7.152000pt;}
._9{margin-left:-5.893333pt;}
._6{margin-left:-4.218667pt;}
._2{margin-left:-2.453333pt;}
._0{margin-left:-1.493333pt;}
._4{width:1.120000pt;}
._e{width:2.067200pt;}
._7{width:3.337600pt;}
._8{width:4.950400pt;}
._f{width:6.169600pt;}
._c{width:9.168000pt;}
._5{width:10.333867pt;}
._d{width:15.336000pt;}
._1{width:134.935467pt;}
.fs6{font-size:27.984000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:42.643067pt;}
.y1f{bottom:42.762267pt;}
.y4e{bottom:43.061600pt;}
.y50{bottom:43.798667pt;}
.y1{bottom:44.434667pt;}
.y1e{bottom:105.890667pt;}
.ya9{bottom:107.495200pt;}
.y75{bottom:108.546400pt;}
.y181{bottom:109.717333pt;}
.yc4{bottom:111.691467pt;}
.y9a{bottom:111.744267pt;}
.ye4{bottom:117.056667pt;}
.y143{bottom:120.384400pt;}
.ya8{bottom:124.823200pt;}
.y74{bottom:125.874400pt;}
.y164{bottom:126.045067pt;}
.y1d{bottom:126.778667pt;}
.y180{bottom:127.045333pt;}
.y99{bottom:129.072267pt;}
.y142{bottom:133.717733pt;}
.ye3{bottom:134.384667pt;}
.yc3{bottom:136.416667pt;}
.y1a0{bottom:141.255733pt;}
.ya7{bottom:142.151200pt;}
.y73{bottom:143.202400pt;}
.y163{bottom:143.373067pt;}
.y98{bottom:146.400267pt;}
.y141{bottom:147.051067pt;}
.y17f{bottom:148.153333pt;}
.ye2{bottom:151.712667pt;}
.y107{bottom:152.163867pt;}
.yc2{bottom:153.744667pt;}
.y124{bottom:154.158667pt;}
.y19f{bottom:155.922400pt;}
.y1c1{bottom:157.035333pt;}
.ya6{bottom:159.479200pt;}
.y140{bottom:160.384400pt;}
.y72{bottom:160.530400pt;}
.y162{bottom:160.701067pt;}
.y97{bottom:163.728267pt;}
.y17e{bottom:165.481333pt;}
.y106{bottom:165.497200pt;}
.y123{bottom:167.492000pt;}
.ye1{bottom:169.040667pt;}
.y19e{bottom:170.589067pt;}
.yc1{bottom:171.072667pt;}
.y1c0{bottom:171.702000pt;}
.y13f{bottom:173.717733pt;}
.y4d{bottom:174.932800pt;}
.ya5{bottom:176.807200pt;}
.y71{bottom:178.018400pt;}
.y161{bottom:178.029067pt;}
.y105{bottom:178.830533pt;}
.y122{bottom:180.825333pt;}
.ya1{bottom:181.056267pt;}
.y96{bottom:181.061600pt;}
.y19d{bottom:185.255733pt;}
.ye0{bottom:186.368667pt;}
.y17d{bottom:186.589333pt;}
.y13e{bottom:187.051067pt;}
.yc0{bottom:188.400667pt;}
.y104{bottom:192.163867pt;}
.ya4{bottom:194.135200pt;}
.y121{bottom:194.158667pt;}
.y70{bottom:195.346400pt;}
.y160{bottom:195.357067pt;}
.y4c{bottom:196.268800pt;}
.y1c{bottom:198.141333pt;}
.y95{bottom:198.400267pt;}
.y19c{bottom:199.922400pt;}
.y13d{bottom:200.384400pt;}
.y17c{bottom:203.917333pt;}
.y103{bottom:205.497200pt;}
.ybf{bottom:205.728667pt;}
.y4b{bottom:206.936800pt;}
.y120{bottom:207.492000pt;}
.ya3{bottom:211.463200pt;}
.y1b{bottom:211.478667pt;}
.y6f{bottom:212.674400pt;}
.y15f{bottom:212.685067pt;}
.ya0{bottom:213.507733pt;}
.y94{bottom:215.728267pt;}
.y4a{bottom:217.604800pt;}
.y102{bottom:218.830533pt;}
.y11f{bottom:220.825333pt;}
.ybe{bottom:223.056667pt;}
.y1a{bottom:224.816000pt;}
.y17b{bottom:225.025333pt;}
.y1bf{bottom:225.035333pt;}
.y13c{bottom:225.120267pt;}
.y49{bottom:228.272800pt;}
.ya2{bottom:228.791200pt;}
.y6e{bottom:230.002400pt;}
.y15e{bottom:230.013067pt;}
.ydf{bottom:230.158667pt;}
.y101{bottom:232.163867pt;}
.y93{bottom:233.066933pt;}
.y11e{bottom:234.158667pt;}
.y19b{bottom:236.153333pt;}
.y19{bottom:238.153333pt;}
.y48{bottom:238.940800pt;}
.y1be{bottom:239.702000pt;}
.ybd{bottom:240.384667pt;}
.y17a{bottom:242.353333pt;}
.y13b{bottom:242.448267pt;}
.yde{bottom:243.492000pt;}
.y100{bottom:245.497200pt;}
.y9f{bottom:246.119200pt;}
.y6d{bottom:247.330400pt;}
.y15d{bottom:247.341067pt;}
.y11d{bottom:247.492000pt;}
.y47{bottom:249.608800pt;}
.y92{bottom:250.394933pt;}
.y19a{bottom:250.820000pt;}
.y18{bottom:251.490667pt;}
.y1bd{bottom:254.368667pt;}
.ydd{bottom:256.825333pt;}
.ybc{bottom:257.712667pt;}
.yff{bottom:258.830533pt;}
.y13a{bottom:259.776267pt;}
.y46{bottom:260.276800pt;}
.y11c{bottom:260.825333pt;}
.y9e{bottom:263.447200pt;}
.y179{bottom:263.461333pt;}
.y6c{bottom:264.658400pt;}
.y15c{bottom:264.669067pt;}
.y17{bottom:264.828000pt;}
.y199{bottom:265.486667pt;}
.y91{bottom:267.722933pt;}
.y1bc{bottom:269.035333pt;}
.ydc{bottom:270.158667pt;}
.y45{bottom:270.944800pt;}
.yfe{bottom:272.163867pt;}
.ybb{bottom:275.040667pt;}
.y139{bottom:277.104267pt;}
.y16{bottom:278.165333pt;}
.y198{bottom:280.153333pt;}
.y9d{bottom:280.775200pt;}
.y178{bottom:280.789333pt;}
.y44{bottom:281.612800pt;}
.y6b{bottom:281.986400pt;}
.y15b{bottom:281.997067pt;}
.ydb{bottom:283.492000pt;}
.y1bb{bottom:283.702000pt;}
.yfd{bottom:285.497200pt;}
.y11b{bottom:285.518533pt;}
.y15{bottom:291.502667pt;}
.y43{bottom:292.280800pt;}
.yba{bottom:292.368667pt;}
.y138{bottom:294.432267pt;}
.y197{bottom:294.820000pt;}
.yda{bottom:296.825333pt;}
.y9c{bottom:298.103200pt;}
.y1ba{bottom:298.368667pt;}
.yfc{bottom:298.830533pt;}
.y6a{bottom:299.314400pt;}
.y15a{bottom:299.325067pt;}
.y90{bottom:300.174400pt;}
.y177{bottom:301.897333pt;}
.y11a{bottom:302.846533pt;}
.y42{bottom:302.948800pt;}
.y14{bottom:304.840000pt;}
.y196{bottom:309.486667pt;}
.yb9{bottom:309.696667pt;}
.yd9{bottom:310.158667pt;}
.y137{bottom:311.760267pt;}
.yfb{bottom:312.163867pt;}
.y41{bottom:313.616800pt;}
.y9b{bottom:315.431200pt;}
.y69{bottom:316.642400pt;}
.y159{bottom:316.653067pt;}
.y13{bottom:318.177333pt;}
.y176{bottom:319.225333pt;}
.y119{bottom:320.174533pt;}
.yd8{bottom:323.492000pt;}
.y195{bottom:324.263200pt;}
.yfa{bottom:325.497200pt;}
.y136{bottom:329.088267pt;}
.y12{bottom:331.514667pt;}
.y8f{bottom:332.759200pt;}
.y68{bottom:333.970400pt;}
.y158{bottom:333.981067pt;}
.y1b9{bottom:334.599600pt;}
.y40{bottom:335.622133pt;}
.y175{bottom:336.553333pt;}
.yd7{bottom:336.825333pt;}
.y118{bottom:337.502533pt;}
.yf9{bottom:338.830533pt;}
.yb8{bottom:342.148133pt;}
.y11{bottom:344.852000pt;}
.y135{bottom:346.416267pt;}
.y3f{bottom:348.955467pt;}
.y1b8{bottom:349.266267pt;}
.y8e{bottom:350.087200pt;}
.yd6{bottom:350.158667pt;}
.y67{bottom:351.298400pt;}
.y157{bottom:351.309067pt;}
.yf8{bottom:352.163867pt;}
.y117{bottom:354.830533pt;}
.yb7{bottom:355.481467pt;}
.y174{bottom:357.661333pt;}
.y10{bottom:358.189333pt;}
.yd5{bottom:363.492000pt;}
.y134{bottom:363.744267pt;}
.y1b7{bottom:363.932933pt;}
.y8d{bottom:367.415200pt;}
.y66{bottom:368.626400pt;}
.y156{bottom:368.637067pt;}
.yb6{bottom:368.814800pt;}
.yf{bottom:371.526667pt;}
.y194{bottom:371.831200pt;}
.yd4{bottom:376.825333pt;}
.yf7{bottom:376.883733pt;}
.y1b6{bottom:378.599600pt;}
.y173{bottom:378.769333pt;}
.y133{bottom:381.072267pt;}
.y3e{bottom:384.275333pt;}
.y8c{bottom:384.743200pt;}
.ye{bottom:384.864000pt;}
.y65{bottom:385.954400pt;}
.y155{bottom:385.965067pt;}
.y193{bottom:389.159200pt;}
.yd3{bottom:390.158667pt;}
.y1b5{bottom:393.266267pt;}
.yb5{bottom:393.536267pt;}
.yf6{bottom:394.211733pt;}
.y172{bottom:396.097333pt;}
.yd{bottom:398.201333pt;}
.y132{bottom:398.400267pt;}
.y116{bottom:398.620533pt;}
.y8b{bottom:402.071200pt;}
.y64{bottom:403.282400pt;}
.y154{bottom:403.293067pt;}
.y3d{bottom:405.611333pt;}
.y1b4{bottom:407.932933pt;}
.y192{bottom:410.267200pt;}
.yb4{bottom:410.864267pt;}
.yc{bottom:411.538667pt;}
.yf5{bottom:411.539733pt;}
.y115{bottom:411.953867pt;}
.yd2{bottom:414.878533pt;}
.y131{bottom:415.728267pt;}
.y3c{bottom:416.279333pt;}
.y171{bottom:417.205333pt;}
.y8a{bottom:419.399200pt;}
.y63{bottom:420.610400pt;}
.y153{bottom:420.621067pt;}
.y1b3{bottom:422.599600pt;}
.yb{bottom:424.876000pt;}
.y114{bottom:425.287200pt;}
.y3b{bottom:426.947333pt;}
.y191{bottom:427.595200pt;}
.yb3{bottom:428.192267pt;}
.yf4{bottom:428.867733pt;}
.yd1{bottom:432.206533pt;}
.y130{bottom:433.056267pt;}
.y170{bottom:434.533333pt;}
.y89{bottom:436.727200pt;}
.y3a{bottom:437.615333pt;}
.y62{bottom:437.938400pt;}
.y152{bottom:437.949067pt;}
.y113{bottom:438.620533pt;}
.yb2{bottom:445.520267pt;}
.ya{bottom:445.764000pt;}
.yf3{bottom:446.195733pt;}
.y39{bottom:448.283333pt;}
.y190{bottom:448.703200pt;}
.yd0{bottom:449.534533pt;}
.y112{bottom:451.953867pt;}
.y88{bottom:454.055200pt;}
.y61{bottom:455.266400pt;}
.y151{bottom:455.277067pt;}
.y16f{bottom:455.641333pt;}
.y1b2{bottom:458.830533pt;}
.y38{bottom:458.951333pt;}
.yb1{bottom:462.848267pt;}
.yf2{bottom:463.523733pt;}
.y111{bottom:465.287200pt;}
.y18f{bottom:466.031200pt;}
.ycf{bottom:466.862533pt;}
.y12f{bottom:469.287200pt;}
.y37{bottom:469.619333pt;}
.y87{bottom:471.383200pt;}
.y60{bottom:472.594400pt;}
.y150{bottom:472.605067pt;}
.y16e{bottom:472.969333pt;}
.y1b1{bottom:473.497200pt;}
.y110{bottom:478.620533pt;}
.yb0{bottom:480.176267pt;}
.y36{bottom:480.287333pt;}
.yf1{bottom:480.851733pt;}
.y12e{bottom:482.620533pt;}
.yce{bottom:484.190533pt;}
.y18e{bottom:487.139200pt;}
.y1b0{bottom:488.163867pt;}
.y86{bottom:488.711200pt;}
.y5f{bottom:489.922400pt;}
.y14f{bottom:489.933067pt;}
.y16d{bottom:490.297333pt;}
.y35{bottom:490.955333pt;}
.y10f{bottom:491.953867pt;}
.y12d{bottom:495.953867pt;}
.yf0{bottom:498.179733pt;}
.y9{bottom:498.236533pt;}
.ycd{bottom:501.518533pt;}
.y34{bottom:501.623333pt;}
.y1af{bottom:502.830533pt;}
.y18d{bottom:504.467200pt;}
.y10e{bottom:505.287200pt;}
.y85{bottom:506.039200pt;}
.y5e{bottom:507.250400pt;}
.y14e{bottom:507.261067pt;}
.y16c{bottom:507.625333pt;}
.y12c{bottom:509.287200pt;}
.y33{bottom:512.291333pt;}
.yaf{bottom:512.624267pt;}
.yef{bottom:515.507733pt;}
.y1ae{bottom:517.497200pt;}
.y10d{bottom:518.620533pt;}
.ycc{bottom:518.846533pt;}
.y8{bottom:519.564533pt;}
.y12b{bottom:522.620533pt;}
.y32{bottom:522.959333pt;}
.y84{bottom:523.367200pt;}
.y5d{bottom:524.578400pt;}
.y14d{bottom:524.589067pt;}
.y18c{bottom:525.575200pt;}
.y10c{bottom:531.953867pt;}
.y1ad{bottom:532.163867pt;}
.yee{bottom:532.835733pt;}
.y31{bottom:533.627333pt;}
.y12a{bottom:535.953867pt;}
.ycb{bottom:536.174533pt;}
.y16b{bottom:540.076800pt;}
.y83{bottom:540.695200pt;}
.y7{bottom:540.892533pt;}
.y5c{bottom:541.906400pt;}
.y14c{bottom:541.917067pt;}
.y18b{bottom:542.903200pt;}
.yae{bottom:545.072267pt;}
.y10b{bottom:545.287200pt;}
.y129{bottom:549.287200pt;}
.yca{bottom:553.502533pt;}
.y30{bottom:555.632533pt;}
.y82{bottom:558.023200pt;}
.y10a{bottom:558.620533pt;}
.y5b{bottom:559.234400pt;}
.y14b{bottom:559.245067pt;}
.yad{bottom:562.400267pt;}
.y128{bottom:562.620533pt;}
.y18a{bottom:564.011200pt;}
.yed{bottom:565.287200pt;}
.y1ac{bottom:568.394800pt;}
.y2f{bottom:568.965867pt;}
.yc9{bottom:570.830533pt;}
.y109{bottom:571.953867pt;}
.y16a{bottom:574.432133pt;}
.y81{bottom:575.351200pt;}
.y127{bottom:575.953867pt;}
.y5a{bottom:576.562400pt;}
.y14a{bottom:576.573067pt;}
.yec{bottom:578.620533pt;}
.yac{bottom:579.728267pt;}
.y6{bottom:581.123600pt;}
.y189{bottom:581.339200pt;}
.y1ab{bottom:583.061467pt;}
.y108{bottom:585.287200pt;}
.y126{bottom:589.287200pt;}
.y169{bottom:589.610800pt;}
.yeb{bottom:591.953867pt;}
.y80{bottom:592.679200pt;}
.y59{bottom:593.890400pt;}
.y149{bottom:593.901067pt;}
.yab{bottom:597.056267pt;}
.y1aa{bottom:597.728133pt;}
.y188{bottom:598.667200pt;}
.y125{bottom:602.620533pt;}
.y2e{bottom:604.287200pt;}
.y168{bottom:604.789467pt;}
.yea{bottom:605.287200pt;}
.y7f{bottom:610.007200pt;}
.y5{bottom:610.456933pt;}
.y58{bottom:611.218400pt;}
.y148{bottom:611.229067pt;}
.y1a9{bottom:612.394800pt;}
.yc8{bottom:614.620533pt;}
.y187{bottom:615.995200pt;}
.ye9{bottom:618.620533pt;}
.y167{bottom:619.968133pt;}
.y2d{bottom:625.623200pt;}
.y1a8{bottom:627.061467pt;}
.y7e{bottom:627.335200pt;}
.yc7{bottom:627.953867pt;}
.y57{bottom:628.546400pt;}
.y147{bottom:628.557067pt;}
.yaa{bottom:629.507733pt;}
.ye8{bottom:631.953867pt;}
.y166{bottom:635.146800pt;}
.y2c{bottom:636.291200pt;}
.y186{bottom:637.103200pt;}
.y4{bottom:639.790267pt;}
.yc6{bottom:641.287200pt;}
.y1a7{bottom:641.728133pt;}
.y7d{bottom:644.663200pt;}
.ye7{bottom:645.287200pt;}
.y56{bottom:645.874400pt;}
.y146{bottom:645.885067pt;}
.y2b{bottom:646.959200pt;}
.y165{bottom:648.394800pt;}
.y185{bottom:654.431200pt;}
.yc5{bottom:654.620533pt;}
.y2a{bottom:657.627200pt;}
.ye6{bottom:658.620533pt;}
.y7c{bottom:661.991200pt;}
.y55{bottom:663.202400pt;}
.y145{bottom:663.213067pt;}
.y29{bottom:668.295200pt;}
.y3{bottom:669.123600pt;}
.y184{bottom:671.759200pt;}
.ye5{bottom:671.953867pt;}
.y1a6{bottom:677.959200pt;}
.y28{bottom:678.963200pt;}
.y7b{bottom:679.319200pt;}
.y54{bottom:680.530400pt;}
.y144{bottom:680.541067pt;}
.y27{bottom:689.631200pt;}
.y1a5{bottom:692.625867pt;}
.y183{bottom:692.867200pt;}
.y7a{bottom:696.647200pt;}
.y53{bottom:697.869067pt;}
.y26{bottom:700.299200pt;}
.y1a4{bottom:707.292533pt;}
.y182{bottom:710.195200pt;}
.y25{bottom:710.967200pt;}
.y79{bottom:713.975200pt;}
.y52{bottom:715.197067pt;}
.y24{bottom:721.635200pt;}
.y1a3{bottom:721.959200pt;}
.y78{bottom:731.303200pt;}
.y23{bottom:732.303200pt;}
.y51{bottom:732.525067pt;}
.y1a2{bottom:736.625867pt;}
.y22{bottom:742.971200pt;}
.y77{bottom:748.631200pt;}
.y1a1{bottom:751.292533pt;}
.y21{bottom:764.976533pt;}
.y76{bottom:765.959200pt;}
.y4f{bottom:825.130933pt;}
.y2{bottom:825.855733pt;}
.h5{height:27.776000pt;}
.h7{height:29.120000pt;}
.hc{height:31.744000pt;}
.h8{height:33.120000pt;}
.hf{height:33.280000pt;}
.h6{height:33.301333pt;}
.hb{height:35.664000pt;}
.he{height:35.712000pt;}
.hd{height:37.440000pt;}
.h2{height:38.058667pt;}
.h9{height:39.680000pt;}
.ha{height:42.816000pt;}
.h4{height:57.088000pt;}
.h3{height:79.360000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.xa{left:54.492667pt;}
.xf{left:70.353867pt;}
.xb{left:71.294000pt;}
.xd{left:75.590533pt;}
.xc{left:95.128667pt;}
.x11{left:123.590533pt;}
.x16{left:190.209333pt;}
.x29{left:191.703867pt;}
.x1b{left:195.703600pt;}
.x2f{left:196.887067pt;}
.x1f{left:199.170133pt;}
.x28{left:201.239867pt;}
.x2d{left:204.609733pt;}
.x33{left:209.312267pt;}
.x9{left:211.653467pt;}
.x20{left:213.623467pt;}
.x1a{left:217.783600pt;}
.x13{left:220.066667pt;}
.x1e{left:221.772800pt;}
.x2a{left:224.183867pt;}
.x7{left:226.114533pt;}
.x15{left:227.581200pt;}
.x2c{left:235.777733pt;}
.x2e{left:237.239067pt;}
.x21{left:240.407467pt;}
.x6{left:247.762533pt;}
.x23{left:281.580667pt;}
.x5{left:284.809333pt;}
.x24{left:288.674000pt;}
.x3{left:304.569333pt;}
.x26{left:316.898000pt;}
.x2{left:352.353333pt;}
.x17{left:354.348667pt;}
.x14{left:368.653333pt;}
.x25{left:372.066000pt;}
.x19{left:380.621733pt;}
.x36{left:384.010933pt;}
.xe{left:387.228533pt;}
.x1{left:388.346400pt;}
.x1c{left:397.730267pt;}
.x18{left:399.714000pt;}
.x37{left:404.064267pt;}
.x8{left:409.970533pt;}
.x4{left:416.222667pt;}
.x30{left:417.868400pt;}
.x22{left:422.242133pt;}
.x27{left:430.071333pt;}
.x34{left:435.573600pt;}
.x31{left:446.056933pt;}
.x2b{left:447.977333pt;}
.x1d{left:459.616933pt;}
.x32{left:466.848267pt;}
.x35{left:469.546933pt;}
.x12{left:475.646533pt;}
.x10{left:565.984267pt;}
}




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