
    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_a74beede3976d48bb14d5606.woff')format("woff");}.ff1{font-family:ff1;line-height:1.159000;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_d56aef14ddc9bf6e54790708.woff')format("woff");}.ff2{font-family:ff2;line-height:1.145000;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_1d2a8ce8b1bc9018fa1b6931.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_a2e0c3303d86a60591d6819d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_626ae0ef544e3350cc79f97b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.148000;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_02ffeab43c86651a770ebd98.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_10165c1cc6bc0b4ab955abad.woff')format("woff");}.ff7{font-family:ff7;line-height:1.683105;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_496d8ded08234c3ac90b90f4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_c45dfdc8227400c8274e6961.woff')format("woff");}.ff9{font-family:ff9;line-height:1.134636;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_fde45d5acddba21ee076628d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_076d611e4dabde203caeb85c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_43d00879f7fe6a6549cdca89.woff')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-41.772000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:504.000000px;}
.ls2c{letter-spacing:-33.300000px;}
.ls2d{letter-spacing:-29.700000px;}
.ls31{letter-spacing:-4.074840px;}
.ls24{letter-spacing:-3.024000px;}
.lse{letter-spacing:-2.640000px;}
.ls18{letter-spacing:-1.716000px;}
.ls12{letter-spacing:-1.680000px;}
.ls25{letter-spacing:-1.674000px;}
.ls16{letter-spacing:-1.584000px;}
.ls1e{letter-spacing:-1.518000px;}
.ls10{letter-spacing:-1.320000px;}
.ls11{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-1.188000px;}
.lsd{letter-spacing:-1.056000px;}
.ls7{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.924000px;}
.ls1d{letter-spacing:-0.858000px;}
.ls26{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.726000px;}
.ls2f{letter-spacing:-0.674730px;}
.lsa{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.528000px;}
.ls17{letter-spacing:-0.462000px;}
.ls3{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.330000px;}
.ls30{letter-spacing:-0.299880px;}
.ls28{letter-spacing:-0.294000px;}
.ls4{letter-spacing:-0.264000px;}
.ls2e{letter-spacing:-0.224910px;}
.ls19{letter-spacing:-0.198000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001200px;}
.ls6{letter-spacing:0.066000px;}
.ls1f{letter-spacing:0.132000px;}
.ls27{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.198000px;}
.ls23{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.330000px;}
.ls14{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.792000px;}
.ls29{letter-spacing:1.018680px;}
.ls22{letter-spacing:2.106000px;}
.ls1b{letter-spacing:4.686000px;}
.ls32{letter-spacing:5.821200px;}
.ls21{letter-spacing:7.560000px;}
.ls2b{letter-spacing:19.200000px;}
.ls2a{letter-spacing:21.600000px;}
.lsf{letter-spacing:22.824000px;}
.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;}
}
.ws1{word-spacing:-43.326000px;}
.ws2{word-spacing:-28.320000px;}
.wsfa{word-spacing:-26.795160px;}
.wsf8{word-spacing:-18.517590px;}
.wsf9{word-spacing:-18.442620px;}
.ws0{word-spacing:-16.830000px;}
.ws5f{word-spacing:-16.302000px;}
.ws5e{word-spacing:-15.906000px;}
.ws5d{word-spacing:-15.774000px;}
.wsb2{word-spacing:-15.606000px;}
.wsb4{word-spacing:-13.500000px;}
.wsb5{word-spacing:-11.232000px;}
.wsb3{word-spacing:-10.476000px;}
.ws50{word-spacing:-7.986000px;}
.wse4{word-spacing:-7.560000px;}
.ws65{word-spacing:-6.732000px;}
.ws83{word-spacing:-6.204000px;}
.wsb0{word-spacing:-4.686000px;}
.ws36{word-spacing:-4.488000px;}
.ws75{word-spacing:-4.092000px;}
.ws66{word-spacing:-3.168000px;}
.ws11{word-spacing:-2.970000px;}
.ws8c{word-spacing:-2.904000px;}
.ws82{word-spacing:-2.838000px;}
.wsde{word-spacing:-2.772000px;}
.ws2a{word-spacing:-2.706000px;}
.ws31{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.716000px;}
.wsc9{word-spacing:-1.650000px;}
.wsc8{word-spacing:-1.584000px;}
.wsd8{word-spacing:-1.452000px;}
.ws80{word-spacing:-1.254000px;}
.ws40{word-spacing:-1.188000px;}
.ws9f{word-spacing:-1.056000px;}
.ws38{word-spacing:-0.990000px;}
.wsd2{word-spacing:-0.924000px;}
.wsf5{word-spacing:-0.900000px;}
.wse2{word-spacing:-0.792000px;}
.wsc1{word-spacing:-0.726000px;}
.wsa1{word-spacing:-0.660000px;}
.wsfc{word-spacing:-0.493920px;}
.wsd6{word-spacing:-0.462000px;}
.ws37{word-spacing:-0.396000px;}
.wsd5{word-spacing:-0.330000px;}
.ws20{word-spacing:-0.264000px;}
.wsfe{word-spacing:-0.211680px;}
.ws41{word-spacing:-0.198000px;}
.wsfd{word-spacing:-0.194040px;}
.ws12{word-spacing:-0.132000px;}
.ws3f{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws84{word-spacing:0.066000px;}
.ws14{word-spacing:0.198000px;}
.ws5b{word-spacing:0.216000px;}
.ws64{word-spacing:0.264000px;}
.wsf4{word-spacing:0.294000px;}
.ws8f{word-spacing:0.330000px;}
.wsfb{word-spacing:0.374850px;}
.ws4{word-spacing:0.396000px;}
.ws8b{word-spacing:0.528000px;}
.wsb1{word-spacing:0.540000px;}
.wsa5{word-spacing:0.594000px;}
.ws2f{word-spacing:0.660000px;}
.wse{word-spacing:0.792000px;}
.wsbe{word-spacing:0.858000px;}
.ws25{word-spacing:0.990000px;}
.ws54{word-spacing:1.056000px;}
.ws3b{word-spacing:1.122000px;}
.ws39{word-spacing:1.188000px;}
.ws5c{word-spacing:1.200000px;}
.ws3a{word-spacing:1.254000px;}
.ws18{word-spacing:1.320000px;}
.ws2e{word-spacing:1.386000px;}
.ws1e{word-spacing:1.452000px;}
.ws23{word-spacing:1.518000px;}
.wsec{word-spacing:1.674000px;}
.wsd4{word-spacing:1.914000px;}
.ws28{word-spacing:1.980000px;}
.wscf{word-spacing:2.046000px;}
.wsf3{word-spacing:2.106000px;}
.ws17{word-spacing:2.178000px;}
.ws1f{word-spacing:2.244000px;}
.wsf2{word-spacing:2.268000px;}
.wsa6{word-spacing:2.310000px;}
.wsee{word-spacing:2.322000px;}
.wsd3{word-spacing:2.376000px;}
.wsed{word-spacing:2.430000px;}
.ws13{word-spacing:2.442000px;}
.ws8e{word-spacing:2.508000px;}
.wse1{word-spacing:2.574000px;}
.ws55{word-spacing:2.640000px;}
.wse5{word-spacing:2.808000px;}
.ws34{word-spacing:2.838000px;}
.ws1b{word-spacing:2.904000px;}
.wsad{word-spacing:2.970000px;}
.wsdb{word-spacing:3.036000px;}
.ws49{word-spacing:3.234000px;}
.wsf{word-spacing:3.366000px;}
.wsf1{word-spacing:3.456000px;}
.wsdd{word-spacing:3.498000px;}
.wsd{word-spacing:3.564000px;}
.ws33{word-spacing:3.696000px;}
.wscb{word-spacing:3.828000px;}
.wsca{word-spacing:3.894000px;}
.wse9{word-spacing:4.050000px;}
.wsa0{word-spacing:4.092000px;}
.wsa8{word-spacing:4.158000px;}
.ws10{word-spacing:4.224000px;}
.ws78{word-spacing:4.356000px;}
.ws29{word-spacing:4.422000px;}
.wsab{word-spacing:4.686000px;}
.wsf0{word-spacing:4.698000px;}
.ws91{word-spacing:4.818000px;}
.wsaf{word-spacing:4.950000px;}
.wsd1{word-spacing:5.082000px;}
.wsb8{word-spacing:5.214000px;}
.wsa3{word-spacing:5.280000px;}
.ws9c{word-spacing:5.346000px;}
.ws95{word-spacing:5.412000px;}
.ws98{word-spacing:5.742000px;}
.wsc2{word-spacing:5.808000px;}
.ws89{word-spacing:6.006000px;}
.wsb6{word-spacing:6.072000px;}
.wse7{word-spacing:6.156000px;}
.ws3c{word-spacing:6.204000px;}
.ws76{word-spacing:6.468000px;}
.ws6a{word-spacing:6.534000px;}
.ws35{word-spacing:6.666000px;}
.wse3{word-spacing:6.696000px;}
.ws1d{word-spacing:6.732000px;}
.wsd9{word-spacing:6.930000px;}
.ws30{word-spacing:6.996000px;}
.ws26{word-spacing:7.062000px;}
.wsbd{word-spacing:7.194000px;}
.ws7f{word-spacing:7.260000px;}
.wsc0{word-spacing:7.458000px;}
.wsae{word-spacing:7.524000px;}
.ws5a{word-spacing:7.590000px;}
.wsbc{word-spacing:7.920000px;}
.wsda{word-spacing:8.118000px;}
.ws16{word-spacing:8.184000px;}
.wsce{word-spacing:8.250000px;}
.wsa{word-spacing:8.514000px;}
.wse0{word-spacing:8.646000px;}
.ws8d{word-spacing:8.712000px;}
.wsc6{word-spacing:8.844000px;}
.wsc3{word-spacing:8.910000px;}
.ws32{word-spacing:9.042000px;}
.ws6c{word-spacing:9.372000px;}
.ws73{word-spacing:9.570000px;}
.ws1c{word-spacing:9.636000px;}
.ws1a{word-spacing:9.702000px;}
.wse6{word-spacing:9.936000px;}
.wsc4{word-spacing:10.098000px;}
.ws97{word-spacing:10.494000px;}
.wsa7{word-spacing:10.758000px;}
.ws58{word-spacing:11.154000px;}
.ws92{word-spacing:11.286000px;}
.ws79{word-spacing:11.352000px;}
.wscd{word-spacing:11.550000px;}
.ws77{word-spacing:11.946000px;}
.wsb{word-spacing:12.012000px;}
.ws3e{word-spacing:12.276000px;}
.ws2c{word-spacing:12.408000px;}
.wsef{word-spacing:12.528000px;}
.ws21{word-spacing:12.540000px;}
.wsdf{word-spacing:12.606000px;}
.wsea{word-spacing:12.744000px;}
.wsac{word-spacing:12.870000px;}
.wsd0{word-spacing:13.068000px;}
.wscc{word-spacing:13.134000px;}
.ws9a{word-spacing:13.266000px;}
.wsbf{word-spacing:13.728000px;}
.ws90{word-spacing:13.794000px;}
.wsd7{word-spacing:13.926000px;}
.ws24{word-spacing:14.586000px;}
.ws68{word-spacing:14.850000px;}
.ws7e{word-spacing:14.916000px;}
.ws4b{word-spacing:14.982000px;}
.ws7{word-spacing:15.048000px;}
.wsba{word-spacing:15.114000px;}
.wse8{word-spacing:15.174000px;}
.ws99{word-spacing:15.246000px;}
.ws22{word-spacing:15.312000px;}
.ws27{word-spacing:15.378000px;}
.wsb9{word-spacing:15.906000px;}
.wsb7{word-spacing:15.972000px;}
.ws15{word-spacing:16.104000px;}
.ws6d{word-spacing:16.170000px;}
.ws3d{word-spacing:16.236000px;}
.ws19{word-spacing:16.500000px;}
.ws9d{word-spacing:16.566000px;}
.wsbb{word-spacing:16.698000px;}
.ws69{word-spacing:17.028000px;}
.ws9b{word-spacing:17.226000px;}
.wsa2{word-spacing:17.688000px;}
.ws9e{word-spacing:17.820000px;}
.ws70{word-spacing:17.886000px;}
.ws6{word-spacing:18.216000px;}
.ws63{word-spacing:18.282000px;}
.ws56{word-spacing:18.348000px;}
.wsa9{word-spacing:18.480000px;}
.wsdc{word-spacing:19.008000px;}
.ws5{word-spacing:19.470000px;}
.ws51{word-spacing:20.196000px;}
.ws4c{word-spacing:20.526000px;}
.wseb{word-spacing:21.276000px;}
.ws57{word-spacing:21.780000px;}
.ws6f{word-spacing:21.912000px;}
.ws47{word-spacing:23.100000px;}
.ws93{word-spacing:23.232000px;}
.ws52{word-spacing:23.826000px;}
.ws67{word-spacing:23.958000px;}
.ws94{word-spacing:24.486000px;}
.wsa4{word-spacing:25.278000px;}
.wsc7{word-spacing:25.872000px;}
.ws59{word-spacing:26.202000px;}
.ws48{word-spacing:26.532000px;}
.ws6b{word-spacing:26.598000px;}
.ws71{word-spacing:27.588000px;}
.wsf7{word-spacing:28.800000px;}
.ws96{word-spacing:29.106000px;}
.ws2d{word-spacing:29.634000px;}
.ws4a{word-spacing:30.690000px;}
.ws87{word-spacing:31.350000px;}
.wsc5{word-spacing:32.142000px;}
.ws4d{word-spacing:32.340000px;}
.wsf6{word-spacing:32.400000px;}
.ws53{word-spacing:32.406000px;}
.wsc{word-spacing:32.604000px;}
.ws7d{word-spacing:34.122000px;}
.ws8a{word-spacing:34.320000px;}
.ws4e{word-spacing:35.046000px;}
.ws88{word-spacing:35.178000px;}
.ws46{word-spacing:35.244000px;}
.ws43{word-spacing:36.366000px;}
.ws7a{word-spacing:37.620000px;}
.ws61{word-spacing:39.138000px;}
.ws9{word-spacing:39.204000px;}
.ws2b{word-spacing:42.966000px;}
.ws81{word-spacing:43.164000px;}
.ws6e{word-spacing:43.296000px;}
.ws45{word-spacing:43.692000px;}
.ws72{word-spacing:47.916000px;}
.ws42{word-spacing:49.698000px;}
.ws60{word-spacing:53.064000px;}
.ws62{word-spacing:53.922000px;}
.ws85{word-spacing:57.486000px;}
.ws7c{word-spacing:60.126000px;}
.ws44{word-spacing:62.568000px;}
.ws74{word-spacing:67.188000px;}
.ws86{word-spacing:71.082000px;}
.ws4f{word-spacing:82.170000px;}
.ws7b{word-spacing:82.698000px;}
.ws8{word-spacing:95.832000px;}
._1f{margin-left:-2842.569600px;}
._1e{margin-left:-41.401200px;}
._1b{margin-left:-10.176600px;}
._1c{margin-left:-8.670000px;}
._1a{margin-left:-7.560000px;}
._19{margin-left:-6.523200px;}
._7{margin-left:-5.181000px;}
._f{margin-left:-4.141200px;}
._5{margin-left:-2.277000px;}
._3{margin-left:-1.254000px;}
._0{width:1.452000px;}
._2{width:2.613600px;}
._4{width:3.880800px;}
._11{width:4.897200px;}
._c{width:6.415200px;}
._8{width:7.880400px;}
._d{width:9.398400px;}
._b{width:10.659000px;}
._a{width:12.210000px;}
._6{width:13.807200px;}
._9{width:15.054600px;}
._1d{width:16.548000px;}
._16{width:17.661600px;}
._17{width:19.377600px;}
._e{width:20.598600px;}
._15{width:21.766800px;}
._14{width:22.895400px;}
._12{width:25.700400px;}
._18{width:27.977400px;}
._13{width:41.157600px;}
._1{width:48.655200px;}
._10{width:1046.185200px;}
.fc5{color:transparent;}
.fc2{color:rgb(136,0,70);}
.fc1{color:rgb(170,53,117);}
.fc4{color:rgb(180,180,180);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:24.000000px;}
.fsb{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs11{font-size:48.510000px;}
.fs13{font-size:52.920000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs10{font-size:74.970000px;}
.fse{font-size:96.000000px;}
.fsd{font-size:108.000000px;}
.fs9{font-size:120.000000px;}
.fs12{font-size:123.480000px;}
.fs6{font-size:144.000000px;}
.fs4{font-size:174.000000px;}
.fs3{font-size:186.000000px;}
.fs5{font-size:216.000000px;}
.fs2{font-size:738.000000px;}
.fsf{font-size:900.000000px;}
.y0{bottom:0.000000px;}
.y176{bottom:2.891700px;}
.y175{bottom:2.892000px;}
.y170{bottom:3.148200px;}
.y16f{bottom:3.148500px;}
.y16d{bottom:4.274700px;}
.y16c{bottom:4.275000px;}
.y172{bottom:4.498200px;}
.y173{bottom:4.498500px;}
.y168{bottom:7.500000px;}
.y16a{bottom:71.196600px;}
.y2{bottom:79.522200px;}
.y77{bottom:79.522350px;}
.y1{bottom:79.837200px;}
.y169{bottom:98.196600px;}
.ye8{bottom:118.804500px;}
.y68{bottom:118.876500px;}
.y13c{bottom:118.947000px;}
.yb6{bottom:119.019000px;}
.y42{bottom:119.025000px;}
.y29{bottom:119.124000px;}
.y113{bottom:119.128500px;}
.y163{bottom:119.148000px;}
.y96{bottom:119.151000px;}
.ye7{bottom:139.809000px;}
.y67{bottom:139.881000px;}
.y13b{bottom:139.951500px;}
.yb5{bottom:140.023500px;}
.y41{bottom:140.029500px;}
.y28{bottom:140.128500px;}
.y112{bottom:140.133000px;}
.y162{bottom:140.154000px;}
.y95{bottom:140.155500px;}
.ye6{bottom:160.813500px;}
.y66{bottom:160.885500px;}
.y13a{bottom:160.956000px;}
.yb4{bottom:161.028000px;}
.y40{bottom:161.034000px;}
.y27{bottom:161.133000px;}
.y111{bottom:161.137500px;}
.y94{bottom:161.160000px;}
.ye5{bottom:181.818000px;}
.y65{bottom:181.890000px;}
.y139{bottom:181.960500px;}
.yb3{bottom:182.032500px;}
.y3f{bottom:182.038500px;}
.y26{bottom:182.137500px;}
.y110{bottom:182.142000px;}
.y93{bottom:182.164500px;}
.y161{bottom:182.166000px;}
.ye4{bottom:202.822500px;}
.y64{bottom:202.894500px;}
.y138{bottom:202.965000px;}
.yb2{bottom:203.037000px;}
.y3e{bottom:203.043000px;}
.y25{bottom:203.142000px;}
.y10f{bottom:203.146500px;}
.y92{bottom:203.169000px;}
.y160{bottom:203.172000px;}
.ye3{bottom:223.827000px;}
.y63{bottom:223.899000px;}
.y137{bottom:223.969500px;}
.yb1{bottom:224.041500px;}
.y3d{bottom:224.047500px;}
.y24{bottom:224.146500px;}
.y10e{bottom:224.151000px;}
.y91{bottom:224.173500px;}
.y15f{bottom:224.178000px;}
.ye2{bottom:244.831500px;}
.y62{bottom:244.903500px;}
.y136{bottom:244.974000px;}
.yb0{bottom:245.046000px;}
.y3c{bottom:245.052000px;}
.y23{bottom:245.151000px;}
.y10d{bottom:245.155500px;}
.y90{bottom:245.178000px;}
.y15e{bottom:245.184000px;}
.ye1{bottom:265.836000px;}
.y61{bottom:265.908000px;}
.y135{bottom:265.978500px;}
.yaf{bottom:266.050500px;}
.y3b{bottom:266.056500px;}
.y22{bottom:266.155500px;}
.y10c{bottom:266.160000px;}
.y8f{bottom:266.182500px;}
.y15d{bottom:266.190000px;}
.ye0{bottom:286.840500px;}
.y60{bottom:286.912500px;}
.y134{bottom:286.983000px;}
.yae{bottom:287.055000px;}
.y3a{bottom:287.061000px;}
.y21{bottom:287.160000px;}
.y10b{bottom:287.164500px;}
.y8e{bottom:287.187000px;}
.y15c{bottom:287.196000px;}
.ydf{bottom:307.845000px;}
.y5f{bottom:307.917000px;}
.y133{bottom:307.987500px;}
.yad{bottom:308.059500px;}
.y39{bottom:308.065500px;}
.y20{bottom:308.164500px;}
.y10a{bottom:308.169000px;}
.y8d{bottom:308.191500px;}
.y15b{bottom:308.202000px;}
.yde{bottom:328.849500px;}
.y5e{bottom:328.921500px;}
.y132{bottom:328.992000px;}
.yac{bottom:329.064000px;}
.y38{bottom:329.070000px;}
.y1f{bottom:329.169000px;}
.y109{bottom:329.173500px;}
.y8c{bottom:329.196000px;}
.y15a{bottom:329.208000px;}
.ydd{bottom:349.854000px;}
.y5d{bottom:349.926000px;}
.y131{bottom:349.996500px;}
.yab{bottom:350.068500px;}
.y37{bottom:350.074500px;}
.y1e{bottom:350.173500px;}
.y108{bottom:350.178000px;}
.y8b{bottom:350.200500px;}
.y159{bottom:350.214000px;}
.ydc{bottom:370.858500px;}
.y5c{bottom:370.930500px;}
.y130{bottom:371.001000px;}
.yaa{bottom:371.073000px;}
.y1d{bottom:371.178000px;}
.y107{bottom:371.182500px;}
.y8a{bottom:371.205000px;}
.y158{bottom:371.220000px;}
.ydb{bottom:391.863000px;}
.y5b{bottom:391.935000px;}
.y12f{bottom:392.005500px;}
.ya9{bottom:392.077500px;}
.y1c{bottom:392.182500px;}
.y106{bottom:392.187000px;}
.y89{bottom:392.209500px;}
.y157{bottom:392.226000px;}
.y76{bottom:408.303000px;}
.yda{bottom:412.867500px;}
.y5a{bottom:412.939500px;}
.y12e{bottom:413.010000px;}
.ya8{bottom:413.082000px;}
.y1b{bottom:413.187000px;}
.y105{bottom:413.191500px;}
.y88{bottom:413.214000px;}
.y156{bottom:413.232000px;}
.yd9{bottom:433.872000px;}
.y59{bottom:433.944000px;}
.y12d{bottom:434.014500px;}
.ya7{bottom:434.086500px;}
.y1a{bottom:434.191500px;}
.y104{bottom:434.196000px;}
.y87{bottom:434.218500px;}
.y155{bottom:434.238000px;}
.y75{bottom:438.303000px;}
.yd8{bottom:454.876500px;}
.y58{bottom:454.948500px;}
.y12c{bottom:455.019000px;}
.ya6{bottom:455.091000px;}
.y19{bottom:455.196000px;}
.y103{bottom:455.200500px;}
.y86{bottom:455.223000px;}
.y154{bottom:455.244000px;}
.y74{bottom:468.303000px;}
.yd7{bottom:475.881000px;}
.y57{bottom:475.953000px;}
.y12b{bottom:476.023500px;}
.ya5{bottom:476.095500px;}
.y18{bottom:476.200500px;}
.y102{bottom:476.205000px;}
.y85{bottom:476.227500px;}
.y153{bottom:476.250000px;}
.yd6{bottom:496.885500px;}
.y56{bottom:496.957500px;}
.y12a{bottom:497.028000px;}
.ya4{bottom:497.100000px;}
.y17{bottom:497.205000px;}
.y101{bottom:497.209500px;}
.y84{bottom:497.232000px;}
.y152{bottom:497.256000px;}
.y73{bottom:498.303000px;}
.yd5{bottom:517.890000px;}
.y55{bottom:517.962000px;}
.y129{bottom:518.032500px;}
.ya3{bottom:518.104500px;}
.y16{bottom:518.209500px;}
.y83{bottom:518.236500px;}
.y151{bottom:518.262000px;}
.y72{bottom:528.303000px;}
.yd4{bottom:538.894500px;}
.y54{bottom:538.966500px;}
.y128{bottom:539.037000px;}
.ya2{bottom:539.109000px;}
.y100{bottom:539.202000px;}
.y15{bottom:539.214000px;}
.y82{bottom:539.241000px;}
.y150{bottom:539.268000px;}
.y71{bottom:558.303000px;}
.yd3{bottom:559.899000px;}
.y53{bottom:559.971000px;}
.y127{bottom:560.041500px;}
.ya1{bottom:560.113500px;}
.yff{bottom:560.206500px;}
.y14{bottom:560.218500px;}
.y81{bottom:560.245500px;}
.y14f{bottom:560.274000px;}
.yd2{bottom:580.903500px;}
.y52{bottom:580.975500px;}
.y126{bottom:581.046000px;}
.ya0{bottom:581.118000px;}
.yfe{bottom:581.211000px;}
.y13{bottom:581.223000px;}
.y80{bottom:581.250000px;}
.y14e{bottom:581.280000px;}
.y70{bottom:588.303000px;}
.yd1{bottom:601.908000px;}
.y51{bottom:601.980000px;}
.y125{bottom:602.050500px;}
.y9f{bottom:602.122500px;}
.yfd{bottom:602.215500px;}
.y12{bottom:602.227500px;}
.y7f{bottom:602.254500px;}
.y14d{bottom:602.286000px;}
.yd0{bottom:622.912500px;}
.y50{bottom:622.984500px;}
.y124{bottom:623.055000px;}
.y9e{bottom:623.127000px;}
.yfc{bottom:623.220000px;}
.y11{bottom:623.232000px;}
.y7e{bottom:623.259000px;}
.y14c{bottom:623.292000px;}
.y14b{bottom:643.894500px;}
.ycf{bottom:643.917000px;}
.y4f{bottom:643.989000px;}
.y123{bottom:644.059500px;}
.y9d{bottom:644.131500px;}
.yfb{bottom:644.224500px;}
.y10{bottom:644.236500px;}
.y7d{bottom:644.263500px;}
.yce{bottom:664.921500px;}
.y4e{bottom:664.993500px;}
.y122{bottom:665.064000px;}
.y36{bottom:665.076000px;}
.y9c{bottom:665.136000px;}
.yfa{bottom:665.229000px;}
.yf{bottom:665.241000px;}
.y7c{bottom:665.268000px;}
.y14a{bottom:685.887000px;}
.ycd{bottom:685.926000px;}
.y4d{bottom:685.998000px;}
.y121{bottom:686.068500px;}
.y35{bottom:686.080500px;}
.y9b{bottom:686.140500px;}
.yf9{bottom:686.233500px;}
.ye{bottom:686.245500px;}
.y7b{bottom:686.272500px;}
.y149{bottom:706.891500px;}
.ycc{bottom:706.930500px;}
.y4c{bottom:707.002500px;}
.y120{bottom:707.073000px;}
.y34{bottom:707.085000px;}
.y9a{bottom:707.145000px;}
.yf8{bottom:707.238000px;}
.yd{bottom:707.250000px;}
.y7a{bottom:707.277000px;}
.y148{bottom:727.896000px;}
.ycb{bottom:727.935000px;}
.y4b{bottom:728.007000px;}
.y11f{bottom:728.077500px;}
.y33{bottom:728.089500px;}
.y99{bottom:728.149500px;}
.yf7{bottom:728.242500px;}
.yc{bottom:728.254500px;}
.y79{bottom:728.281500px;}
.y147{bottom:748.900500px;}
.yca{bottom:748.939500px;}
.y4a{bottom:749.011500px;}
.y11e{bottom:749.082000px;}
.y32{bottom:749.094000px;}
.y98{bottom:749.154000px;}
.yf6{bottom:749.247000px;}
.yb{bottom:749.259000px;}
.y78{bottom:749.286000px;}
.y146{bottom:769.905000px;}
.yc9{bottom:769.944000px;}
.y49{bottom:770.016000px;}
.y11d{bottom:770.086500px;}
.y31{bottom:770.098500px;}
.y97{bottom:770.158500px;}
.yf5{bottom:770.251500px;}
.ya{bottom:770.263500px;}
.y4{bottom:770.290500px;}
.y145{bottom:790.909500px;}
.yc8{bottom:790.948500px;}
.y48{bottom:791.020500px;}
.y11c{bottom:791.091000px;}
.y30{bottom:791.103000px;}
.yf4{bottom:791.256000px;}
.y9{bottom:791.268000px;}
.y144{bottom:811.914000px;}
.yc7{bottom:811.953000px;}
.y11b{bottom:812.095500px;}
.y2f{bottom:812.107500px;}
.yf3{bottom:812.260500px;}
.y8{bottom:812.272500px;}
.yea{bottom:821.065500px;}
.y143{bottom:832.918500px;}
.yc6{bottom:832.957500px;}
.y47{bottom:833.013000px;}
.y11a{bottom:833.100000px;}
.y2e{bottom:833.112000px;}
.yf2{bottom:833.265000px;}
.y7{bottom:833.277000px;}
.ye9{bottom:837.562500px;}
.y142{bottom:853.923000px;}
.yc5{bottom:853.962000px;}
.y46{bottom:854.017500px;}
.y119{bottom:854.104500px;}
.y2d{bottom:854.116500px;}
.yf1{bottom:854.269500px;}
.y6{bottom:854.281500px;}
.y171{bottom:863.256000px;}
.y177{bottom:864.606000px;}
.y174{bottom:864.862500px;}
.y141{bottom:874.927500px;}
.yc4{bottom:874.966500px;}
.y45{bottom:875.022000px;}
.y118{bottom:875.109000px;}
.y2c{bottom:875.121000px;}
.yf0{bottom:875.274000px;}
.y5{bottom:875.286000px;}
.y140{bottom:895.932000px;}
.yc3{bottom:895.971000px;}
.y44{bottom:896.026500px;}
.y117{bottom:896.113500px;}
.y2b{bottom:896.125500px;}
.yef{bottom:896.278500px;}
.y13f{bottom:916.936500px;}
.yc2{bottom:916.975500px;}
.y43{bottom:917.031000px;}
.y116{bottom:917.118000px;}
.y2a{bottom:917.130000px;}
.yee{bottom:917.283000px;}
.y3{bottom:917.290500px;}
.y13e{bottom:937.941000px;}
.yc1{bottom:937.980000px;}
.y115{bottom:938.122500px;}
.yed{bottom:938.287500px;}
.y13d{bottom:958.945500px;}
.yc0{bottom:958.984500px;}
.y114{bottom:959.127000px;}
.yec{bottom:959.292000px;}
.y6e{bottom:968.086500px;}
.ybf{bottom:979.989000px;}
.y6d{bottom:983.611500px;}
.ybe{bottom:1000.993500px;}
.y6c{bottom:1009.579500px;}
.y165{bottom:1010.277000px;}
.ybd{bottom:1021.998000px;}
.y16b{bottom:1023.904500px;}
.y16e{bottom:1025.031000px;}
.y164{bottom:1026.774000px;}
.ybc{bottom:1043.002500px;}
.y6b{bottom:1052.779500px;}
.ybb{bottom:1064.007000px;}
.yeb{bottom:1084.252500px;}
.yba{bottom:1085.011500px;}
.y167{bottom:1091.853000px;}
.y6a{bottom:1095.991500px;}
.y166{bottom:1102.164000px;}
.yb9{bottom:1106.016000px;}
.yb8{bottom:1127.020500px;}
.y178{bottom:1140.676500px;}
.y69{bottom:1143.979500px;}
.yb7{bottom:1148.025000px;}
.y6f{bottom:1233.183000px;}
.h15{height:0.001500px;}
.h18{height:0.256500px;}
.h16{height:1.606500px;}
.hf{height:25.031250px;}
.hd{height:39.606000px;}
.he{height:45.193359px;}
.h9{height:50.922000px;}
.h6{height:55.236328px;}
.h3{height:56.580000px;}
.h2{height:57.660000px;}
.h4{height:63.426000px;}
.ha{height:69.192000px;}
.h11{height:73.440000px;}
.hc{height:76.289062px;}
.hb{height:100.429688px;}
.h10{height:103.788000px;}
.h8{height:107.568000px;}
.h1a{height:118.664280px;}
.h14{height:144.897000px;}
.h12{height:156.373500px;}
.h17{height:157.689000px;}
.h19{height:158.365500px;}
.h7{height:176.886000px;}
.h13{height:621.826172px;}
.h5{height:709.218000px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.w4{width:0.000000px;}
.w3{width:2.025000px;}
.w6{width:143.326500px;}
.w2{width:153.898500px;}
.w7{width:518.212500px;}
.w5{width:558.664500px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x1f{left:-564.287700px;}
.x26{left:-522.035700px;}
.x1d{left:-155.698200px;}
.x23{left:-8.321700px;}
.x21{left:-5.623500px;}
.x1b{left:-3.824700px;}
.x0{left:0.000000px;}
.x14{left:42.156000px;}
.x17{left:75.000000px;}
.x11{left:96.767550px;}
.x2{left:97.795500px;}
.x10{left:99.789300px;}
.x1a{left:101.419500px;}
.x18{left:106.525800px;}
.x4{left:119.046000px;}
.x22{left:126.166500px;}
.x19{left:172.872000px;}
.x3{left:190.045500px;}
.x1c{left:253.293000px;}
.x20{left:255.318000px;}
.x24{left:275.568000px;}
.x27{left:293.386500px;}
.x16{left:329.670000px;}
.x13{left:341.397000px;}
.xe{left:344.268000px;}
.x5{left:345.822000px;}
.xd{left:348.048000px;}
.xa{left:357.588000px;}
.xb{left:361.038000px;}
.xc{left:364.458000px;}
.x6{left:367.074000px;}
.xf{left:414.108000px;}
.x9{left:549.961500px;}
.x7{left:593.866500px;}
.x8{left:615.135000px;}
.x15{left:622.704000px;}
.x12{left:627.165000px;}
.x25{left:793.780500px;}
.x1{left:805.630500px;}
.x1e{left:813.982500px;}
@media print{
.v2{vertical-align:-37.130667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:448.000000pt;}
.ls2c{letter-spacing:-29.600000pt;}
.ls2d{letter-spacing:-26.400000pt;}
.ls31{letter-spacing:-3.622080pt;}
.ls24{letter-spacing:-2.688000pt;}
.lse{letter-spacing:-2.346667pt;}
.ls18{letter-spacing:-1.525333pt;}
.ls12{letter-spacing:-1.493333pt;}
.ls25{letter-spacing:-1.488000pt;}
.ls16{letter-spacing:-1.408000pt;}
.ls1e{letter-spacing:-1.349333pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-1.056000pt;}
.lsd{letter-spacing:-0.938667pt;}
.ls7{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.821333pt;}
.ls1d{letter-spacing:-0.762667pt;}
.ls26{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.645333pt;}
.ls2f{letter-spacing:-0.599760pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.469333pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls3{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls30{letter-spacing:-0.266560pt;}
.ls28{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:-0.234667pt;}
.ls2e{letter-spacing:-0.199920pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001067pt;}
.ls6{letter-spacing:0.058667pt;}
.ls1f{letter-spacing:0.117333pt;}
.ls27{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.176000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.293333pt;}
.ls14{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.905493pt;}
.ls22{letter-spacing:1.872000pt;}
.ls1b{letter-spacing:4.165333pt;}
.ls32{letter-spacing:5.174400pt;}
.ls21{letter-spacing:6.720000pt;}
.ls2b{letter-spacing:17.066667pt;}
.ls2a{letter-spacing:19.200000pt;}
.lsf{letter-spacing:20.288000pt;}
.ws1{word-spacing:-38.512000pt;}
.ws2{word-spacing:-25.173333pt;}
.wsfa{word-spacing:-23.817920pt;}
.wsf8{word-spacing:-16.460080pt;}
.wsf9{word-spacing:-16.393440pt;}
.ws0{word-spacing:-14.960000pt;}
.ws5f{word-spacing:-14.490667pt;}
.ws5e{word-spacing:-14.138667pt;}
.ws5d{word-spacing:-14.021333pt;}
.wsb2{word-spacing:-13.872000pt;}
.wsb4{word-spacing:-12.000000pt;}
.wsb5{word-spacing:-9.984000pt;}
.wsb3{word-spacing:-9.312000pt;}
.ws50{word-spacing:-7.098667pt;}
.wse4{word-spacing:-6.720000pt;}
.ws65{word-spacing:-5.984000pt;}
.ws83{word-spacing:-5.514667pt;}
.wsb0{word-spacing:-4.165333pt;}
.ws36{word-spacing:-3.989333pt;}
.ws75{word-spacing:-3.637333pt;}
.ws66{word-spacing:-2.816000pt;}
.ws11{word-spacing:-2.640000pt;}
.ws8c{word-spacing:-2.581333pt;}
.ws82{word-spacing:-2.522667pt;}
.wsde{word-spacing:-2.464000pt;}
.ws2a{word-spacing:-2.405333pt;}
.ws31{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.525333pt;}
.wsc9{word-spacing:-1.466667pt;}
.wsc8{word-spacing:-1.408000pt;}
.wsd8{word-spacing:-1.290667pt;}
.ws80{word-spacing:-1.114667pt;}
.ws40{word-spacing:-1.056000pt;}
.ws9f{word-spacing:-0.938667pt;}
.ws38{word-spacing:-0.880000pt;}
.wsd2{word-spacing:-0.821333pt;}
.wsf5{word-spacing:-0.800000pt;}
.wse2{word-spacing:-0.704000pt;}
.wsc1{word-spacing:-0.645333pt;}
.wsa1{word-spacing:-0.586667pt;}
.wsfc{word-spacing:-0.439040pt;}
.wsd6{word-spacing:-0.410667pt;}
.ws37{word-spacing:-0.352000pt;}
.wsd5{word-spacing:-0.293333pt;}
.ws20{word-spacing:-0.234667pt;}
.wsfe{word-spacing:-0.188160pt;}
.ws41{word-spacing:-0.176000pt;}
.wsfd{word-spacing:-0.172480pt;}
.ws12{word-spacing:-0.117333pt;}
.ws3f{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws84{word-spacing:0.058667pt;}
.ws14{word-spacing:0.176000pt;}
.ws5b{word-spacing:0.192000pt;}
.ws64{word-spacing:0.234667pt;}
.wsf4{word-spacing:0.261333pt;}
.ws8f{word-spacing:0.293333pt;}
.wsfb{word-spacing:0.333200pt;}
.ws4{word-spacing:0.352000pt;}
.ws8b{word-spacing:0.469333pt;}
.wsb1{word-spacing:0.480000pt;}
.wsa5{word-spacing:0.528000pt;}
.ws2f{word-spacing:0.586667pt;}
.wse{word-spacing:0.704000pt;}
.wsbe{word-spacing:0.762667pt;}
.ws25{word-spacing:0.880000pt;}
.ws54{word-spacing:0.938667pt;}
.ws3b{word-spacing:0.997333pt;}
.ws39{word-spacing:1.056000pt;}
.ws5c{word-spacing:1.066667pt;}
.ws3a{word-spacing:1.114667pt;}
.ws18{word-spacing:1.173333pt;}
.ws2e{word-spacing:1.232000pt;}
.ws1e{word-spacing:1.290667pt;}
.ws23{word-spacing:1.349333pt;}
.wsec{word-spacing:1.488000pt;}
.wsd4{word-spacing:1.701333pt;}
.ws28{word-spacing:1.760000pt;}
.wscf{word-spacing:1.818667pt;}
.wsf3{word-spacing:1.872000pt;}
.ws17{word-spacing:1.936000pt;}
.ws1f{word-spacing:1.994667pt;}
.wsf2{word-spacing:2.016000pt;}
.wsa6{word-spacing:2.053333pt;}
.wsee{word-spacing:2.064000pt;}
.wsd3{word-spacing:2.112000pt;}
.wsed{word-spacing:2.160000pt;}
.ws13{word-spacing:2.170667pt;}
.ws8e{word-spacing:2.229333pt;}
.wse1{word-spacing:2.288000pt;}
.ws55{word-spacing:2.346667pt;}
.wse5{word-spacing:2.496000pt;}
.ws34{word-spacing:2.522667pt;}
.ws1b{word-spacing:2.581333pt;}
.wsad{word-spacing:2.640000pt;}
.wsdb{word-spacing:2.698667pt;}
.ws49{word-spacing:2.874667pt;}
.wsf{word-spacing:2.992000pt;}
.wsf1{word-spacing:3.072000pt;}
.wsdd{word-spacing:3.109333pt;}
.wsd{word-spacing:3.168000pt;}
.ws33{word-spacing:3.285333pt;}
.wscb{word-spacing:3.402667pt;}
.wsca{word-spacing:3.461333pt;}
.wse9{word-spacing:3.600000pt;}
.wsa0{word-spacing:3.637333pt;}
.wsa8{word-spacing:3.696000pt;}
.ws10{word-spacing:3.754667pt;}
.ws78{word-spacing:3.872000pt;}
.ws29{word-spacing:3.930667pt;}
.wsab{word-spacing:4.165333pt;}
.wsf0{word-spacing:4.176000pt;}
.ws91{word-spacing:4.282667pt;}
.wsaf{word-spacing:4.400000pt;}
.wsd1{word-spacing:4.517333pt;}
.wsb8{word-spacing:4.634667pt;}
.wsa3{word-spacing:4.693333pt;}
.ws9c{word-spacing:4.752000pt;}
.ws95{word-spacing:4.810667pt;}
.ws98{word-spacing:5.104000pt;}
.wsc2{word-spacing:5.162667pt;}
.ws89{word-spacing:5.338667pt;}
.wsb6{word-spacing:5.397333pt;}
.wse7{word-spacing:5.472000pt;}
.ws3c{word-spacing:5.514667pt;}
.ws76{word-spacing:5.749333pt;}
.ws6a{word-spacing:5.808000pt;}
.ws35{word-spacing:5.925333pt;}
.wse3{word-spacing:5.952000pt;}
.ws1d{word-spacing:5.984000pt;}
.wsd9{word-spacing:6.160000pt;}
.ws30{word-spacing:6.218667pt;}
.ws26{word-spacing:6.277333pt;}
.wsbd{word-spacing:6.394667pt;}
.ws7f{word-spacing:6.453333pt;}
.wsc0{word-spacing:6.629333pt;}
.wsae{word-spacing:6.688000pt;}
.ws5a{word-spacing:6.746667pt;}
.wsbc{word-spacing:7.040000pt;}
.wsda{word-spacing:7.216000pt;}
.ws16{word-spacing:7.274667pt;}
.wsce{word-spacing:7.333333pt;}
.wsa{word-spacing:7.568000pt;}
.wse0{word-spacing:7.685333pt;}
.ws8d{word-spacing:7.744000pt;}
.wsc6{word-spacing:7.861333pt;}
.wsc3{word-spacing:7.920000pt;}
.ws32{word-spacing:8.037333pt;}
.ws6c{word-spacing:8.330667pt;}
.ws73{word-spacing:8.506667pt;}
.ws1c{word-spacing:8.565333pt;}
.ws1a{word-spacing:8.624000pt;}
.wse6{word-spacing:8.832000pt;}
.wsc4{word-spacing:8.976000pt;}
.ws97{word-spacing:9.328000pt;}
.wsa7{word-spacing:9.562667pt;}
.ws58{word-spacing:9.914667pt;}
.ws92{word-spacing:10.032000pt;}
.ws79{word-spacing:10.090667pt;}
.wscd{word-spacing:10.266667pt;}
.ws77{word-spacing:10.618667pt;}
.wsb{word-spacing:10.677333pt;}
.ws3e{word-spacing:10.912000pt;}
.ws2c{word-spacing:11.029333pt;}
.wsef{word-spacing:11.136000pt;}
.ws21{word-spacing:11.146667pt;}
.wsdf{word-spacing:11.205333pt;}
.wsea{word-spacing:11.328000pt;}
.wsac{word-spacing:11.440000pt;}
.wsd0{word-spacing:11.616000pt;}
.wscc{word-spacing:11.674667pt;}
.ws9a{word-spacing:11.792000pt;}
.wsbf{word-spacing:12.202667pt;}
.ws90{word-spacing:12.261333pt;}
.wsd7{word-spacing:12.378667pt;}
.ws24{word-spacing:12.965333pt;}
.ws68{word-spacing:13.200000pt;}
.ws7e{word-spacing:13.258667pt;}
.ws4b{word-spacing:13.317333pt;}
.ws7{word-spacing:13.376000pt;}
.wsba{word-spacing:13.434667pt;}
.wse8{word-spacing:13.488000pt;}
.ws99{word-spacing:13.552000pt;}
.ws22{word-spacing:13.610667pt;}
.ws27{word-spacing:13.669333pt;}
.wsb9{word-spacing:14.138667pt;}
.wsb7{word-spacing:14.197333pt;}
.ws15{word-spacing:14.314667pt;}
.ws6d{word-spacing:14.373333pt;}
.ws3d{word-spacing:14.432000pt;}
.ws19{word-spacing:14.666667pt;}
.ws9d{word-spacing:14.725333pt;}
.wsbb{word-spacing:14.842667pt;}
.ws69{word-spacing:15.136000pt;}
.ws9b{word-spacing:15.312000pt;}
.wsa2{word-spacing:15.722667pt;}
.ws9e{word-spacing:15.840000pt;}
.ws70{word-spacing:15.898667pt;}
.ws6{word-spacing:16.192000pt;}
.ws63{word-spacing:16.250667pt;}
.ws56{word-spacing:16.309333pt;}
.wsa9{word-spacing:16.426667pt;}
.wsdc{word-spacing:16.896000pt;}
.ws5{word-spacing:17.306667pt;}
.ws51{word-spacing:17.952000pt;}
.ws4c{word-spacing:18.245333pt;}
.wseb{word-spacing:18.912000pt;}
.ws57{word-spacing:19.360000pt;}
.ws6f{word-spacing:19.477333pt;}
.ws47{word-spacing:20.533333pt;}
.ws93{word-spacing:20.650667pt;}
.ws52{word-spacing:21.178667pt;}
.ws67{word-spacing:21.296000pt;}
.ws94{word-spacing:21.765333pt;}
.wsa4{word-spacing:22.469333pt;}
.wsc7{word-spacing:22.997333pt;}
.ws59{word-spacing:23.290667pt;}
.ws48{word-spacing:23.584000pt;}
.ws6b{word-spacing:23.642667pt;}
.ws71{word-spacing:24.522667pt;}
.wsf7{word-spacing:25.600000pt;}
.ws96{word-spacing:25.872000pt;}
.ws2d{word-spacing:26.341333pt;}
.ws4a{word-spacing:27.280000pt;}
.ws87{word-spacing:27.866667pt;}
.wsc5{word-spacing:28.570667pt;}
.ws4d{word-spacing:28.746667pt;}
.wsf6{word-spacing:28.800000pt;}
.ws53{word-spacing:28.805333pt;}
.wsc{word-spacing:28.981333pt;}
.ws7d{word-spacing:30.330667pt;}
.ws8a{word-spacing:30.506667pt;}
.ws4e{word-spacing:31.152000pt;}
.ws88{word-spacing:31.269333pt;}
.ws46{word-spacing:31.328000pt;}
.ws43{word-spacing:32.325333pt;}
.ws7a{word-spacing:33.440000pt;}
.ws61{word-spacing:34.789333pt;}
.ws9{word-spacing:34.848000pt;}
.ws2b{word-spacing:38.192000pt;}
.ws81{word-spacing:38.368000pt;}
.ws6e{word-spacing:38.485333pt;}
.ws45{word-spacing:38.837333pt;}
.ws72{word-spacing:42.592000pt;}
.ws42{word-spacing:44.176000pt;}
.ws60{word-spacing:47.168000pt;}
.ws62{word-spacing:47.930667pt;}
.ws85{word-spacing:51.098667pt;}
.ws7c{word-spacing:53.445333pt;}
.ws44{word-spacing:55.616000pt;}
.ws74{word-spacing:59.722667pt;}
.ws86{word-spacing:63.184000pt;}
.ws4f{word-spacing:73.040000pt;}
.ws7b{word-spacing:73.509333pt;}
.ws8{word-spacing:85.184000pt;}
._1f{margin-left:-2526.728533pt;}
._1e{margin-left:-36.801067pt;}
._1b{margin-left:-9.045867pt;}
._1c{margin-left:-7.706667pt;}
._1a{margin-left:-6.720000pt;}
._19{margin-left:-5.798400pt;}
._7{margin-left:-4.605333pt;}
._f{margin-left:-3.681067pt;}
._5{margin-left:-2.024000pt;}
._3{margin-left:-1.114667pt;}
._0{width:1.290667pt;}
._2{width:2.323200pt;}
._4{width:3.449600pt;}
._11{width:4.353067pt;}
._c{width:5.702400pt;}
._8{width:7.004800pt;}
._d{width:8.354133pt;}
._b{width:9.474667pt;}
._a{width:10.853333pt;}
._6{width:12.273067pt;}
._9{width:13.381867pt;}
._1d{width:14.709333pt;}
._16{width:15.699200pt;}
._17{width:17.224533pt;}
._e{width:18.309867pt;}
._15{width:19.348267pt;}
._14{width:20.351467pt;}
._12{width:22.844800pt;}
._18{width:24.868800pt;}
._13{width:36.584533pt;}
._1{width:43.249067pt;}
._10{width:929.942400pt;}
.fsc{font-size:21.333333pt;}
.fsb{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs11{font-size:43.120000pt;}
.fs13{font-size:47.040000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs10{font-size:66.640000pt;}
.fse{font-size:85.333333pt;}
.fsd{font-size:96.000000pt;}
.fs9{font-size:106.666667pt;}
.fs12{font-size:109.760000pt;}
.fs6{font-size:128.000000pt;}
.fs4{font-size:154.666667pt;}
.fs3{font-size:165.333333pt;}
.fs5{font-size:192.000000pt;}
.fs2{font-size:656.000000pt;}
.fsf{font-size:800.000000pt;}
.y0{bottom:0.000000pt;}
.y176{bottom:2.570400pt;}
.y175{bottom:2.570667pt;}
.y170{bottom:2.798400pt;}
.y16f{bottom:2.798667pt;}
.y16d{bottom:3.799733pt;}
.y16c{bottom:3.800000pt;}
.y172{bottom:3.998400pt;}
.y173{bottom:3.998667pt;}
.y168{bottom:6.666667pt;}
.y16a{bottom:63.285867pt;}
.y2{bottom:70.686400pt;}
.y77{bottom:70.686533pt;}
.y1{bottom:70.966400pt;}
.y169{bottom:87.285867pt;}
.ye8{bottom:105.604000pt;}
.y68{bottom:105.668000pt;}
.y13c{bottom:105.730667pt;}
.yb6{bottom:105.794667pt;}
.y42{bottom:105.800000pt;}
.y29{bottom:105.888000pt;}
.y113{bottom:105.892000pt;}
.y163{bottom:105.909333pt;}
.y96{bottom:105.912000pt;}
.ye7{bottom:124.274667pt;}
.y67{bottom:124.338667pt;}
.y13b{bottom:124.401333pt;}
.yb5{bottom:124.465333pt;}
.y41{bottom:124.470667pt;}
.y28{bottom:124.558667pt;}
.y112{bottom:124.562667pt;}
.y162{bottom:124.581333pt;}
.y95{bottom:124.582667pt;}
.ye6{bottom:142.945333pt;}
.y66{bottom:143.009333pt;}
.y13a{bottom:143.072000pt;}
.yb4{bottom:143.136000pt;}
.y40{bottom:143.141333pt;}
.y27{bottom:143.229333pt;}
.y111{bottom:143.233333pt;}
.y94{bottom:143.253333pt;}
.ye5{bottom:161.616000pt;}
.y65{bottom:161.680000pt;}
.y139{bottom:161.742667pt;}
.yb3{bottom:161.806667pt;}
.y3f{bottom:161.812000pt;}
.y26{bottom:161.900000pt;}
.y110{bottom:161.904000pt;}
.y93{bottom:161.924000pt;}
.y161{bottom:161.925333pt;}
.ye4{bottom:180.286667pt;}
.y64{bottom:180.350667pt;}
.y138{bottom:180.413333pt;}
.yb2{bottom:180.477333pt;}
.y3e{bottom:180.482667pt;}
.y25{bottom:180.570667pt;}
.y10f{bottom:180.574667pt;}
.y92{bottom:180.594667pt;}
.y160{bottom:180.597333pt;}
.ye3{bottom:198.957333pt;}
.y63{bottom:199.021333pt;}
.y137{bottom:199.084000pt;}
.yb1{bottom:199.148000pt;}
.y3d{bottom:199.153333pt;}
.y24{bottom:199.241333pt;}
.y10e{bottom:199.245333pt;}
.y91{bottom:199.265333pt;}
.y15f{bottom:199.269333pt;}
.ye2{bottom:217.628000pt;}
.y62{bottom:217.692000pt;}
.y136{bottom:217.754667pt;}
.yb0{bottom:217.818667pt;}
.y3c{bottom:217.824000pt;}
.y23{bottom:217.912000pt;}
.y10d{bottom:217.916000pt;}
.y90{bottom:217.936000pt;}
.y15e{bottom:217.941333pt;}
.ye1{bottom:236.298667pt;}
.y61{bottom:236.362667pt;}
.y135{bottom:236.425333pt;}
.yaf{bottom:236.489333pt;}
.y3b{bottom:236.494667pt;}
.y22{bottom:236.582667pt;}
.y10c{bottom:236.586667pt;}
.y8f{bottom:236.606667pt;}
.y15d{bottom:236.613333pt;}
.ye0{bottom:254.969333pt;}
.y60{bottom:255.033333pt;}
.y134{bottom:255.096000pt;}
.yae{bottom:255.160000pt;}
.y3a{bottom:255.165333pt;}
.y21{bottom:255.253333pt;}
.y10b{bottom:255.257333pt;}
.y8e{bottom:255.277333pt;}
.y15c{bottom:255.285333pt;}
.ydf{bottom:273.640000pt;}
.y5f{bottom:273.704000pt;}
.y133{bottom:273.766667pt;}
.yad{bottom:273.830667pt;}
.y39{bottom:273.836000pt;}
.y20{bottom:273.924000pt;}
.y10a{bottom:273.928000pt;}
.y8d{bottom:273.948000pt;}
.y15b{bottom:273.957333pt;}
.yde{bottom:292.310667pt;}
.y5e{bottom:292.374667pt;}
.y132{bottom:292.437333pt;}
.yac{bottom:292.501333pt;}
.y38{bottom:292.506667pt;}
.y1f{bottom:292.594667pt;}
.y109{bottom:292.598667pt;}
.y8c{bottom:292.618667pt;}
.y15a{bottom:292.629333pt;}
.ydd{bottom:310.981333pt;}
.y5d{bottom:311.045333pt;}
.y131{bottom:311.108000pt;}
.yab{bottom:311.172000pt;}
.y37{bottom:311.177333pt;}
.y1e{bottom:311.265333pt;}
.y108{bottom:311.269333pt;}
.y8b{bottom:311.289333pt;}
.y159{bottom:311.301333pt;}
.ydc{bottom:329.652000pt;}
.y5c{bottom:329.716000pt;}
.y130{bottom:329.778667pt;}
.yaa{bottom:329.842667pt;}
.y1d{bottom:329.936000pt;}
.y107{bottom:329.940000pt;}
.y8a{bottom:329.960000pt;}
.y158{bottom:329.973333pt;}
.ydb{bottom:348.322667pt;}
.y5b{bottom:348.386667pt;}
.y12f{bottom:348.449333pt;}
.ya9{bottom:348.513333pt;}
.y1c{bottom:348.606667pt;}
.y106{bottom:348.610667pt;}
.y89{bottom:348.630667pt;}
.y157{bottom:348.645333pt;}
.y76{bottom:362.936000pt;}
.yda{bottom:366.993333pt;}
.y5a{bottom:367.057333pt;}
.y12e{bottom:367.120000pt;}
.ya8{bottom:367.184000pt;}
.y1b{bottom:367.277333pt;}
.y105{bottom:367.281333pt;}
.y88{bottom:367.301333pt;}
.y156{bottom:367.317333pt;}
.yd9{bottom:385.664000pt;}
.y59{bottom:385.728000pt;}
.y12d{bottom:385.790667pt;}
.ya7{bottom:385.854667pt;}
.y1a{bottom:385.948000pt;}
.y104{bottom:385.952000pt;}
.y87{bottom:385.972000pt;}
.y155{bottom:385.989333pt;}
.y75{bottom:389.602667pt;}
.yd8{bottom:404.334667pt;}
.y58{bottom:404.398667pt;}
.y12c{bottom:404.461333pt;}
.ya6{bottom:404.525333pt;}
.y19{bottom:404.618667pt;}
.y103{bottom:404.622667pt;}
.y86{bottom:404.642667pt;}
.y154{bottom:404.661333pt;}
.y74{bottom:416.269333pt;}
.yd7{bottom:423.005333pt;}
.y57{bottom:423.069333pt;}
.y12b{bottom:423.132000pt;}
.ya5{bottom:423.196000pt;}
.y18{bottom:423.289333pt;}
.y102{bottom:423.293333pt;}
.y85{bottom:423.313333pt;}
.y153{bottom:423.333333pt;}
.yd6{bottom:441.676000pt;}
.y56{bottom:441.740000pt;}
.y12a{bottom:441.802667pt;}
.ya4{bottom:441.866667pt;}
.y17{bottom:441.960000pt;}
.y101{bottom:441.964000pt;}
.y84{bottom:441.984000pt;}
.y152{bottom:442.005333pt;}
.y73{bottom:442.936000pt;}
.yd5{bottom:460.346667pt;}
.y55{bottom:460.410667pt;}
.y129{bottom:460.473333pt;}
.ya3{bottom:460.537333pt;}
.y16{bottom:460.630667pt;}
.y83{bottom:460.654667pt;}
.y151{bottom:460.677333pt;}
.y72{bottom:469.602667pt;}
.yd4{bottom:479.017333pt;}
.y54{bottom:479.081333pt;}
.y128{bottom:479.144000pt;}
.ya2{bottom:479.208000pt;}
.y100{bottom:479.290667pt;}
.y15{bottom:479.301333pt;}
.y82{bottom:479.325333pt;}
.y150{bottom:479.349333pt;}
.y71{bottom:496.269333pt;}
.yd3{bottom:497.688000pt;}
.y53{bottom:497.752000pt;}
.y127{bottom:497.814667pt;}
.ya1{bottom:497.878667pt;}
.yff{bottom:497.961333pt;}
.y14{bottom:497.972000pt;}
.y81{bottom:497.996000pt;}
.y14f{bottom:498.021333pt;}
.yd2{bottom:516.358667pt;}
.y52{bottom:516.422667pt;}
.y126{bottom:516.485333pt;}
.ya0{bottom:516.549333pt;}
.yfe{bottom:516.632000pt;}
.y13{bottom:516.642667pt;}
.y80{bottom:516.666667pt;}
.y14e{bottom:516.693333pt;}
.y70{bottom:522.936000pt;}
.yd1{bottom:535.029333pt;}
.y51{bottom:535.093333pt;}
.y125{bottom:535.156000pt;}
.y9f{bottom:535.220000pt;}
.yfd{bottom:535.302667pt;}
.y12{bottom:535.313333pt;}
.y7f{bottom:535.337333pt;}
.y14d{bottom:535.365333pt;}
.yd0{bottom:553.700000pt;}
.y50{bottom:553.764000pt;}
.y124{bottom:553.826667pt;}
.y9e{bottom:553.890667pt;}
.yfc{bottom:553.973333pt;}
.y11{bottom:553.984000pt;}
.y7e{bottom:554.008000pt;}
.y14c{bottom:554.037333pt;}
.y14b{bottom:572.350667pt;}
.ycf{bottom:572.370667pt;}
.y4f{bottom:572.434667pt;}
.y123{bottom:572.497333pt;}
.y9d{bottom:572.561333pt;}
.yfb{bottom:572.644000pt;}
.y10{bottom:572.654667pt;}
.y7d{bottom:572.678667pt;}
.yce{bottom:591.041333pt;}
.y4e{bottom:591.105333pt;}
.y122{bottom:591.168000pt;}
.y36{bottom:591.178667pt;}
.y9c{bottom:591.232000pt;}
.yfa{bottom:591.314667pt;}
.yf{bottom:591.325333pt;}
.y7c{bottom:591.349333pt;}
.y14a{bottom:609.677333pt;}
.ycd{bottom:609.712000pt;}
.y4d{bottom:609.776000pt;}
.y121{bottom:609.838667pt;}
.y35{bottom:609.849333pt;}
.y9b{bottom:609.902667pt;}
.yf9{bottom:609.985333pt;}
.ye{bottom:609.996000pt;}
.y7b{bottom:610.020000pt;}
.y149{bottom:628.348000pt;}
.ycc{bottom:628.382667pt;}
.y4c{bottom:628.446667pt;}
.y120{bottom:628.509333pt;}
.y34{bottom:628.520000pt;}
.y9a{bottom:628.573333pt;}
.yf8{bottom:628.656000pt;}
.yd{bottom:628.666667pt;}
.y7a{bottom:628.690667pt;}
.y148{bottom:647.018667pt;}
.ycb{bottom:647.053333pt;}
.y4b{bottom:647.117333pt;}
.y11f{bottom:647.180000pt;}
.y33{bottom:647.190667pt;}
.y99{bottom:647.244000pt;}
.yf7{bottom:647.326667pt;}
.yc{bottom:647.337333pt;}
.y79{bottom:647.361333pt;}
.y147{bottom:665.689333pt;}
.yca{bottom:665.724000pt;}
.y4a{bottom:665.788000pt;}
.y11e{bottom:665.850667pt;}
.y32{bottom:665.861333pt;}
.y98{bottom:665.914667pt;}
.yf6{bottom:665.997333pt;}
.yb{bottom:666.008000pt;}
.y78{bottom:666.032000pt;}
.y146{bottom:684.360000pt;}
.yc9{bottom:684.394667pt;}
.y49{bottom:684.458667pt;}
.y11d{bottom:684.521333pt;}
.y31{bottom:684.532000pt;}
.y97{bottom:684.585333pt;}
.yf5{bottom:684.668000pt;}
.ya{bottom:684.678667pt;}
.y4{bottom:684.702667pt;}
.y145{bottom:703.030667pt;}
.yc8{bottom:703.065333pt;}
.y48{bottom:703.129333pt;}
.y11c{bottom:703.192000pt;}
.y30{bottom:703.202667pt;}
.yf4{bottom:703.338667pt;}
.y9{bottom:703.349333pt;}
.y144{bottom:721.701333pt;}
.yc7{bottom:721.736000pt;}
.y11b{bottom:721.862667pt;}
.y2f{bottom:721.873333pt;}
.yf3{bottom:722.009333pt;}
.y8{bottom:722.020000pt;}
.yea{bottom:729.836000pt;}
.y143{bottom:740.372000pt;}
.yc6{bottom:740.406667pt;}
.y47{bottom:740.456000pt;}
.y11a{bottom:740.533333pt;}
.y2e{bottom:740.544000pt;}
.yf2{bottom:740.680000pt;}
.y7{bottom:740.690667pt;}
.ye9{bottom:744.500000pt;}
.y142{bottom:759.042667pt;}
.yc5{bottom:759.077333pt;}
.y46{bottom:759.126667pt;}
.y119{bottom:759.204000pt;}
.y2d{bottom:759.214667pt;}
.yf1{bottom:759.350667pt;}
.y6{bottom:759.361333pt;}
.y171{bottom:767.338667pt;}
.y177{bottom:768.538667pt;}
.y174{bottom:768.766667pt;}
.y141{bottom:777.713333pt;}
.yc4{bottom:777.748000pt;}
.y45{bottom:777.797333pt;}
.y118{bottom:777.874667pt;}
.y2c{bottom:777.885333pt;}
.yf0{bottom:778.021333pt;}
.y5{bottom:778.032000pt;}
.y140{bottom:796.384000pt;}
.yc3{bottom:796.418667pt;}
.y44{bottom:796.468000pt;}
.y117{bottom:796.545333pt;}
.y2b{bottom:796.556000pt;}
.yef{bottom:796.692000pt;}
.y13f{bottom:815.054667pt;}
.yc2{bottom:815.089333pt;}
.y43{bottom:815.138667pt;}
.y116{bottom:815.216000pt;}
.y2a{bottom:815.226667pt;}
.yee{bottom:815.362667pt;}
.y3{bottom:815.369333pt;}
.y13e{bottom:833.725333pt;}
.yc1{bottom:833.760000pt;}
.y115{bottom:833.886667pt;}
.yed{bottom:834.033333pt;}
.y13d{bottom:852.396000pt;}
.yc0{bottom:852.430667pt;}
.y114{bottom:852.557333pt;}
.yec{bottom:852.704000pt;}
.y6e{bottom:860.521333pt;}
.ybf{bottom:871.101333pt;}
.y6d{bottom:874.321333pt;}
.ybe{bottom:889.772000pt;}
.y6c{bottom:897.404000pt;}
.y165{bottom:898.024000pt;}
.ybd{bottom:908.442667pt;}
.y16b{bottom:910.137333pt;}
.y16e{bottom:911.138667pt;}
.y164{bottom:912.688000pt;}
.ybc{bottom:927.113333pt;}
.y6b{bottom:935.804000pt;}
.ybb{bottom:945.784000pt;}
.yeb{bottom:963.780000pt;}
.yba{bottom:964.454667pt;}
.y167{bottom:970.536000pt;}
.y6a{bottom:974.214667pt;}
.y166{bottom:979.701333pt;}
.yb9{bottom:983.125333pt;}
.yb8{bottom:1001.796000pt;}
.y178{bottom:1013.934667pt;}
.y69{bottom:1016.870667pt;}
.yb7{bottom:1020.466667pt;}
.y6f{bottom:1096.162667pt;}
.h15{height:0.001333pt;}
.h18{height:0.228000pt;}
.h16{height:1.428000pt;}
.hf{height:22.250000pt;}
.hd{height:35.205333pt;}
.he{height:40.171875pt;}
.h9{height:45.264000pt;}
.h6{height:49.098958pt;}
.h3{height:50.293333pt;}
.h2{height:51.253333pt;}
.h4{height:56.378667pt;}
.ha{height:61.504000pt;}
.h11{height:65.280000pt;}
.hc{height:67.812500pt;}
.hb{height:89.270833pt;}
.h10{height:92.256000pt;}
.h8{height:95.616000pt;}
.h1a{height:105.479360pt;}
.h14{height:128.797333pt;}
.h12{height:138.998667pt;}
.h17{height:140.168000pt;}
.h19{height:140.769333pt;}
.h7{height:157.232000pt;}
.h13{height:552.734375pt;}
.h5{height:630.416000pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.w4{width:0.000000pt;}
.w3{width:1.800000pt;}
.w6{width:127.401333pt;}
.w2{width:136.798667pt;}
.w7{width:460.633333pt;}
.w5{width:496.590667pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x1f{left:-501.589067pt;}
.x26{left:-464.031733pt;}
.x1d{left:-138.398400pt;}
.x23{left:-7.397067pt;}
.x21{left:-4.998667pt;}
.x1b{left:-3.399733pt;}
.x0{left:0.000000pt;}
.x14{left:37.472000pt;}
.x17{left:66.666667pt;}
.x11{left:86.015600pt;}
.x2{left:86.929333pt;}
.x10{left:88.701600pt;}
.x1a{left:90.150667pt;}
.x18{left:94.689600pt;}
.x4{left:105.818667pt;}
.x22{left:112.148000pt;}
.x19{left:153.664000pt;}
.x3{left:168.929333pt;}
.x1c{left:225.149333pt;}
.x20{left:226.949333pt;}
.x24{left:244.949333pt;}
.x27{left:260.788000pt;}
.x16{left:293.040000pt;}
.x13{left:303.464000pt;}
.xe{left:306.016000pt;}
.x5{left:307.397333pt;}
.xd{left:309.376000pt;}
.xa{left:317.856000pt;}
.xb{left:320.922667pt;}
.xc{left:323.962667pt;}
.x6{left:326.288000pt;}
.xf{left:368.096000pt;}
.x9{left:488.854667pt;}
.x7{left:527.881333pt;}
.x8{left:546.786667pt;}
.x15{left:553.514667pt;}
.x12{left:557.480000pt;}
.x25{left:705.582667pt;}
.x1{left:716.116000pt;}
.x1e{left:723.540000pt;}
}




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