
    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_3a857cf22599a0237d639f24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_6274b71d21fff790bee5b608.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_99b1fb885ca5ffd375ce162f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717773;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_aeea40ab4ca0ad03e7495614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_672d6f62b4c84c9e1b362c76.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_6639715ebd8b71fa2bb71f2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128418;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_8a929cdf2f2b0a6932a45c78.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_40555032b9a24a065a4fd9e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_2f05a70a6535e59b2670db10.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_2ff1fee0aa7b2a57d38ccbe7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-23.976000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.976000px;}
.v1{vertical-align:27.972000px;}
.ls7{letter-spacing:-1.294260px;}
.ls6{letter-spacing:-1.133352px;}
.ls4{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.007800px;}
.ls19{letter-spacing:0.209880px;}
.ls12{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.419760px;}
.ls0{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.594000px;}
.ls1b{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.720000px;}
.ls1a{letter-spacing:3.432000px;}
.lsf{letter-spacing:6.804356px;}
.ls15{letter-spacing:86.263200px;}
.ls10{letter-spacing:91.406327px;}
.ls16{letter-spacing:124.794000px;}
.ls11{letter-spacing:130.549592px;}
.ls8{letter-spacing:207.912000px;}
.lsb{letter-spacing:208.539600px;}
.lse{letter-spacing:220.542000px;}
.lsd{letter-spacing:259.182600px;}
.lsc{letter-spacing:302.155800px;}
.ls18{letter-spacing:319.891800px;}
.ls9{letter-spacing:364.500000px;}
.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:-60.000000px;}
.ws7d{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.000000px;}
.ws135{word-spacing:-17.160000px;}
.ws136{word-spacing:-17.094000px;}
.ws124{word-spacing:-16.500000px;}
.ws9e{word-spacing:-13.500000px;}
.ws9d{word-spacing:-12.960000px;}
.ws7e{word-spacing:-10.913760px;}
.ws104{word-spacing:-10.703880px;}
.ws2d{word-spacing:-10.494000px;}
.ws117{word-spacing:-10.368000px;}
.wscd{word-spacing:-10.080000px;}
.ws7f{word-spacing:-9.360648px;}
.ws5{word-spacing:-9.288000px;}
.ws1{word-spacing:-8.745000px;}
.ws32{word-spacing:-8.712000px;}
.ws80{word-spacing:-7.450740px;}
.wsaa{word-spacing:-7.056000px;}
.ws10e{word-spacing:-6.840000px;}
.wsac{word-spacing:-6.624000px;}
.ws6e{word-spacing:-6.264000px;}
.ws67{word-spacing:-5.976000px;}
.ws6b{word-spacing:-5.688000px;}
.wsfa{word-spacing:-5.328000px;}
.wsee{word-spacing:-5.256000px;}
.wsb1{word-spacing:-5.184000px;}
.wsf9{word-spacing:-5.112000px;}
.ws9a{word-spacing:-4.536000px;}
.wse4{word-spacing:-4.482000px;}
.ws99{word-spacing:-4.464000px;}
.wsf4{word-spacing:-4.320000px;}
.ws10f{word-spacing:-4.140000px;}
.wsbd{word-spacing:-4.104000px;}
.ws2a{word-spacing:-4.032000px;}
.ws52{word-spacing:-3.960000px;}
.wsa{word-spacing:-3.816000px;}
.wsfd{word-spacing:-3.744000px;}
.wsa5{word-spacing:-3.600000px;}
.ws93{word-spacing:-3.528000px;}
.ws2f{word-spacing:-3.456000px;}
.ws133{word-spacing:-3.432000px;}
.ws40{word-spacing:-3.384000px;}
.ws50{word-spacing:-3.312000px;}
.wsef{word-spacing:-3.240000px;}
.ws12b{word-spacing:-3.102000px;}
.ws11b{word-spacing:-3.096000px;}
.wsb9{word-spacing:-3.024000px;}
.ws11a{word-spacing:-2.880000px;}
.ws110{word-spacing:-2.808000px;}
.ws14{word-spacing:-2.736000px;}
.ws100{word-spacing:-2.664000px;}
.wsf2{word-spacing:-2.592000px;}
.ws128{word-spacing:-2.574000px;}
.ws11c{word-spacing:-2.520000px;}
.ws88{word-spacing:-2.448000px;}
.ws109{word-spacing:-2.376000px;}
.ws105{word-spacing:-2.232000px;}
.ws108{word-spacing:-2.160000px;}
.ws12f{word-spacing:-2.046000px;}
.ws26{word-spacing:-2.016000px;}
.ws113{word-spacing:-1.944000px;}
.wsc6{word-spacing:-1.728000px;}
.wscb{word-spacing:-1.512000px;}
.ws86{word-spacing:-1.500000px;}
.wsa2{word-spacing:-1.458000px;}
.ws2e{word-spacing:-1.440000px;}
.ws5c{word-spacing:-1.368000px;}
.ws36{word-spacing:-1.296000px;}
.ws143{word-spacing:-1.254000px;}
.ws137{word-spacing:-1.188000px;}
.ws56{word-spacing:-1.152000px;}
.wse9{word-spacing:-1.020000px;}
.ws72{word-spacing:-1.008000px;}
.ws6{word-spacing:-0.936000px;}
.ws4b{word-spacing:-0.864000px;}
.ws25{word-spacing:-0.720000px;}
.wsc1{word-spacing:-0.648000px;}
.ws60{word-spacing:-0.576000px;}
.ws3a{word-spacing:-0.504000px;}
.ws9b{word-spacing:-0.480000px;}
.ws115{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.360000px;}
.wsc0{word-spacing:-0.288000px;}
.wsd8{word-spacing:-0.270000px;}
.ws12a{word-spacing:-0.264000px;}
.ws123{word-spacing:-0.144000px;}
.ws65{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.072000px;}
.ws57{word-spacing:0.144000px;}
.wsba{word-spacing:0.216000px;}
.wsd7{word-spacing:0.270000px;}
.ws107{word-spacing:0.288000px;}
.wsf5{word-spacing:0.300000px;}
.ws64{word-spacing:0.360000px;}
.wscf{word-spacing:0.420000px;}
.wsab{word-spacing:0.432000px;}
.wsde{word-spacing:0.480000px;}
.ws9f{word-spacing:0.540000px;}
.ws116{word-spacing:0.576000px;}
.ws10{word-spacing:0.792000px;}
.ws66{word-spacing:0.864000px;}
.ws63{word-spacing:0.936000px;}
.ws74{word-spacing:1.008000px;}
.ws8a{word-spacing:1.080000px;}
.wsf6{word-spacing:1.140000px;}
.ws5a{word-spacing:1.224000px;}
.wsf3{word-spacing:1.296000px;}
.ws78{word-spacing:1.368000px;}
.ws127{word-spacing:1.386000px;}
.ws51{word-spacing:1.440000px;}
.wsf7{word-spacing:1.500000px;}
.wsca{word-spacing:1.512000px;}
.wsdc{word-spacing:1.632000px;}
.ws129{word-spacing:1.650000px;}
.ws94{word-spacing:1.656000px;}
.ws118{word-spacing:1.728000px;}
.ws96{word-spacing:1.872000px;}
.wsf{word-spacing:1.944000px;}
.wsea{word-spacing:1.980000px;}
.wseb{word-spacing:2.016000px;}
.ws79{word-spacing:2.088000px;}
.ws9c{word-spacing:2.100000px;}
.ws1d{word-spacing:2.160000px;}
.ws134{word-spacing:2.178000px;}
.wsb{word-spacing:2.232000px;}
.ws87{word-spacing:2.280000px;}
.ws33{word-spacing:2.376000px;}
.ws7c{word-spacing:2.448000px;}
.ws4e{word-spacing:2.520000px;}
.ws71{word-spacing:2.592000px;}
.ws142{word-spacing:2.640000px;}
.ws5f{word-spacing:2.664000px;}
.wsc9{word-spacing:2.700000px;}
.wscc{word-spacing:2.736000px;}
.ws35{word-spacing:2.808000px;}
.ws8{word-spacing:2.880000px;}
.wsaf{word-spacing:2.952000px;}
.ws13e{word-spacing:2.970000px;}
.ws4f{word-spacing:3.024000px;}
.ws8f{word-spacing:3.096000px;}
.ws12e{word-spacing:3.102000px;}
.wsd{word-spacing:3.168000px;}
.ws97{word-spacing:3.240000px;}
.ws28{word-spacing:3.312000px;}
.ws90{word-spacing:3.420000px;}
.ws4d{word-spacing:3.456000px;}
.ws69{word-spacing:3.528000px;}
.ws2c{word-spacing:3.600000px;}
.ws59{word-spacing:3.672000px;}
.ws68{word-spacing:3.744000px;}
.wsa9{word-spacing:3.780000px;}
.ws55{word-spacing:3.816000px;}
.ws12d{word-spacing:3.828000px;}
.ws11d{word-spacing:3.888000px;}
.ws3b{word-spacing:3.900000px;}
.ws4c{word-spacing:3.960000px;}
.wsfb{word-spacing:4.104000px;}
.wse8{word-spacing:4.176000px;}
.ws5e{word-spacing:4.248000px;}
.ws39{word-spacing:4.320000px;}
.wse7{word-spacing:4.392000px;}
.ws85{word-spacing:4.500000px;}
.wsbc{word-spacing:4.536000px;}
.ws83{word-spacing:4.608000px;}
.ws1b{word-spacing:4.680000px;}
.ws11{word-spacing:4.752000px;}
.ws8d{word-spacing:4.824000px;}
.ws130{word-spacing:4.884000px;}
.ws24{word-spacing:4.896000px;}
.ws37{word-spacing:4.968000px;}
.ws75{word-spacing:5.040000px;}
.ws61{word-spacing:5.184000px;}
.ws141{word-spacing:5.214000px;}
.wsc{word-spacing:5.256000px;}
.ws1e{word-spacing:5.328000px;}
.wsad{word-spacing:5.400000px;}
.ws58{word-spacing:5.472000px;}
.ws140{word-spacing:5.478000px;}
.ws77{word-spacing:5.544000px;}
.ws2b{word-spacing:5.688000px;}
.ws11f{word-spacing:5.832000px;}
.ws62{word-spacing:5.904000px;}
.ws119{word-spacing:5.976000px;}
.ws106{word-spacing:6.048000px;}
.wsc8{word-spacing:6.120000px;}
.wsc3{word-spacing:6.192000px;}
.ws121{word-spacing:6.480000px;}
.wsbb{word-spacing:6.624000px;}
.ws4a{word-spacing:6.696000px;}
.ws53{word-spacing:6.768000px;}
.ws89{word-spacing:6.912000px;}
.wsa3{word-spacing:6.984000px;}
.ws5d{word-spacing:7.128000px;}
.ws47{word-spacing:7.272000px;}
.ws7{word-spacing:7.344000px;}
.ws18{word-spacing:7.416000px;}
.wsed{word-spacing:7.488000px;}
.wsfc{word-spacing:7.632000px;}
.ws3c{word-spacing:7.704000px;}
.ws17{word-spacing:7.776000px;}
.wsae{word-spacing:7.848000px;}
.wsc2{word-spacing:7.920000px;}
.wsf8{word-spacing:8.064000px;}
.ws1a{word-spacing:8.280000px;}
.ws29{word-spacing:8.352000px;}
.ws84{word-spacing:8.424000px;}
.ws82{word-spacing:8.640000px;}
.ws11e{word-spacing:8.712000px;}
.ws1c{word-spacing:8.784000px;}
.wse{word-spacing:8.856000px;}
.ws5b{word-spacing:8.928000px;}
.ws73{word-spacing:9.000000px;}
.ws3d{word-spacing:9.288000px;}
.ws6d{word-spacing:9.360000px;}
.ws3e{word-spacing:9.432000px;}
.wsbf{word-spacing:9.504000px;}
.ws10a{word-spacing:9.576000px;}
.wsa4{word-spacing:9.648000px;}
.wsc5{word-spacing:9.864000px;}
.ws45{word-spacing:9.936000px;}
.ws27{word-spacing:10.224000px;}
.ws42{word-spacing:10.296000px;}
.ws91{word-spacing:10.368000px;}
.wsc7{word-spacing:10.440000px;}
.ws49{word-spacing:10.512000px;}
.ws38{word-spacing:10.656000px;}
.ws34{word-spacing:10.728000px;}
.ws126{word-spacing:10.890000px;}
.ws8e{word-spacing:11.016000px;}
.ws101{word-spacing:11.448000px;}
.ws120{word-spacing:11.520000px;}
.ws12c{word-spacing:11.550000px;}
.ws111{word-spacing:11.664000px;}
.ws23{word-spacing:11.736000px;}
.ws21{word-spacing:11.880000px;}
.ws19{word-spacing:12.024000px;}
.wsf1{word-spacing:12.096000px;}
.ws8b{word-spacing:12.168000px;}
.ws48{word-spacing:12.240000px;}
.ws98{word-spacing:12.312000px;}
.ws41{word-spacing:12.528000px;}
.ws8c{word-spacing:12.744000px;}
.ws10c{word-spacing:12.960000px;}
.ws132{word-spacing:13.002000px;}
.ws76{word-spacing:13.032000px;}
.ws4{word-spacing:13.104000px;}
.ws7b{word-spacing:13.176000px;}
.ws15{word-spacing:13.392000px;}
.ws43{word-spacing:13.464000px;}
.ws12{word-spacing:13.752000px;}
.wsfe{word-spacing:14.040000px;}
.ws70{word-spacing:14.112000px;}
.wsbe{word-spacing:14.184000px;}
.ws103{word-spacing:14.616000px;}
.wsa6{word-spacing:14.688000px;}
.ws22{word-spacing:15.048000px;}
.wsff{word-spacing:15.192000px;}
.wsec{word-spacing:15.264000px;}
.wsb0{word-spacing:15.336000px;}
.ws54{word-spacing:15.480000px;}
.ws138{word-spacing:15.510000px;}
.ws44{word-spacing:15.984000px;}
.ws13a{word-spacing:16.038000px;}
.wsf0{word-spacing:16.128000px;}
.ws46{word-spacing:16.272000px;}
.ws102{word-spacing:16.344000px;}
.ws125{word-spacing:16.368000px;}
.ws92{word-spacing:16.416000px;}
.ws7a{word-spacing:16.560000px;}
.ws16{word-spacing:16.776000px;}
.ws10d{word-spacing:17.064000px;}
.ws13b{word-spacing:17.226000px;}
.ws10b{word-spacing:17.352000px;}
.ws122{word-spacing:17.640000px;}
.ws139{word-spacing:17.754000px;}
.wsd5{word-spacing:17.856000px;}
.ws20{word-spacing:18.216000px;}
.ws13c{word-spacing:18.810000px;}
.ws6a{word-spacing:18.936000px;}
.wsa8{word-spacing:19.512000px;}
.ws3f{word-spacing:19.728000px;}
.ws112{word-spacing:20.520000px;}
.ws131{word-spacing:20.856000px;}
.ws6c{word-spacing:22.248000px;}
.ws114{word-spacing:22.608000px;}
.ws6f{word-spacing:23.400000px;}
.ws81{word-spacing:25.056000px;}
.wsd2{word-spacing:26.304000px;}
.ws1f{word-spacing:26.352000px;}
.wsa7{word-spacing:27.072000px;}
.ws30{word-spacing:27.216000px;}
.wsd9{word-spacing:30.912000px;}
.wsb3{word-spacing:34.020000px;}
.wsc4{word-spacing:34.272000px;}
.wsd4{word-spacing:37.824000px;}
.ws95{word-spacing:39.024000px;}
.wsd0{word-spacing:39.936000px;}
.wsd3{word-spacing:41.376000px;}
.ws13d{word-spacing:46.398000px;}
.ws13f{word-spacing:49.368000px;}
.wsda{word-spacing:60.564000px;}
.wsd1{word-spacing:61.344000px;}
.wsb6{word-spacing:61.560000px;}
.wsce{word-spacing:64.974000px;}
.wse3{word-spacing:69.024000px;}
.wsdb{word-spacing:90.768000px;}
.wsdf{word-spacing:107.712000px;}
.wse6{word-spacing:112.752000px;}
.wse0{word-spacing:113.856000px;}
.wsb2{word-spacing:127.386000px;}
.wse5{word-spacing:139.212000px;}
.wsb8{word-spacing:150.552000px;}
.wsb7{word-spacing:151.578000px;}
.wse2{word-spacing:154.752000px;}
.wse1{word-spacing:160.896000px;}
.wsb4{word-spacing:163.782000px;}
.wsb5{word-spacing:164.808000px;}
.wsd6{word-spacing:173.166000px;}
.wsdd{word-spacing:252.756000px;}
.wsa1{word-spacing:312.120000px;}
.wsa0{word-spacing:338.580000px;}
._8f{margin-left:-154.260857px;}
._90{margin-left:-109.248000px;}
._80{margin-left:-107.712000px;}
._86{margin-left:-91.872000px;}
._7e{margin-left:-86.219143px;}
._26{margin-left:-45.288000px;}
._28{margin-left:-44.283600px;}
._8b{margin-left:-41.352000px;}
._7f{margin-left:-38.688000px;}
._88{margin-left:-29.448000px;}
._87{margin-left:-25.104000px;}
._89{margin-left:-23.520000px;}
._83{margin-left:-17.400000px;}
._84{margin-left:-12.240000px;}
._82{margin-left:-10.248000px;}
._c{margin-left:-9.216000px;}
._6{margin-left:-7.848000px;}
._99{margin-left:-6.804000px;}
._2{margin-left:-5.760000px;}
._3{margin-left:-3.960000px;}
._4{margin-left:-2.880000px;}
._1{margin-left:-1.368000px;}
._0{width:1.260000px;}
._7{width:2.376000px;}
._5{width:3.384000px;}
._9{width:4.968000px;}
._8{width:6.120000px;}
._e{width:7.200000px;}
._f{width:9.072000px;}
._a{width:10.800000px;}
._11{width:12.384000px;}
._b{width:13.608000px;}
._10{width:14.904000px;}
._43{width:16.088082px;}
._6f{width:17.568000px;}
._61{width:19.563000px;}
._3b{width:21.294000px;}
._d{width:23.347800px;}
._55{width:25.084200px;}
._3c{width:28.026000px;}
._56{width:29.496000px;}
._27{width:31.717200px;}
._3d{width:34.722000px;}
._29{width:36.198000px;}
._79{width:37.506000px;}
._5c{width:38.976000px;}
._36{width:40.230000px;}
._35{width:41.256000px;}
._71{width:43.272000px;}
._48{width:45.402000px;}
._98{width:46.926000px;}
._5a{width:48.604200px;}
._4a{width:50.028000px;}
._70{width:51.288000px;}
._5b{width:52.800000px;}
._3a{width:53.892000px;}
._75{width:55.056000px;}
._6e{width:56.112000px;}
._47{width:57.948000px;}
._51{width:61.050000px;}
._8c{width:62.136000px;}
._57{width:64.536000px;}
._63{width:66.360000px;}
._74{width:69.120000px;}
._72{width:73.632000px;}
._5f{width:77.568000px;}
._85{width:78.792000px;}
._60{width:83.904000px;}
._73{width:86.640000px;}
._44{width:88.872000px;}
._39{width:90.936000px;}
._50{width:91.938000px;}
._64{width:93.618000px;}
._49{width:96.600000px;}
._68{width:97.986000px;}
._91{width:100.073400px;}
._8a{width:101.243143px;}
._46{width:103.908000px;}
._81{width:109.560000px;}
._54{width:110.808000px;}
._52{width:112.944000px;}
._45{width:114.744000px;}
._37{width:116.208000px;}
._2f{width:117.666000px;}
._67{width:127.974000px;}
._2c{width:129.492000px;}
._69{width:131.100000px;}
._62{width:132.174000px;}
._5d{width:134.232000px;}
._38{width:137.214000px;}
._2d{width:142.722000px;}
._58{width:146.064000px;}
._8e{width:147.462000px;}
._6d{width:150.792000px;}
._6b{width:152.274000px;}
._65{width:154.056000px;}
._4f{width:156.072000px;}
._5e{width:158.832000px;}
._66{width:159.864000px;}
._53{width:163.536000px;}
._1a{width:166.590000px;}
._59{width:170.352000px;}
._33{width:176.310000px;}
._1c{width:179.820000px;}
._1b{width:184.086000px;}
._6c{width:187.548000px;}
._4e{width:189.126000px;}
._34{width:193.104000px;}
._30{width:204.498000px;}
._24{width:206.280000px;}
._8d{width:207.840000px;}
._2e{width:220.482000px;}
._4d{width:228.270000px;}
._31{width:231.120000px;}
._2a{width:235.170000px;}
._92{width:238.374000px;}
._94{width:240.174000px;}
._6a{width:241.500000px;}
._4b{width:246.624000px;}
._76{width:253.176000px;}
._19{width:268.920000px;}
._2b{width:272.322000px;}
._96{width:274.681800px;}
._4c{width:277.242000px;}
._13{width:280.692000px;}
._32{width:290.034000px;}
._20{width:298.296000px;}
._95{width:300.393000px;}
._1f{width:304.344000px;}
._1d{width:312.768000px;}
._12{width:319.022400px;}
._23{width:336.798000px;}
._16{width:338.580000px;}
._1e{width:342.792000px;}
._97{width:360.558000px;}
._15{width:383.454000px;}
._42{width:439.236000px;}
._41{width:443.286000px;}
._3e{width:465.696000px;}
._17{width:468.720000px;}
._14{width:490.482000px;}
._21{width:497.610000px;}
._18{width:505.170000px;}
._22{width:518.400000px;}
._40{width:531.576000px;}
._93{width:586.494000px;}
._25{width:612.612000px;}
._7b{width:659.190000px;}
._7c{width:727.482000px;}
._7d{width:762.594000px;}
._78{width:785.988000px;}
._7a{width:792.540000px;}
._3f{width:833.706000px;}
._77{width:938.910000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.976000px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.176450px;}
.y1c{bottom:37.176750px;}
.y184{bottom:81.435750px;}
.y1ae{bottom:91.173000px;}
.y56{bottom:96.661350px;}
.y183{bottom:97.935750px;}
.y19e{bottom:98.165250px;}
.y65{bottom:101.656350px;}
.y1b{bottom:101.656500px;}
.y40{bottom:110.921100px;}
.y1d1{bottom:111.211050px;}
.y1f1{bottom:112.548150px;}
.yf0{bottom:114.661350px;}
.y1ad{bottom:115.173000px;}
.y152{bottom:117.400200px;}
.y55{bottom:119.656350px;}
.y19d{bottom:122.165250px;}
.y64{bottom:127.168200px;}
.y151{bottom:133.900200px;}
.y1f0{bottom:134.148150px;}
.y3f{bottom:134.921100px;}
.y1d0{bottom:135.211050px;}
.yef{bottom:137.656350px;}
.y1ac{bottom:139.173000px;}
.ybc{bottom:140.173200px;}
.y3{bottom:144.661350px;}
.yc4{bottom:145.168200px;}
.y19c{bottom:146.165250px;}
.y11e{bottom:146.637600px;}
.y63{bottom:152.680050px;}
.y1ef{bottom:153.648150px;}
.y73{bottom:154.669050px;}
.ybb{bottom:158.173200px;}
.y3e{bottom:158.921100px;}
.y1cf{bottom:159.211050px;}
.y86{bottom:161.661150px;}
.yd4{bottom:163.168200px;}
.y1ab{bottom:163.173000px;}
.y16b{bottom:163.545900px;}
.y104{bottom:168.943500px;}
.y19b{bottom:170.165250px;}
.y11d{bottom:170.637600px;}
.yc3{bottom:170.680050px;}
.y150{bottom:175.404150px;}
.y198{bottom:176.173200px;}
.y72{bottom:178.669050px;}
.y1b5{bottom:179.897400px;}
.y16a{bottom:180.045900px;}
.yba{bottom:181.168200px;}
.y1ee{bottom:181.652100px;}
.y3d{bottom:182.921100px;}
.y1ce{bottom:183.211050px;}
.yd3{bottom:183.684900px;}
.y85{bottom:185.661150px;}
.y1aa{bottom:187.173000px;}
.ya1{bottom:188.401350px;}
.y192{bottom:190.687650px;}
.yf3{bottom:194.165250px;}
.y197{bottom:194.173200px;}
.y11c{bottom:194.637600px;}
.yc2{bottom:196.191750px;}
.yee{bottom:197.189550px;}
.y1ed{bottom:201.152100px;}
.y14f{bottom:201.908100px;}
.y71{bottom:202.669050px;}
.y1a{bottom:202.858200px;}
.y1b4{bottom:203.897400px;}
.yd2{bottom:206.680050px;}
.y3c{bottom:206.921100px;}
.y1b7{bottom:207.393450px;}
.y103{bottom:209.443500px;}
.y84{bottom:209.661150px;}
.y62{bottom:211.173000px;}
.y196{bottom:212.173200px;}
.y137{bottom:212.183700px;}
.ya0{bottom:212.401350px;}
.y191{bottom:214.687650px;}
.y1cd{bottom:215.715000px;}
.yf2{bottom:218.165250px;}
.y11b{bottom:218.637600px;}
.y169{bottom:220.049850px;}
.y1ec{bottom:220.652100px;}
.yed{bottom:221.189550px;}
.yc1{bottom:221.703600px;}
.y1b6{bottom:225.393450px;}
.y70{bottom:226.669050px;}
.y19{bottom:226.858200px;}
.y1b3{bottom:227.897400px;}
.y14e{bottom:228.412050px;}
.yb9{bottom:229.699350px;}
.y3b{bottom:230.921100px;}
.y102{bottom:231.695550px;}
.y83{bottom:233.661150px;}
.y195{bottom:235.168200px;}
.y61{bottom:235.173000px;}
.y136{bottom:236.183700px;}
.y9f{bottom:236.401350px;}
.y190{bottom:238.687650px;}
.y1cc{bottom:239.715000px;}
.y1eb{bottom:240.152100px;}
.y154{bottom:240.351600px;}
.yf1{bottom:242.165250px;}
.yc0{bottom:242.220450px;}
.y168{bottom:244.427700px;}
.yec{bottom:245.189550px;}
.y6f{bottom:250.669050px;}
.y18{bottom:250.858200px;}
.y1b2{bottom:251.897400px;}
.y101{bottom:253.947450px;}
.y14d{bottom:254.916000px;}
.y3a{bottom:254.921100px;}
.y11a{bottom:259.137600px;}
.y60{bottom:259.173000px;}
.y135{bottom:260.183700px;}
.y9e{bottom:260.401350px;}
.yb8{bottom:262.203300px;}
.y1cb{bottom:263.715000px;}
.ybf{bottom:265.215450px;}
.y82{bottom:266.165250px;}
.y1ea{bottom:268.156050px;}
.y167{bottom:268.805700px;}
.yeb{bottom:269.189550px;}
.y6e{bottom:274.669050px;}
.y17{bottom:274.858200px;}
.y119{bottom:275.637600px;}
.y1b1{bottom:275.897400px;}
.y100{bottom:276.199350px;}
.y54{bottom:278.921100px;}
.y16d{bottom:279.115500px;}
.y14c{bottom:281.419950px;}
.y5f{bottom:283.173000px;}
.y134{bottom:284.183700px;}
.y9d{bottom:284.401350px;}
.yb7{bottom:286.203300px;}
.y39{bottom:287.425050px;}
.y1e9{bottom:287.656050px;}
.y1ca{bottom:287.715000px;}
.y81{bottom:290.165250px;}
.y18f{bottom:290.939550px;}
.y166{bottom:293.183700px;}
.yea{bottom:293.189550px;}
.yd1{bottom:294.417150px;}
.yff{bottom:298.451400px;}
.y6d{bottom:298.669050px;}
.y16{bottom:298.858200px;}
.y1b0{bottom:299.897400px;}
.y53{bottom:302.921100px;}
.y1e8{bottom:307.156050px;}
.y5e{bottom:307.173000px;}
.y18e{bottom:307.439550px;}
.y14b{bottom:307.923900px;}
.y133{bottom:308.183700px;}
.y9c{bottom:308.401350px;}
.y118{bottom:308.637600px;}
.yb6{bottom:310.203300px;}
.y38{bottom:311.425050px;}
.y1c9{bottom:311.715000px;}
.y80{bottom:314.165250px;}
.y165{bottom:317.561550px;}
.yd0{bottom:318.417150px;}
.yfe{bottom:320.703300px;}
.y6c{bottom:322.669050px;}
.y15{bottom:322.858200px;}
.y1af{bottom:323.897400px;}
.ye9{bottom:325.693500px;}
.y52{bottom:326.921100px;}
.y208{bottom:328.917750px;}
.y117{bottom:330.889500px;}
.y5d{bottom:331.173000px;}
.y132{bottom:332.183700px;}
.y9b{bottom:332.401350px;}
.yb5{bottom:334.203300px;}
.y14a{bottom:334.427700px;}
.y1e7{bottom:335.160000px;}
.y37{bottom:335.425050px;}
.y1c8{bottom:335.715000px;}
.y7f{bottom:338.165250px;}
.y1a9{bottom:339.676950px;}
.y164{bottom:341.939550px;}
.ycf{bottom:342.417150px;}
.yfd{bottom:342.955350px;}
.y18d{bottom:344.691600px;}
.y6b{bottom:346.669050px;}
.y14{bottom:346.858200px;}
.ye8{bottom:349.693500px;}
.y194{bottom:350.921100px;}
.y207{bottom:352.917750px;}
.y116{bottom:353.141550px;}
.y1e6{bottom:354.660000px;}
.y51{bottom:355.173000px;}
.y9a{bottom:356.401350px;}
.yb4{bottom:358.203300px;}
.y36{bottom:359.425050px;}
.y1c7{bottom:359.715000px;}
.y149{bottom:360.931650px;}
.y7e{bottom:362.165250px;}
.y1a8{bottom:363.676950px;}
.y131{bottom:364.687650px;}
.yfc{bottom:365.207250px;}
.y163{bottom:366.317550px;}
.yce{bottom:366.417150px;}
.y18c{bottom:366.943500px;}
.ybe{bottom:370.669050px;}
.y13{bottom:370.858200px;}
.y206{bottom:372.417750px;}
.ye7{bottom:373.693500px;}
.y193{bottom:374.921100px;}
.y115{bottom:375.393450px;}
.y5c{bottom:379.173000px;}
.y99{bottom:380.401350px;}
.yb3{bottom:382.203300px;}
.y1e5{bottom:382.663950px;}
.y182{bottom:382.959300px;}
.y35{bottom:383.425050px;}
.y1c6{bottom:383.715000px;}
.y7d{bottom:386.165250px;}
.y148{bottom:387.435600px;}
.yfb{bottom:387.459300px;}
.y1a7{bottom:387.676950px;}
.y130{bottom:388.687650px;}
.y18b{bottom:389.195550px;}
.y162{bottom:390.695550px;}
.ybd{bottom:394.669050px;}
.y12{bottom:394.858200px;}
.y114{bottom:397.645500px;}
.ye6{bottom:397.693500px;}
.ycd{bottom:398.921100px;}
.y205{bottom:400.421700px;}
.y1e4{bottom:402.163950px;}
.y50{bottom:403.173000px;}
.y98{bottom:404.401350px;}
.yb2{bottom:406.203300px;}
.y181{bottom:406.959300px;}
.y34{bottom:407.425050px;}
.y1c5{bottom:407.715000px;}
.y7c{bottom:410.165250px;}
.y1a6{bottom:411.676950px;}
.y12f{bottom:412.687650px;}
.y147{bottom:413.939550px;}
.yfa{bottom:413.963250px;}
.y161{bottom:415.073400px;}
.y18a{bottom:415.699350px;}
.y12a{bottom:418.669050px;}
.y11{bottom:418.858200px;}
.y113{bottom:419.897400px;}
.y204{bottom:419.921700px;}
.ye5{bottom:421.693500px;}
.ycc{bottom:422.921100px;}
.y4f{bottom:427.173000px;}
.y1e3{bottom:430.167750px;}
.yb1{bottom:430.203300px;}
.y33{bottom:431.425050px;}
.y1c4{bottom:431.715000px;}
.yf9{bottom:431.963250px;}
.y189{bottom:433.699350px;}
.y7b{bottom:434.165250px;}
.y1a5{bottom:435.676950px;}
.y12e{bottom:436.687650px;}
.y97{bottom:436.905300px;}
.y160{bottom:439.451400px;}
.y146{bottom:440.443500px;}
.y112{bottom:442.149450px;}
.y129{bottom:442.669050px;}
.y10{bottom:442.858200px;}
.ycb{bottom:446.921100px;}
.y203{bottom:447.925650px;}
.y1e2{bottom:449.667750px;}
.y4e{bottom:451.173000px;}
.yb0{bottom:454.203300px;}
.y180{bottom:454.959300px;}
.y32{bottom:455.425050px;}
.y1c3{bottom:455.715000px;}
.y7a{bottom:458.165100px;}
.y1a4{bottom:459.676950px;}
.y96{bottom:460.905300px;}
.y15f{bottom:463.829250px;}
.y111{bottom:464.401350px;}
.y128{bottom:466.669050px;}
.yf{bottom:466.858200px;}
.y145{bottom:466.947450px;}
.y202{bottom:467.425650px;}
.y1e1{bottom:469.167900px;}
.yca{bottom:470.921100px;}
.ye4{bottom:471.205350px;}
.y17f{bottom:471.459300px;}
.y4d{bottom:475.173000px;}
.yaf{bottom:478.203300px;}
.y31{bottom:479.425050px;}
.y1c2{bottom:479.715000px;}
.yf8{bottom:479.963250px;}
.y188{bottom:481.699350px;}
.y79{bottom:482.165100px;}
.y5b{bottom:483.676950px;}
.y95{bottom:484.905300px;}
.y12d{bottom:485.691600px;}
.y110{bottom:486.653250px;}
.ye3{bottom:487.705350px;}
.y15e{bottom:488.207250px;}
.y127{bottom:490.669050px;}
.y1a3{bottom:492.180900px;}
.y144{bottom:493.451400px;}
.yc9{bottom:494.921100px;}
.y201{bottom:495.429600px;}
.y1e0{bottom:497.171700px;}
.y4c{bottom:499.173000px;}
.ye{bottom:499.362150px;}
.yae{bottom:502.203300px;}
.y30{bottom:503.425050px;}
.y12c{bottom:503.691600px;}
.y1c1{bottom:503.715000px;}
.yf7{bottom:503.963250px;}
.y187{bottom:505.699350px;}
.y5a{bottom:507.676950px;}
.y94{bottom:508.905300px;}
.y15d{bottom:512.585250px;}
.y17e{bottom:512.963250px;}
.y126{bottom:514.669050px;}
.y200{bottom:514.929600px;}
.y1a2{bottom:516.180900px;}
.y1df{bottom:516.671700px;}
.y78{bottom:518.921100px;}
.y143{bottom:519.955350px;}
.y153{bottom:520.627200px;}
.ye2{bottom:521.213250px;}
.y12b{bottom:521.691600px;}
.y6a{bottom:523.173000px;}
.yd{bottom:523.362150px;}
.yad{bottom:526.203300px;}
.y2f{bottom:527.425050px;}
.y10f{bottom:531.157350px;}
.y4b{bottom:531.676950px;}
.y93{bottom:532.905300px;}
.y17d{bottom:533.715300px;}
.y1ff{bottom:534.429600px;}
.y1c0{bottom:536.218950px;}
.y16c{bottom:536.501250px;}
.y15c{bottom:536.963250px;}
.y1a1{bottom:540.180900px;}
.y77{bottom:542.921100px;}
.ye1{bottom:543.465150px;}
.y1de{bottom:544.675650px;}
.y142{bottom:546.459300px;}
.y69{bottom:547.173000px;}
.yc{bottom:547.362150px;}
.y125{bottom:551.425050px;}
.y17c{bottom:552.967200px;}
.y10e{bottom:553.409250px;}
.y186{bottom:554.703300px;}
.y4a{bottom:555.676950px;}
.y92{bottom:556.905300px;}
.yac{bottom:558.707100px;}
.y2e{bottom:559.928850px;}
.y1bf{bottom:560.218950px;}
.y15b{bottom:561.341100px;}
.y1fe{bottom:562.433550px;}
.y1dd{bottom:564.175650px;}
.y1a0{bottom:564.180900px;}
.ye0{bottom:564.967200px;}
.y76{bottom:566.921100px;}
.yf6{bottom:568.971000px;}
.y68{bottom:571.173000px;}
.y185{bottom:571.203300px;}
.yb{bottom:571.362150px;}
.y17b{bottom:572.219250px;}
.y141{bottom:572.963250px;}
.y124{bottom:575.425050px;}
.y10d{bottom:575.661300px;}
.y49{bottom:579.676950px;}
.y91{bottom:580.905300px;}
.y1fd{bottom:581.933550px;}
.yab{bottom:582.707100px;}
.y2d{bottom:583.928850px;}
.y1be{bottom:584.218950px;}
.yf5{bottom:585.471000px;}
.y15a{bottom:585.719100px;}
.ydf{bottom:586.469100px;}
.y19f{bottom:588.180900px;}
.y75{bottom:590.921100px;}
.y17a{bottom:591.471150px;}
.y1dc{bottom:592.179600px;}
.y67{bottom:595.173000px;}
.ya{bottom:595.362150px;}
.y10c{bottom:597.913200px;}
.y123{bottom:599.425050px;}
.y140{bottom:599.467200px;}
.y1fc{bottom:601.433550px;}
.y48{bottom:603.676950px;}
.yaa{bottom:606.707100px;}
.y2c{bottom:607.928850px;}
.yde{bottom:607.971000px;}
.y1bd{bottom:608.218950px;}
.y159{bottom:610.097100px;}
.y179{bottom:610.723050px;}
.yc8{bottom:612.180900px;}
.y90{bottom:613.409250px;}
.y74{bottom:614.921100px;}
.y19a{bottom:619.173000px;}
.y9{bottom:619.362150px;}
.y10b{bottom:620.165100px;}
.y1db{bottom:620.183550px;}
.y122{bottom:623.425050px;}
.y13f{bottom:625.971000px;}
.y47{bottom:627.676950px;}
.y1fb{bottom:629.437500px;}
.ydd{bottom:629.473050px;}
.y178{bottom:629.975100px;}
.ya9{bottom:630.707100px;}
.y2b{bottom:631.928850px;}
.y1bc{bottom:632.218950px;}
.y158{bottom:634.474950px;}
.yc7{bottom:636.180900px;}
.y8f{bottom:637.409250px;}
.y1da{bottom:639.683550px;}
.y10a{bottom:642.417150px;}
.y199{bottom:643.173000px;}
.y121{bottom:647.425050px;}
.y8{bottom:647.614050px;}
.y1fa{bottom:648.937500px;}
.y177{bottom:649.227150px;}
.ydc{bottom:650.974950px;}
.y46{bottom:651.676950px;}
.y13e{bottom:652.474950px;}
.ya8{bottom:654.707100px;}
.y2a{bottom:655.928850px;}
.y1bb{bottom:656.218950px;}
.y157{bottom:658.852950px;}
.yc6{bottom:660.180900px;}
.y8e{bottom:661.409250px;}
.y109{bottom:664.669050px;}
.y1d9{bottom:667.687500px;}
.y1f9{bottom:668.437500px;}
.y176{bottom:669.979050px;}
.y120{bottom:671.425050px;}
.ydb{bottom:672.477000px;}
.y45{bottom:675.676950px;}
.y13d{bottom:678.978900px;}
.y29{bottom:679.928850px;}
.y1ba{bottom:680.218950px;}
.y156{bottom:683.230950px;}
.yc5{bottom:684.180900px;}
.y8d{bottom:685.409250px;}
.y108{bottom:686.921100px;}
.y1d8{bottom:687.187500px;}
.ya7{bottom:687.211050px;}
.y175{bottom:690.730950px;}
.y20{bottom:691.173000px;}
.yda{bottom:693.978900px;}
.y11f{bottom:695.425050px;}
.y7{bottom:695.614050px;}
.y1f8{bottom:696.441450px;}
.y59{bottom:699.676950px;}
.y28{bottom:703.928850px;}
.y1b9{bottom:704.218950px;}
.y13c{bottom:705.482850px;}
.y155{bottom:707.608950px;}
.y44{bottom:708.180900px;}
.y107{bottom:709.173000px;}
.y8c{bottom:709.409250px;}
.y1f{bottom:715.173000px;}
.y1d7{bottom:715.191450px;}
.yd9{bottom:715.480950px;}
.y174{bottom:715.734900px;}
.y1f7{bottom:715.941450px;}
.ya6{bottom:719.715000px;}
.y6{bottom:722.614050px;}
.y58{bottom:723.676950px;}
.y27{bottom:727.928850px;}
.y1b8{bottom:728.218950px;}
.y106{bottom:731.425050px;}
.y13b{bottom:731.986800px;}
.y43{bottom:732.180900px;}
.y8b{bottom:733.409250px;}
.y173{bottom:733.486950px;}
.y1d6{bottom:734.691450px;}
.y1f6{bottom:735.441450px;}
.yd8{bottom:736.982850px;}
.y13a{bottom:745.486800px;}
.y172{bottom:745.486950px;}
.y57{bottom:747.676950px;}
.y5{bottom:749.614050px;}
.y26{bottom:751.928850px;}
.ya5{bottom:752.218950px;}
.y105{bottom:753.676950px;}
.y1d5{bottom:754.191450px;}
.y1e{bottom:756.180900px;}
.y8a{bottom:757.409250px;}
.y139{bottom:757.486800px;}
.y171{bottom:757.486950px;}
.y1f5{bottom:763.445400px;}
.yd7{bottom:763.486800px;}
.y138{bottom:769.486800px;}
.y170{bottom:769.486950px;}
.y66{bottom:771.676950px;}
.y25{bottom:775.928850px;}
.ya4{bottom:776.218950px;}
.y4{bottom:776.614050px;}
.y1d{bottom:780.180900px;}
.y89{bottom:781.409250px;}
.yd6{bottom:781.486800px;}
.y1d4{bottom:782.195400px;}
.y1f4{bottom:782.945400px;}
.y24{bottom:799.928850px;}
.ya3{bottom:800.218950px;}
.y1d3{bottom:801.695400px;}
.y1f3{bottom:802.445400px;}
.y42{bottom:804.180900px;}
.y88{bottom:805.409250px;}
.yf4{bottom:805.486800px;}
.y16f{bottom:805.486950px;}
.y23{bottom:828.180900px;}
.ya2{bottom:828.471000px;}
.y87{bottom:829.409250px;}
.yd5{bottom:829.486800px;}
.y16e{bottom:829.486950px;}
.y1d2{bottom:829.699350px;}
.y1f2{bottom:830.449350px;}
.y22{bottom:901.192950px;}
.y2{bottom:904.528350px;}
.y41{bottom:910.567950px;}
.y21{bottom:919.942950px;}
.h15{height:28.567383px;}
.h17{height:28.751953px;}
.h18{height:32.648438px;}
.hd{height:32.665884px;}
.ha{height:32.666484px;}
.hf{height:36.729492px;}
.h14{height:36.852539px;}
.h12{height:36.966797px;}
.h16{height:42.117188px;}
.h2{height:44.250000px;}
.h13{height:44.891602px;}
.h11{height:45.181641px;}
.h10{height:47.381836px;}
.hc{height:48.972656px;}
.h8{height:49.289062px;}
.h4{height:52.646484px;}
.hb{height:55.312500px;}
.he{height:57.911133px;}
.h9{height:63.175781px;}
.h6{height:66.978516px;}
.h3{height:71.762695px;}
.h7{height:77.437500px;}
.h5{height:78.175781px;}
.h0{height:956.692500px;}
.h1{height:957.000000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:34.452750px;}
.x2{left:59.527500px;}
.xb{left:63.610050px;}
.x3{left:69.768900px;}
.x19{left:78.982200px;}
.xa{left:85.039350px;}
.x10{left:103.905450px;}
.x4{left:108.870300px;}
.x1a{left:114.338700px;}
.xc{left:115.639800px;}
.xe{left:120.058950px;}
.x12{left:123.599850px;}
.x1b{left:127.104450px;}
.x1c{left:132.446100px;}
.xf{left:138.109800px;}
.xd{left:140.172300px;}
.x15{left:141.779700px;}
.x5{left:156.524550px;}
.x16{left:161.586900px;}
.x17{left:170.275950px;}
.x18{left:175.545000px;}
.x11{left:220.203000px;}
.x1d{left:251.785050px;}
.x13{left:262.850850px;}
.x6{left:279.991500px;}
.x14{left:281.905500px;}
.x7{left:480.019800px;}
.x8{left:482.287350px;}
.x9{left:531.588150px;}
@media print{
.v4{vertical-align:-21.312000pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.312000pt;}
.v1{vertical-align:24.864000pt;}
.ls7{letter-spacing:-1.150453pt;}
.ls6{letter-spacing:-1.007424pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.006933pt;}
.ls19{letter-spacing:0.186560pt;}
.ls12{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.373120pt;}
.ls0{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.528000pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:3.050667pt;}
.lsf{letter-spacing:6.048317pt;}
.ls15{letter-spacing:76.678400pt;}
.ls10{letter-spacing:81.250068pt;}
.ls16{letter-spacing:110.928000pt;}
.ls11{letter-spacing:116.044082pt;}
.ls8{letter-spacing:184.810667pt;}
.lsb{letter-spacing:185.368533pt;}
.lse{letter-spacing:196.037333pt;}
.lsd{letter-spacing:230.384533pt;}
.lsc{letter-spacing:268.582933pt;}
.ls18{letter-spacing:284.348267pt;}
.ls9{letter-spacing:324.000000pt;}
.ws0{word-spacing:-53.333333pt;}
.ws7d{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws135{word-spacing:-15.253333pt;}
.ws136{word-spacing:-15.194667pt;}
.ws124{word-spacing:-14.666667pt;}
.ws9e{word-spacing:-12.000000pt;}
.ws9d{word-spacing:-11.520000pt;}
.ws7e{word-spacing:-9.701120pt;}
.ws104{word-spacing:-9.514560pt;}
.ws2d{word-spacing:-9.328000pt;}
.ws117{word-spacing:-9.216000pt;}
.wscd{word-spacing:-8.960000pt;}
.ws7f{word-spacing:-8.320576pt;}
.ws5{word-spacing:-8.256000pt;}
.ws1{word-spacing:-7.773333pt;}
.ws32{word-spacing:-7.744000pt;}
.ws80{word-spacing:-6.622880pt;}
.wsaa{word-spacing:-6.272000pt;}
.ws10e{word-spacing:-6.080000pt;}
.wsac{word-spacing:-5.888000pt;}
.ws6e{word-spacing:-5.568000pt;}
.ws67{word-spacing:-5.312000pt;}
.ws6b{word-spacing:-5.056000pt;}
.wsfa{word-spacing:-4.736000pt;}
.wsee{word-spacing:-4.672000pt;}
.wsb1{word-spacing:-4.608000pt;}
.wsf9{word-spacing:-4.544000pt;}
.ws9a{word-spacing:-4.032000pt;}
.wse4{word-spacing:-3.984000pt;}
.ws99{word-spacing:-3.968000pt;}
.wsf4{word-spacing:-3.840000pt;}
.ws10f{word-spacing:-3.680000pt;}
.wsbd{word-spacing:-3.648000pt;}
.ws2a{word-spacing:-3.584000pt;}
.ws52{word-spacing:-3.520000pt;}
.wsa{word-spacing:-3.392000pt;}
.wsfd{word-spacing:-3.328000pt;}
.wsa5{word-spacing:-3.200000pt;}
.ws93{word-spacing:-3.136000pt;}
.ws2f{word-spacing:-3.072000pt;}
.ws133{word-spacing:-3.050667pt;}
.ws40{word-spacing:-3.008000pt;}
.ws50{word-spacing:-2.944000pt;}
.wsef{word-spacing:-2.880000pt;}
.ws12b{word-spacing:-2.757333pt;}
.ws11b{word-spacing:-2.752000pt;}
.wsb9{word-spacing:-2.688000pt;}
.ws11a{word-spacing:-2.560000pt;}
.ws110{word-spacing:-2.496000pt;}
.ws14{word-spacing:-2.432000pt;}
.ws100{word-spacing:-2.368000pt;}
.wsf2{word-spacing:-2.304000pt;}
.ws128{word-spacing:-2.288000pt;}
.ws11c{word-spacing:-2.240000pt;}
.ws88{word-spacing:-2.176000pt;}
.ws109{word-spacing:-2.112000pt;}
.ws105{word-spacing:-1.984000pt;}
.ws108{word-spacing:-1.920000pt;}
.ws12f{word-spacing:-1.818667pt;}
.ws26{word-spacing:-1.792000pt;}
.ws113{word-spacing:-1.728000pt;}
.wsc6{word-spacing:-1.536000pt;}
.wscb{word-spacing:-1.344000pt;}
.ws86{word-spacing:-1.333333pt;}
.wsa2{word-spacing:-1.296000pt;}
.ws2e{word-spacing:-1.280000pt;}
.ws5c{word-spacing:-1.216000pt;}
.ws36{word-spacing:-1.152000pt;}
.ws143{word-spacing:-1.114667pt;}
.ws137{word-spacing:-1.056000pt;}
.ws56{word-spacing:-1.024000pt;}
.wse9{word-spacing:-0.906667pt;}
.ws72{word-spacing:-0.896000pt;}
.ws6{word-spacing:-0.832000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws25{word-spacing:-0.640000pt;}
.wsc1{word-spacing:-0.576000pt;}
.ws60{word-spacing:-0.512000pt;}
.ws3a{word-spacing:-0.448000pt;}
.ws9b{word-spacing:-0.426667pt;}
.ws115{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.320000pt;}
.wsc0{word-spacing:-0.256000pt;}
.wsd8{word-spacing:-0.240000pt;}
.ws12a{word-spacing:-0.234667pt;}
.ws123{word-spacing:-0.128000pt;}
.ws65{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.064000pt;}
.ws57{word-spacing:0.128000pt;}
.wsba{word-spacing:0.192000pt;}
.wsd7{word-spacing:0.240000pt;}
.ws107{word-spacing:0.256000pt;}
.wsf5{word-spacing:0.266667pt;}
.ws64{word-spacing:0.320000pt;}
.wscf{word-spacing:0.373333pt;}
.wsab{word-spacing:0.384000pt;}
.wsde{word-spacing:0.426667pt;}
.ws9f{word-spacing:0.480000pt;}
.ws116{word-spacing:0.512000pt;}
.ws10{word-spacing:0.704000pt;}
.ws66{word-spacing:0.768000pt;}
.ws63{word-spacing:0.832000pt;}
.ws74{word-spacing:0.896000pt;}
.ws8a{word-spacing:0.960000pt;}
.wsf6{word-spacing:1.013333pt;}
.ws5a{word-spacing:1.088000pt;}
.wsf3{word-spacing:1.152000pt;}
.ws78{word-spacing:1.216000pt;}
.ws127{word-spacing:1.232000pt;}
.ws51{word-spacing:1.280000pt;}
.wsf7{word-spacing:1.333333pt;}
.wsca{word-spacing:1.344000pt;}
.wsdc{word-spacing:1.450667pt;}
.ws129{word-spacing:1.466667pt;}
.ws94{word-spacing:1.472000pt;}
.ws118{word-spacing:1.536000pt;}
.ws96{word-spacing:1.664000pt;}
.wsf{word-spacing:1.728000pt;}
.wsea{word-spacing:1.760000pt;}
.wseb{word-spacing:1.792000pt;}
.ws79{word-spacing:1.856000pt;}
.ws9c{word-spacing:1.866667pt;}
.ws1d{word-spacing:1.920000pt;}
.ws134{word-spacing:1.936000pt;}
.wsb{word-spacing:1.984000pt;}
.ws87{word-spacing:2.026667pt;}
.ws33{word-spacing:2.112000pt;}
.ws7c{word-spacing:2.176000pt;}
.ws4e{word-spacing:2.240000pt;}
.ws71{word-spacing:2.304000pt;}
.ws142{word-spacing:2.346667pt;}
.ws5f{word-spacing:2.368000pt;}
.wsc9{word-spacing:2.400000pt;}
.wscc{word-spacing:2.432000pt;}
.ws35{word-spacing:2.496000pt;}
.ws8{word-spacing:2.560000pt;}
.wsaf{word-spacing:2.624000pt;}
.ws13e{word-spacing:2.640000pt;}
.ws4f{word-spacing:2.688000pt;}
.ws8f{word-spacing:2.752000pt;}
.ws12e{word-spacing:2.757333pt;}
.wsd{word-spacing:2.816000pt;}
.ws97{word-spacing:2.880000pt;}
.ws28{word-spacing:2.944000pt;}
.ws90{word-spacing:3.040000pt;}
.ws4d{word-spacing:3.072000pt;}
.ws69{word-spacing:3.136000pt;}
.ws2c{word-spacing:3.200000pt;}
.ws59{word-spacing:3.264000pt;}
.ws68{word-spacing:3.328000pt;}
.wsa9{word-spacing:3.360000pt;}
.ws55{word-spacing:3.392000pt;}
.ws12d{word-spacing:3.402667pt;}
.ws11d{word-spacing:3.456000pt;}
.ws3b{word-spacing:3.466667pt;}
.ws4c{word-spacing:3.520000pt;}
.wsfb{word-spacing:3.648000pt;}
.wse8{word-spacing:3.712000pt;}
.ws5e{word-spacing:3.776000pt;}
.ws39{word-spacing:3.840000pt;}
.wse7{word-spacing:3.904000pt;}
.ws85{word-spacing:4.000000pt;}
.wsbc{word-spacing:4.032000pt;}
.ws83{word-spacing:4.096000pt;}
.ws1b{word-spacing:4.160000pt;}
.ws11{word-spacing:4.224000pt;}
.ws8d{word-spacing:4.288000pt;}
.ws130{word-spacing:4.341333pt;}
.ws24{word-spacing:4.352000pt;}
.ws37{word-spacing:4.416000pt;}
.ws75{word-spacing:4.480000pt;}
.ws61{word-spacing:4.608000pt;}
.ws141{word-spacing:4.634667pt;}
.wsc{word-spacing:4.672000pt;}
.ws1e{word-spacing:4.736000pt;}
.wsad{word-spacing:4.800000pt;}
.ws58{word-spacing:4.864000pt;}
.ws140{word-spacing:4.869333pt;}
.ws77{word-spacing:4.928000pt;}
.ws2b{word-spacing:5.056000pt;}
.ws11f{word-spacing:5.184000pt;}
.ws62{word-spacing:5.248000pt;}
.ws119{word-spacing:5.312000pt;}
.ws106{word-spacing:5.376000pt;}
.wsc8{word-spacing:5.440000pt;}
.wsc3{word-spacing:5.504000pt;}
.ws121{word-spacing:5.760000pt;}
.wsbb{word-spacing:5.888000pt;}
.ws4a{word-spacing:5.952000pt;}
.ws53{word-spacing:6.016000pt;}
.ws89{word-spacing:6.144000pt;}
.wsa3{word-spacing:6.208000pt;}
.ws5d{word-spacing:6.336000pt;}
.ws47{word-spacing:6.464000pt;}
.ws7{word-spacing:6.528000pt;}
.ws18{word-spacing:6.592000pt;}
.wsed{word-spacing:6.656000pt;}
.wsfc{word-spacing:6.784000pt;}
.ws3c{word-spacing:6.848000pt;}
.ws17{word-spacing:6.912000pt;}
.wsae{word-spacing:6.976000pt;}
.wsc2{word-spacing:7.040000pt;}
.wsf8{word-spacing:7.168000pt;}
.ws1a{word-spacing:7.360000pt;}
.ws29{word-spacing:7.424000pt;}
.ws84{word-spacing:7.488000pt;}
.ws82{word-spacing:7.680000pt;}
.ws11e{word-spacing:7.744000pt;}
.ws1c{word-spacing:7.808000pt;}
.wse{word-spacing:7.872000pt;}
.ws5b{word-spacing:7.936000pt;}
.ws73{word-spacing:8.000000pt;}
.ws3d{word-spacing:8.256000pt;}
.ws6d{word-spacing:8.320000pt;}
.ws3e{word-spacing:8.384000pt;}
.wsbf{word-spacing:8.448000pt;}
.ws10a{word-spacing:8.512000pt;}
.wsa4{word-spacing:8.576000pt;}
.wsc5{word-spacing:8.768000pt;}
.ws45{word-spacing:8.832000pt;}
.ws27{word-spacing:9.088000pt;}
.ws42{word-spacing:9.152000pt;}
.ws91{word-spacing:9.216000pt;}
.wsc7{word-spacing:9.280000pt;}
.ws49{word-spacing:9.344000pt;}
.ws38{word-spacing:9.472000pt;}
.ws34{word-spacing:9.536000pt;}
.ws126{word-spacing:9.680000pt;}
.ws8e{word-spacing:9.792000pt;}
.ws101{word-spacing:10.176000pt;}
.ws120{word-spacing:10.240000pt;}
.ws12c{word-spacing:10.266667pt;}
.ws111{word-spacing:10.368000pt;}
.ws23{word-spacing:10.432000pt;}
.ws21{word-spacing:10.560000pt;}
.ws19{word-spacing:10.688000pt;}
.wsf1{word-spacing:10.752000pt;}
.ws8b{word-spacing:10.816000pt;}
.ws48{word-spacing:10.880000pt;}
.ws98{word-spacing:10.944000pt;}
.ws41{word-spacing:11.136000pt;}
.ws8c{word-spacing:11.328000pt;}
.ws10c{word-spacing:11.520000pt;}
.ws132{word-spacing:11.557333pt;}
.ws76{word-spacing:11.584000pt;}
.ws4{word-spacing:11.648000pt;}
.ws7b{word-spacing:11.712000pt;}
.ws15{word-spacing:11.904000pt;}
.ws43{word-spacing:11.968000pt;}
.ws12{word-spacing:12.224000pt;}
.wsfe{word-spacing:12.480000pt;}
.ws70{word-spacing:12.544000pt;}
.wsbe{word-spacing:12.608000pt;}
.ws103{word-spacing:12.992000pt;}
.wsa6{word-spacing:13.056000pt;}
.ws22{word-spacing:13.376000pt;}
.wsff{word-spacing:13.504000pt;}
.wsec{word-spacing:13.568000pt;}
.wsb0{word-spacing:13.632000pt;}
.ws54{word-spacing:13.760000pt;}
.ws138{word-spacing:13.786667pt;}
.ws44{word-spacing:14.208000pt;}
.ws13a{word-spacing:14.256000pt;}
.wsf0{word-spacing:14.336000pt;}
.ws46{word-spacing:14.464000pt;}
.ws102{word-spacing:14.528000pt;}
.ws125{word-spacing:14.549333pt;}
.ws92{word-spacing:14.592000pt;}
.ws7a{word-spacing:14.720000pt;}
.ws16{word-spacing:14.912000pt;}
.ws10d{word-spacing:15.168000pt;}
.ws13b{word-spacing:15.312000pt;}
.ws10b{word-spacing:15.424000pt;}
.ws122{word-spacing:15.680000pt;}
.ws139{word-spacing:15.781333pt;}
.wsd5{word-spacing:15.872000pt;}
.ws20{word-spacing:16.192000pt;}
.ws13c{word-spacing:16.720000pt;}
.ws6a{word-spacing:16.832000pt;}
.wsa8{word-spacing:17.344000pt;}
.ws3f{word-spacing:17.536000pt;}
.ws112{word-spacing:18.240000pt;}
.ws131{word-spacing:18.538667pt;}
.ws6c{word-spacing:19.776000pt;}
.ws114{word-spacing:20.096000pt;}
.ws6f{word-spacing:20.800000pt;}
.ws81{word-spacing:22.272000pt;}
.wsd2{word-spacing:23.381333pt;}
.ws1f{word-spacing:23.424000pt;}
.wsa7{word-spacing:24.064000pt;}
.ws30{word-spacing:24.192000pt;}
.wsd9{word-spacing:27.477333pt;}
.wsb3{word-spacing:30.240000pt;}
.wsc4{word-spacing:30.464000pt;}
.wsd4{word-spacing:33.621333pt;}
.ws95{word-spacing:34.688000pt;}
.wsd0{word-spacing:35.498667pt;}
.wsd3{word-spacing:36.778667pt;}
.ws13d{word-spacing:41.242667pt;}
.ws13f{word-spacing:43.882667pt;}
.wsda{word-spacing:53.834667pt;}
.wsd1{word-spacing:54.528000pt;}
.wsb6{word-spacing:54.720000pt;}
.wsce{word-spacing:57.754667pt;}
.wse3{word-spacing:61.354667pt;}
.wsdb{word-spacing:80.682667pt;}
.wsdf{word-spacing:95.744000pt;}
.wse6{word-spacing:100.224000pt;}
.wse0{word-spacing:101.205333pt;}
.wsb2{word-spacing:113.232000pt;}
.wse5{word-spacing:123.744000pt;}
.wsb8{word-spacing:133.824000pt;}
.wsb7{word-spacing:134.736000pt;}
.wse2{word-spacing:137.557333pt;}
.wse1{word-spacing:143.018667pt;}
.wsb4{word-spacing:145.584000pt;}
.wsb5{word-spacing:146.496000pt;}
.wsd6{word-spacing:153.925333pt;}
.wsdd{word-spacing:224.672000pt;}
.wsa1{word-spacing:277.440000pt;}
.wsa0{word-spacing:300.960000pt;}
._8f{margin-left:-137.120762pt;}
._90{margin-left:-97.109333pt;}
._80{margin-left:-95.744000pt;}
._86{margin-left:-81.664000pt;}
._7e{margin-left:-76.639238pt;}
._26{margin-left:-40.256000pt;}
._28{margin-left:-39.363200pt;}
._8b{margin-left:-36.757333pt;}
._7f{margin-left:-34.389333pt;}
._88{margin-left:-26.176000pt;}
._87{margin-left:-22.314667pt;}
._89{margin-left:-20.906667pt;}
._83{margin-left:-15.466667pt;}
._84{margin-left:-10.880000pt;}
._82{margin-left:-9.109333pt;}
._c{margin-left:-8.192000pt;}
._6{margin-left:-6.976000pt;}
._99{margin-left:-6.048000pt;}
._2{margin-left:-5.120000pt;}
._3{margin-left:-3.520000pt;}
._4{margin-left:-2.560000pt;}
._1{margin-left:-1.216000pt;}
._0{width:1.120000pt;}
._7{width:2.112000pt;}
._5{width:3.008000pt;}
._9{width:4.416000pt;}
._8{width:5.440000pt;}
._e{width:6.400000pt;}
._f{width:8.064000pt;}
._a{width:9.600000pt;}
._11{width:11.008000pt;}
._b{width:12.096000pt;}
._10{width:13.248000pt;}
._43{width:14.300517pt;}
._6f{width:15.616000pt;}
._61{width:17.389333pt;}
._3b{width:18.928000pt;}
._d{width:20.753600pt;}
._55{width:22.297067pt;}
._3c{width:24.912000pt;}
._56{width:26.218667pt;}
._27{width:28.193067pt;}
._3d{width:30.864000pt;}
._29{width:32.176000pt;}
._79{width:33.338667pt;}
._5c{width:34.645333pt;}
._36{width:35.760000pt;}
._35{width:36.672000pt;}
._71{width:38.464000pt;}
._48{width:40.357333pt;}
._98{width:41.712000pt;}
._5a{width:43.203733pt;}
._4a{width:44.469333pt;}
._70{width:45.589333pt;}
._5b{width:46.933333pt;}
._3a{width:47.904000pt;}
._75{width:48.938667pt;}
._6e{width:49.877333pt;}
._47{width:51.509333pt;}
._51{width:54.266667pt;}
._8c{width:55.232000pt;}
._57{width:57.365333pt;}
._63{width:58.986667pt;}
._74{width:61.440000pt;}
._72{width:65.450667pt;}
._5f{width:68.949333pt;}
._85{width:70.037333pt;}
._60{width:74.581333pt;}
._73{width:77.013333pt;}
._44{width:78.997333pt;}
._39{width:80.832000pt;}
._50{width:81.722667pt;}
._64{width:83.216000pt;}
._49{width:85.866667pt;}
._68{width:87.098667pt;}
._91{width:88.954133pt;}
._8a{width:89.993905pt;}
._46{width:92.362667pt;}
._81{width:97.386667pt;}
._54{width:98.496000pt;}
._52{width:100.394667pt;}
._45{width:101.994667pt;}
._37{width:103.296000pt;}
._2f{width:104.592000pt;}
._67{width:113.754667pt;}
._2c{width:115.104000pt;}
._69{width:116.533333pt;}
._62{width:117.488000pt;}
._5d{width:119.317333pt;}
._38{width:121.968000pt;}
._2d{width:126.864000pt;}
._58{width:129.834667pt;}
._8e{width:131.077333pt;}
._6d{width:134.037333pt;}
._6b{width:135.354667pt;}
._65{width:136.938667pt;}
._4f{width:138.730667pt;}
._5e{width:141.184000pt;}
._66{width:142.101333pt;}
._53{width:145.365333pt;}
._1a{width:148.080000pt;}
._59{width:151.424000pt;}
._33{width:156.720000pt;}
._1c{width:159.840000pt;}
._1b{width:163.632000pt;}
._6c{width:166.709333pt;}
._4e{width:168.112000pt;}
._34{width:171.648000pt;}
._30{width:181.776000pt;}
._24{width:183.360000pt;}
._8d{width:184.746667pt;}
._2e{width:195.984000pt;}
._4d{width:202.906667pt;}
._31{width:205.440000pt;}
._2a{width:209.040000pt;}
._92{width:211.888000pt;}
._94{width:213.488000pt;}
._6a{width:214.666667pt;}
._4b{width:219.221333pt;}
._76{width:225.045333pt;}
._19{width:239.040000pt;}
._2b{width:242.064000pt;}
._96{width:244.161600pt;}
._4c{width:246.437333pt;}
._13{width:249.504000pt;}
._32{width:257.808000pt;}
._20{width:265.152000pt;}
._95{width:267.016000pt;}
._1f{width:270.528000pt;}
._1d{width:278.016000pt;}
._12{width:283.575467pt;}
._23{width:299.376000pt;}
._16{width:300.960000pt;}
._1e{width:304.704000pt;}
._97{width:320.496000pt;}
._15{width:340.848000pt;}
._42{width:390.432000pt;}
._41{width:394.032000pt;}
._3e{width:413.952000pt;}
._17{width:416.640000pt;}
._14{width:435.984000pt;}
._21{width:442.320000pt;}
._18{width:449.040000pt;}
._22{width:460.800000pt;}
._40{width:472.512000pt;}
._93{width:521.328000pt;}
._25{width:544.544000pt;}
._7b{width:585.946667pt;}
._7c{width:646.650667pt;}
._7d{width:677.861333pt;}
._78{width:698.656000pt;}
._7a{width:704.480000pt;}
._3f{width:741.072000pt;}
._77{width:834.586667pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:37.312000pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.045733pt;}
.y1c{bottom:33.046000pt;}
.y184{bottom:72.387333pt;}
.y1ae{bottom:81.042667pt;}
.y56{bottom:85.921200pt;}
.y183{bottom:87.054000pt;}
.y19e{bottom:87.258000pt;}
.y65{bottom:90.361200pt;}
.y1b{bottom:90.361333pt;}
.y40{bottom:98.596533pt;}
.y1d1{bottom:98.854267pt;}
.y1f1{bottom:100.042800pt;}
.yf0{bottom:101.921200pt;}
.y1ad{bottom:102.376000pt;}
.y152{bottom:104.355733pt;}
.y55{bottom:106.361200pt;}
.y19d{bottom:108.591333pt;}
.y64{bottom:113.038400pt;}
.y151{bottom:119.022400pt;}
.y1f0{bottom:119.242800pt;}
.y3f{bottom:119.929867pt;}
.y1d0{bottom:120.187600pt;}
.yef{bottom:122.361200pt;}
.y1ac{bottom:123.709333pt;}
.ybc{bottom:124.598400pt;}
.y3{bottom:128.587867pt;}
.yc4{bottom:129.038400pt;}
.y19c{bottom:129.924667pt;}
.y11e{bottom:130.344533pt;}
.y63{bottom:135.715600pt;}
.y1ef{bottom:136.576133pt;}
.y73{bottom:137.483600pt;}
.ybb{bottom:140.598400pt;}
.y3e{bottom:141.263200pt;}
.y1cf{bottom:141.520933pt;}
.y86{bottom:143.698800pt;}
.yd4{bottom:145.038400pt;}
.y1ab{bottom:145.042667pt;}
.y16b{bottom:145.374133pt;}
.y104{bottom:150.172000pt;}
.y19b{bottom:151.258000pt;}
.y11d{bottom:151.677867pt;}
.yc3{bottom:151.715600pt;}
.y150{bottom:155.914800pt;}
.y198{bottom:156.598400pt;}
.y72{bottom:158.816933pt;}
.y1b5{bottom:159.908800pt;}
.y16a{bottom:160.040800pt;}
.yba{bottom:161.038400pt;}
.y1ee{bottom:161.468533pt;}
.y3d{bottom:162.596533pt;}
.y1ce{bottom:162.854267pt;}
.yd3{bottom:163.275467pt;}
.y85{bottom:165.032133pt;}
.y1aa{bottom:166.376000pt;}
.ya1{bottom:167.467867pt;}
.y192{bottom:169.500133pt;}
.yf3{bottom:172.591333pt;}
.y197{bottom:172.598400pt;}
.y11c{bottom:173.011200pt;}
.yc2{bottom:174.392667pt;}
.yee{bottom:175.279600pt;}
.y1ed{bottom:178.801867pt;}
.y14f{bottom:179.473867pt;}
.y71{bottom:180.150267pt;}
.y1a{bottom:180.318400pt;}
.y1b4{bottom:181.242133pt;}
.yd2{bottom:183.715600pt;}
.y3c{bottom:183.929867pt;}
.y1b7{bottom:184.349733pt;}
.y103{bottom:186.172000pt;}
.y84{bottom:186.365467pt;}
.y62{bottom:187.709333pt;}
.y196{bottom:188.598400pt;}
.y137{bottom:188.607733pt;}
.ya0{bottom:188.801200pt;}
.y191{bottom:190.833467pt;}
.y1cd{bottom:191.746667pt;}
.yf2{bottom:193.924667pt;}
.y11b{bottom:194.344533pt;}
.y169{bottom:195.599867pt;}
.y1ec{bottom:196.135200pt;}
.yed{bottom:196.612933pt;}
.yc1{bottom:197.069867pt;}
.y1b6{bottom:200.349733pt;}
.y70{bottom:201.483600pt;}
.y19{bottom:201.651733pt;}
.y1b3{bottom:202.575467pt;}
.y14e{bottom:203.032933pt;}
.yb9{bottom:204.177200pt;}
.y3b{bottom:205.263200pt;}
.y102{bottom:205.951600pt;}
.y83{bottom:207.698800pt;}
.y195{bottom:209.038400pt;}
.y61{bottom:209.042667pt;}
.y136{bottom:209.941067pt;}
.y9f{bottom:210.134533pt;}
.y190{bottom:212.166800pt;}
.y1cc{bottom:213.080000pt;}
.y1eb{bottom:213.468533pt;}
.y154{bottom:213.645867pt;}
.yf1{bottom:215.258000pt;}
.yc0{bottom:215.307067pt;}
.y168{bottom:217.269067pt;}
.yec{bottom:217.946267pt;}
.y6f{bottom:222.816933pt;}
.y18{bottom:222.985067pt;}
.y1b2{bottom:223.908800pt;}
.y101{bottom:225.731067pt;}
.y14d{bottom:226.592000pt;}
.y3a{bottom:226.596533pt;}
.y11a{bottom:230.344533pt;}
.y60{bottom:230.376000pt;}
.y135{bottom:231.274400pt;}
.y9e{bottom:231.467867pt;}
.yb8{bottom:233.069600pt;}
.y1cb{bottom:234.413333pt;}
.ybf{bottom:235.747067pt;}
.y82{bottom:236.591333pt;}
.y1ea{bottom:238.360933pt;}
.y167{bottom:238.938400pt;}
.yeb{bottom:239.279600pt;}
.y6e{bottom:244.150267pt;}
.y17{bottom:244.318400pt;}
.y119{bottom:245.011200pt;}
.y1b1{bottom:245.242133pt;}
.y100{bottom:245.510533pt;}
.y54{bottom:247.929867pt;}
.y16d{bottom:248.102667pt;}
.y14c{bottom:250.151067pt;}
.y5f{bottom:251.709333pt;}
.y134{bottom:252.607733pt;}
.y9d{bottom:252.801200pt;}
.yb7{bottom:254.402933pt;}
.y39{bottom:255.488933pt;}
.y1e9{bottom:255.694267pt;}
.y1ca{bottom:255.746667pt;}
.y81{bottom:257.924667pt;}
.y18f{bottom:258.612933pt;}
.y166{bottom:260.607733pt;}
.yea{bottom:260.612933pt;}
.yd1{bottom:261.704133pt;}
.yff{bottom:265.290133pt;}
.y6d{bottom:265.483600pt;}
.y16{bottom:265.651733pt;}
.y1b0{bottom:266.575467pt;}
.y53{bottom:269.263200pt;}
.y1e8{bottom:273.027600pt;}
.y5e{bottom:273.042667pt;}
.y18e{bottom:273.279600pt;}
.y14b{bottom:273.710133pt;}
.y133{bottom:273.941067pt;}
.y9c{bottom:274.134533pt;}
.y118{bottom:274.344533pt;}
.yb6{bottom:275.736267pt;}
.y38{bottom:276.822267pt;}
.y1c9{bottom:277.080000pt;}
.y80{bottom:279.258000pt;}
.y165{bottom:282.276933pt;}
.yd0{bottom:283.037467pt;}
.yfe{bottom:285.069600pt;}
.y6c{bottom:286.816933pt;}
.y15{bottom:286.985067pt;}
.y1af{bottom:287.908800pt;}
.ye9{bottom:289.505333pt;}
.y52{bottom:290.596533pt;}
.y208{bottom:292.371333pt;}
.y117{bottom:294.124000pt;}
.y5d{bottom:294.376000pt;}
.y132{bottom:295.274400pt;}
.y9b{bottom:295.467867pt;}
.yb5{bottom:297.069600pt;}
.y14a{bottom:297.269067pt;}
.y1e7{bottom:297.920000pt;}
.y37{bottom:298.155600pt;}
.y1c8{bottom:298.413333pt;}
.y7f{bottom:300.591333pt;}
.y1a9{bottom:301.935067pt;}
.y164{bottom:303.946267pt;}
.ycf{bottom:304.370800pt;}
.yfd{bottom:304.849200pt;}
.y18d{bottom:306.392533pt;}
.y6b{bottom:308.150267pt;}
.y14{bottom:308.318400pt;}
.ye8{bottom:310.838667pt;}
.y194{bottom:311.929867pt;}
.y207{bottom:313.704667pt;}
.y116{bottom:313.903600pt;}
.y1e6{bottom:315.253333pt;}
.y51{bottom:315.709333pt;}
.y9a{bottom:316.801200pt;}
.yb4{bottom:318.402933pt;}
.y36{bottom:319.488933pt;}
.y1c7{bottom:319.746667pt;}
.y149{bottom:320.828133pt;}
.y7e{bottom:321.924667pt;}
.y1a8{bottom:323.268400pt;}
.y131{bottom:324.166800pt;}
.yfc{bottom:324.628667pt;}
.y163{bottom:325.615600pt;}
.yce{bottom:325.704133pt;}
.y18c{bottom:326.172000pt;}
.ybe{bottom:329.483600pt;}
.y13{bottom:329.651733pt;}
.y206{bottom:331.038000pt;}
.ye7{bottom:332.172000pt;}
.y193{bottom:333.263200pt;}
.y115{bottom:333.683067pt;}
.y5c{bottom:337.042667pt;}
.y99{bottom:338.134533pt;}
.yb3{bottom:339.736267pt;}
.y1e5{bottom:340.145733pt;}
.y182{bottom:340.408267pt;}
.y35{bottom:340.822267pt;}
.y1c6{bottom:341.080000pt;}
.y7d{bottom:343.258000pt;}
.y148{bottom:344.387200pt;}
.yfb{bottom:344.408267pt;}
.y1a7{bottom:344.601733pt;}
.y130{bottom:345.500133pt;}
.y18b{bottom:345.951600pt;}
.y162{bottom:347.284933pt;}
.ybd{bottom:350.816933pt;}
.y12{bottom:350.985067pt;}
.y114{bottom:353.462667pt;}
.ye6{bottom:353.505333pt;}
.ycd{bottom:354.596533pt;}
.y205{bottom:355.930400pt;}
.y1e4{bottom:357.479067pt;}
.y50{bottom:358.376000pt;}
.y98{bottom:359.467867pt;}
.yb2{bottom:361.069600pt;}
.y181{bottom:361.741600pt;}
.y34{bottom:362.155600pt;}
.y1c5{bottom:362.413333pt;}
.y7c{bottom:364.591333pt;}
.y1a6{bottom:365.935067pt;}
.y12f{bottom:366.833467pt;}
.y147{bottom:367.946267pt;}
.yfa{bottom:367.967333pt;}
.y161{bottom:368.954133pt;}
.y18a{bottom:369.510533pt;}
.y12a{bottom:372.150267pt;}
.y11{bottom:372.318400pt;}
.y113{bottom:373.242133pt;}
.y204{bottom:373.263733pt;}
.ye5{bottom:374.838667pt;}
.ycc{bottom:375.929867pt;}
.y4f{bottom:379.709333pt;}
.y1e3{bottom:382.371333pt;}
.yb1{bottom:382.402933pt;}
.y33{bottom:383.488933pt;}
.y1c4{bottom:383.746667pt;}
.yf9{bottom:383.967333pt;}
.y189{bottom:385.510533pt;}
.y7b{bottom:385.924667pt;}
.y1a5{bottom:387.268400pt;}
.y12e{bottom:388.166800pt;}
.y97{bottom:388.360267pt;}
.y160{bottom:390.623467pt;}
.y146{bottom:391.505333pt;}
.y112{bottom:393.021733pt;}
.y129{bottom:393.483600pt;}
.y10{bottom:393.651733pt;}
.ycb{bottom:397.263200pt;}
.y203{bottom:398.156133pt;}
.y1e2{bottom:399.704667pt;}
.y4e{bottom:401.042667pt;}
.yb0{bottom:403.736267pt;}
.y180{bottom:404.408267pt;}
.y32{bottom:404.822267pt;}
.y1c3{bottom:405.080000pt;}
.y7a{bottom:407.257867pt;}
.y1a4{bottom:408.601733pt;}
.y96{bottom:409.693600pt;}
.y15f{bottom:412.292667pt;}
.y111{bottom:412.801200pt;}
.y128{bottom:414.816933pt;}
.yf{bottom:414.985067pt;}
.y145{bottom:415.064400pt;}
.y202{bottom:415.489467pt;}
.y1e1{bottom:417.038133pt;}
.yca{bottom:418.596533pt;}
.ye4{bottom:418.849200pt;}
.y17f{bottom:419.074933pt;}
.y4d{bottom:422.376000pt;}
.yaf{bottom:425.069600pt;}
.y31{bottom:426.155600pt;}
.y1c2{bottom:426.413333pt;}
.yf8{bottom:426.634000pt;}
.y188{bottom:428.177200pt;}
.y79{bottom:428.591200pt;}
.y5b{bottom:429.935067pt;}
.y95{bottom:431.026933pt;}
.y12d{bottom:431.725867pt;}
.y110{bottom:432.580667pt;}
.ye3{bottom:433.515867pt;}
.y15e{bottom:433.962000pt;}
.y127{bottom:436.150267pt;}
.y1a3{bottom:437.494133pt;}
.y144{bottom:438.623467pt;}
.yc9{bottom:439.929867pt;}
.y201{bottom:440.381867pt;}
.y1e0{bottom:441.930400pt;}
.y4c{bottom:443.709333pt;}
.ye{bottom:443.877467pt;}
.yae{bottom:446.402933pt;}
.y30{bottom:447.488933pt;}
.y12c{bottom:447.725867pt;}
.y1c1{bottom:447.746667pt;}
.yf7{bottom:447.967333pt;}
.y187{bottom:449.510533pt;}
.y5a{bottom:451.268400pt;}
.y94{bottom:452.360267pt;}
.y15d{bottom:455.631333pt;}
.y17e{bottom:455.967333pt;}
.y126{bottom:457.483600pt;}
.y200{bottom:457.715200pt;}
.y1a2{bottom:458.827467pt;}
.y1df{bottom:459.263733pt;}
.y78{bottom:461.263200pt;}
.y143{bottom:462.182533pt;}
.y153{bottom:462.779733pt;}
.ye2{bottom:463.300667pt;}
.y12b{bottom:463.725867pt;}
.y6a{bottom:465.042667pt;}
.yd{bottom:465.210800pt;}
.yad{bottom:467.736267pt;}
.y2f{bottom:468.822267pt;}
.y10f{bottom:472.139867pt;}
.y4b{bottom:472.601733pt;}
.y93{bottom:473.693600pt;}
.y17d{bottom:474.413600pt;}
.y1ff{bottom:475.048533pt;}
.y1c0{bottom:476.639067pt;}
.y16c{bottom:476.890000pt;}
.y15c{bottom:477.300667pt;}
.y1a1{bottom:480.160800pt;}
.y77{bottom:482.596533pt;}
.ye1{bottom:483.080133pt;}
.y1de{bottom:484.156133pt;}
.y142{bottom:485.741600pt;}
.y69{bottom:486.376000pt;}
.yc{bottom:486.544133pt;}
.y125{bottom:490.155600pt;}
.y17c{bottom:491.526400pt;}
.y10e{bottom:491.919333pt;}
.y186{bottom:493.069600pt;}
.y4a{bottom:493.935067pt;}
.y92{bottom:495.026933pt;}
.yac{bottom:496.628533pt;}
.y2e{bottom:497.714533pt;}
.y1bf{bottom:497.972400pt;}
.y15b{bottom:498.969867pt;}
.y1fe{bottom:499.940933pt;}
.y1dd{bottom:501.489467pt;}
.y1a0{bottom:501.494133pt;}
.ye0{bottom:502.193067pt;}
.y76{bottom:503.929867pt;}
.yf6{bottom:505.752000pt;}
.y68{bottom:507.709333pt;}
.y185{bottom:507.736267pt;}
.yb{bottom:507.877467pt;}
.y17b{bottom:508.639333pt;}
.y141{bottom:509.300667pt;}
.y124{bottom:511.488933pt;}
.y10d{bottom:511.698933pt;}
.y49{bottom:515.268400pt;}
.y91{bottom:516.360267pt;}
.y1fd{bottom:517.274267pt;}
.yab{bottom:517.961867pt;}
.y2d{bottom:519.047867pt;}
.y1be{bottom:519.305733pt;}
.yf5{bottom:520.418667pt;}
.y15a{bottom:520.639200pt;}
.ydf{bottom:521.305867pt;}
.y19f{bottom:522.827467pt;}
.y75{bottom:525.263200pt;}
.y17a{bottom:525.752133pt;}
.y1dc{bottom:526.381867pt;}
.y67{bottom:529.042667pt;}
.ya{bottom:529.210800pt;}
.y10c{bottom:531.478400pt;}
.y123{bottom:532.822267pt;}
.y140{bottom:532.859733pt;}
.y1fc{bottom:534.607600pt;}
.y48{bottom:536.601733pt;}
.yaa{bottom:539.295200pt;}
.y2c{bottom:540.381200pt;}
.yde{bottom:540.418667pt;}
.y1bd{bottom:540.639067pt;}
.y159{bottom:542.308533pt;}
.y179{bottom:542.864933pt;}
.yc8{bottom:544.160800pt;}
.y90{bottom:545.252667pt;}
.y74{bottom:546.596533pt;}
.y19a{bottom:550.376000pt;}
.y9{bottom:550.544133pt;}
.y10b{bottom:551.257867pt;}
.y1db{bottom:551.274267pt;}
.y122{bottom:554.155600pt;}
.y13f{bottom:556.418667pt;}
.y47{bottom:557.935067pt;}
.y1fb{bottom:559.500000pt;}
.ydd{bottom:559.531600pt;}
.y178{bottom:559.977867pt;}
.ya9{bottom:560.628533pt;}
.y2b{bottom:561.714533pt;}
.y1bc{bottom:561.972400pt;}
.y158{bottom:563.977733pt;}
.yc7{bottom:565.494133pt;}
.y8f{bottom:566.586000pt;}
.y1da{bottom:568.607600pt;}
.y10a{bottom:571.037467pt;}
.y199{bottom:571.709333pt;}
.y121{bottom:575.488933pt;}
.y8{bottom:575.656933pt;}
.y1fa{bottom:576.833333pt;}
.y177{bottom:577.090800pt;}
.ydc{bottom:578.644400pt;}
.y46{bottom:579.268400pt;}
.y13e{bottom:579.977733pt;}
.ya8{bottom:581.961867pt;}
.y2a{bottom:583.047867pt;}
.y1bb{bottom:583.305733pt;}
.y157{bottom:585.647067pt;}
.yc6{bottom:586.827467pt;}
.y8e{bottom:587.919333pt;}
.y109{bottom:590.816933pt;}
.y1d9{bottom:593.500000pt;}
.y1f9{bottom:594.166667pt;}
.y176{bottom:595.536933pt;}
.y120{bottom:596.822267pt;}
.ydb{bottom:597.757333pt;}
.y45{bottom:600.601733pt;}
.y13d{bottom:603.536800pt;}
.y29{bottom:604.381200pt;}
.y1ba{bottom:604.639067pt;}
.y156{bottom:607.316400pt;}
.yc5{bottom:608.160800pt;}
.y8d{bottom:609.252667pt;}
.y108{bottom:610.596533pt;}
.y1d8{bottom:610.833333pt;}
.ya7{bottom:610.854267pt;}
.y175{bottom:613.983067pt;}
.y20{bottom:614.376000pt;}
.yda{bottom:616.870133pt;}
.y11f{bottom:618.155600pt;}
.y7{bottom:618.323600pt;}
.y1f8{bottom:619.059067pt;}
.y59{bottom:621.935067pt;}
.y28{bottom:625.714533pt;}
.y1b9{bottom:625.972400pt;}
.y13c{bottom:627.095867pt;}
.y155{bottom:628.985733pt;}
.y44{bottom:629.494133pt;}
.y107{bottom:630.376000pt;}
.y8c{bottom:630.586000pt;}
.y1f{bottom:635.709333pt;}
.y1d7{bottom:635.725733pt;}
.yd9{bottom:635.983067pt;}
.y174{bottom:636.208800pt;}
.y1f7{bottom:636.392400pt;}
.ya6{bottom:639.746667pt;}
.y6{bottom:642.323600pt;}
.y58{bottom:643.268400pt;}
.y27{bottom:647.047867pt;}
.y1b8{bottom:647.305733pt;}
.y106{bottom:650.155600pt;}
.y13b{bottom:650.654933pt;}
.y43{bottom:650.827467pt;}
.y8b{bottom:651.919333pt;}
.y173{bottom:651.988400pt;}
.y1d6{bottom:653.059067pt;}
.y1f6{bottom:653.725733pt;}
.yd8{bottom:655.095867pt;}
.y13a{bottom:662.654933pt;}
.y172{bottom:662.655067pt;}
.y57{bottom:664.601733pt;}
.y5{bottom:666.323600pt;}
.y26{bottom:668.381200pt;}
.ya5{bottom:668.639067pt;}
.y105{bottom:669.935067pt;}
.y1d5{bottom:670.392400pt;}
.y1e{bottom:672.160800pt;}
.y8a{bottom:673.252667pt;}
.y139{bottom:673.321600pt;}
.y171{bottom:673.321733pt;}
.y1f5{bottom:678.618133pt;}
.yd7{bottom:678.654933pt;}
.y138{bottom:683.988267pt;}
.y170{bottom:683.988400pt;}
.y66{bottom:685.935067pt;}
.y25{bottom:689.714533pt;}
.ya4{bottom:689.972400pt;}
.y4{bottom:690.323600pt;}
.y1d{bottom:693.494133pt;}
.y89{bottom:694.586000pt;}
.yd6{bottom:694.654933pt;}
.y1d4{bottom:695.284800pt;}
.y1f4{bottom:695.951467pt;}
.y24{bottom:711.047867pt;}
.ya3{bottom:711.305733pt;}
.y1d3{bottom:712.618133pt;}
.y1f3{bottom:713.284800pt;}
.y42{bottom:714.827467pt;}
.y88{bottom:715.919333pt;}
.yf4{bottom:715.988267pt;}
.y16f{bottom:715.988400pt;}
.y23{bottom:736.160800pt;}
.ya2{bottom:736.418667pt;}
.y87{bottom:737.252667pt;}
.yd5{bottom:737.321600pt;}
.y16e{bottom:737.321733pt;}
.y1d2{bottom:737.510533pt;}
.y1f2{bottom:738.177200pt;}
.y22{bottom:801.060400pt;}
.y2{bottom:804.025200pt;}
.y41{bottom:809.393733pt;}
.y21{bottom:817.727067pt;}
.h15{height:25.393229pt;}
.h17{height:25.557292pt;}
.h18{height:29.020833pt;}
.hd{height:29.036342pt;}
.ha{height:29.036875pt;}
.hf{height:32.648438pt;}
.h14{height:32.757812pt;}
.h12{height:32.859375pt;}
.h16{height:37.437500pt;}
.h2{height:39.333333pt;}
.h13{height:39.903646pt;}
.h11{height:40.161458pt;}
.h10{height:42.117188pt;}
.hc{height:43.531250pt;}
.h8{height:43.812500pt;}
.h4{height:46.796875pt;}
.hb{height:49.166667pt;}
.he{height:51.476562pt;}
.h9{height:56.156250pt;}
.h6{height:59.536458pt;}
.h3{height:63.789062pt;}
.h7{height:68.833333pt;}
.h5{height:69.489583pt;}
.h0{height:850.393333pt;}
.h1{height:850.666667pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:30.624667pt;}
.x2{left:52.913333pt;}
.xb{left:56.542267pt;}
.x3{left:62.016800pt;}
.x19{left:70.206400pt;}
.xa{left:75.590533pt;}
.x10{left:92.360400pt;}
.x4{left:96.773600pt;}
.x1a{left:101.634400pt;}
.xc{left:102.790933pt;}
.xe{left:106.719067pt;}
.x12{left:109.866533pt;}
.x1b{left:112.981733pt;}
.x1c{left:117.729867pt;}
.xf{left:122.764267pt;}
.xd{left:124.597600pt;}
.x15{left:126.026400pt;}
.x5{left:139.132933pt;}
.x16{left:143.632800pt;}
.x17{left:151.356400pt;}
.x18{left:156.040000pt;}
.x11{left:195.736000pt;}
.x1d{left:223.808933pt;}
.x13{left:233.645200pt;}
.x6{left:248.881333pt;}
.x14{left:250.582667pt;}
.x7{left:426.684267pt;}
.x8{left:428.699867pt;}
.x9{left:472.522800pt;}
}




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