
    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_f3c47edc067268cb865c30ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928223;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_ef93f9ea74fb7e5033b91054.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.687000;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_6c2db100e59d011b23b75dc3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689000;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_65788cf4e67f35a4e97a5026.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.540000;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_1b5855574f1fc9ca2ddd79c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_7dd36d1a7fa9c25afd52ac0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.134000;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_e698486274b77ab7d3a0126d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e835dec117e4943d6809989.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.134000;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_93fe4827268460ed3acb9dba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.132000;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_8d4ba1ffad762fc72083da6b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a1293f09d1155553f782a443.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a1293f09d1155553f782a443.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c555afde9f23d7ca287c0809.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_65788cf4e67f35a4e97a5026.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.540000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a1293f09d1155553f782a443.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4b432a5698def28ae5097686.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.711000;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:ff11;src:url('chunks/assets/font_158d33d57efd3c64ecb92dcf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.942000;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:ff12;src:url('chunks/assets/font_9d25d9e24e35c5a8def42018.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.575000;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:ff13;src:url('chunks/assets/font_d8892d86d169ad0479515c7e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984000;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.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,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);}
.m2{transform:matrix(0.262632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262632,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.740600px;}
.v2{vertical-align:24.000000px;}
.ls1{letter-spacing:-47.429898px;}
.ls2{letter-spacing:-8.892000px;}
.lsf{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.285000px;}
.ls7{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.210000px;}
.ls0{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.134640px;}
.lsb{letter-spacing:-0.116280px;}
.lsd{letter-spacing:-0.107640px;}
.ls11{letter-spacing:-0.050400px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.545600px;}
.ls4{letter-spacing:3.864000px;}
.lse{letter-spacing:8.632800px;}
.lsa{letter-spacing:11.563200px;}
.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;}
}
.wsaf{word-spacing:-18.348000px;}
.ws13{word-spacing:-18.018000px;}
.ws14{word-spacing:-12.476640px;}
.ws77{word-spacing:-12.342000px;}
.ws5b{word-spacing:-10.775280px;}
.ws76{word-spacing:-10.659000px;}
.ws15{word-spacing:-9.974640px;}
.ws78{word-spacing:-9.867000px;}
.ws123{word-spacing:-8.580000px;}
.ws3e{word-spacing:-8.382000px;}
.ws91{word-spacing:-8.316000px;}
.wsdd{word-spacing:-8.118000px;}
.wsb6{word-spacing:-7.260000px;}
.ws62{word-spacing:-6.930000px;}
.ws116{word-spacing:-6.798000px;}
.ws124{word-spacing:-6.732000px;}
.wsf3{word-spacing:-6.336000px;}
.ws8e{word-spacing:-6.204000px;}
.ws2b{word-spacing:-6.138000px;}
.wse1{word-spacing:-5.742000px;}
.ws3f{word-spacing:-5.478000px;}
.ws86{word-spacing:-5.301000px;}
.ws6c{word-spacing:-5.214000px;}
.wse0{word-spacing:-5.016000px;}
.wsf{word-spacing:-4.617000px;}
.ws27{word-spacing:-4.290000px;}
.ws117{word-spacing:-4.092000px;}
.ws63{word-spacing:-4.026000px;}
.ws71{word-spacing:-3.960000px;}
.ws23{word-spacing:-3.762000px;}
.ws120{word-spacing:-3.696000px;}
.ws1e{word-spacing:-3.630000px;}
.ws53{word-spacing:-3.564000px;}
.ws4e{word-spacing:-3.498000px;}
.ws110{word-spacing:-3.432000px;}
.wsec{word-spacing:-3.366000px;}
.ws45{word-spacing:-3.234000px;}
.wsc2{word-spacing:-3.036000px;}
.ws87{word-spacing:-2.907000px;}
.wsd0{word-spacing:-2.904000px;}
.ws44{word-spacing:-2.838000px;}
.ws5f{word-spacing:-2.706000px;}
.ws6b{word-spacing:-2.640000px;}
.ws46{word-spacing:-2.574000px;}
.ws4c{word-spacing:-2.508000px;}
.ws11b{word-spacing:-2.376000px;}
.ws26{word-spacing:-2.310000px;}
.ws25{word-spacing:-2.178000px;}
.ws119{word-spacing:-1.848000px;}
.wsae{word-spacing:-1.767000px;}
.ws9a{word-spacing:-1.716000px;}
.ws74{word-spacing:-1.653000px;}
.wsbc{word-spacing:-1.539000px;}
.wse6{word-spacing:-1.452000px;}
.wsfb{word-spacing:-1.368000px;}
.ws92{word-spacing:-1.320000px;}
.ws28{word-spacing:-1.254000px;}
.wsca{word-spacing:-1.140000px;}
.ws52{word-spacing:-1.122000px;}
.wsc{word-spacing:-1.083000px;}
.ws107{word-spacing:-1.056000px;}
.ws59{word-spacing:-1.003200px;}
.ws115{word-spacing:-0.990000px;}
.wsdc{word-spacing:-0.924000px;}
.ws7f{word-spacing:-0.792000px;}
.ws21{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.627000px;}
.ws8a{word-spacing:-0.594000px;}
.wsad{word-spacing:-0.513000px;}
.ws6a{word-spacing:-0.462000px;}
.ws1c{word-spacing:-0.330000px;}
.ws9c{word-spacing:-0.264000px;}
.ws73{word-spacing:-0.228000px;}
.ws81{word-spacing:-0.171000px;}
.wsbe{word-spacing:-0.114000px;}
.wsdf{word-spacing:-0.066000px;}
.ws128{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws129{word-spacing:0.050400px;}
.ws66{word-spacing:0.066000px;}
.ws38{word-spacing:0.198000px;}
.ws2{word-spacing:0.210000px;}
.ws36{word-spacing:0.264000px;}
.ws5{word-spacing:0.330000px;}
.wse{word-spacing:0.342000px;}
.wsa5{word-spacing:0.396000px;}
.ws11e{word-spacing:0.528000px;}
.wsbf{word-spacing:0.627000px;}
.ws10f{word-spacing:0.660000px;}
.wsc7{word-spacing:0.684000px;}
.wse2{word-spacing:0.726000px;}
.wsd{word-spacing:0.741000px;}
.ws2a{word-spacing:0.858000px;}
.wsb3{word-spacing:0.969000px;}
.ws3b{word-spacing:1.056000px;}
.ws42{word-spacing:1.188000px;}
.ws9d{word-spacing:1.254000px;}
.wsb1{word-spacing:1.368000px;}
.ws11f{word-spacing:1.452000px;}
.wsa1{word-spacing:1.518000px;}
.ws125{word-spacing:1.584000px;}
.wsf5{word-spacing:1.636800px;}
.ws75{word-spacing:1.653000px;}
.ws55{word-spacing:1.716000px;}
.wsf1{word-spacing:1.782000px;}
.wsac{word-spacing:1.824000px;}
.wsff{word-spacing:1.848000px;}
.ws10{word-spacing:1.938000px;}
.ws54{word-spacing:1.980000px;}
.ws58{word-spacing:2.006400px;}
.wsa3{word-spacing:2.046000px;}
.ws40{word-spacing:2.112000px;}
.ws105{word-spacing:2.310000px;}
.ws4a{word-spacing:2.376000px;}
.ws6d{word-spacing:2.442000px;}
.ws2e{word-spacing:2.481600px;}
.ws60{word-spacing:2.508000px;}
.wsc0{word-spacing:2.565000px;}
.ws2f{word-spacing:2.640000px;}
.ws126{word-spacing:2.706000px;}
.wsc8{word-spacing:2.793000px;}
.ws35{word-spacing:2.798400px;}
.ws3{word-spacing:2.851200px;}
.ws57{word-spacing:2.904000px;}
.wsb5{word-spacing:2.907000px;}
.wsb4{word-spacing:3.021000px;}
.ws22{word-spacing:3.036000px;}
.wsb7{word-spacing:3.168000px;}
.wsba{word-spacing:3.192000px;}
.ws39{word-spacing:3.234000px;}
.ws68{word-spacing:3.366000px;}
.wse8{word-spacing:3.420000px;}
.ws48{word-spacing:3.432000px;}
.wsf4{word-spacing:3.564000px;}
.ws65{word-spacing:3.630000px;}
.ws85{word-spacing:3.762000px;}
.ws24{word-spacing:3.894000px;}
.wsc9{word-spacing:3.933000px;}
.ws10d{word-spacing:3.960000px;}
.ws41{word-spacing:4.026000px;}
.ws67{word-spacing:4.092000px;}
.ws94{word-spacing:4.118400px;}
.ws7c{word-spacing:4.158000px;}
.wscb{word-spacing:4.290000px;}
.ws3d{word-spacing:4.356000px;}
.wsfd{word-spacing:4.422000px;}
.wsc1{word-spacing:4.488000px;}
.ws96{word-spacing:4.554000px;}
.ws11c{word-spacing:4.620000px;}
.ws11d{word-spacing:4.686000px;}
.ws8f{word-spacing:4.818000px;}
.ws10e{word-spacing:4.884000px;}
.wsbd{word-spacing:4.902000px;}
.ws64{word-spacing:4.950000px;}
.wsf2{word-spacing:5.016000px;}
.ws72{word-spacing:5.130000px;}
.ws5d{word-spacing:5.148000px;}
.wsf6{word-spacing:5.174400px;}
.ws1b{word-spacing:5.214000px;}
.ws6e{word-spacing:5.280000px;}
.wsc6{word-spacing:5.301000px;}
.ws47{word-spacing:5.346000px;}
.wsf9{word-spacing:5.358000px;}
.ws5e{word-spacing:5.544000px;}
.wse7{word-spacing:5.610000px;}
.wsb0{word-spacing:5.643000px;}
.wsb2{word-spacing:5.700000px;}
.ws113{word-spacing:5.742000px;}
.ws93{word-spacing:5.913600px;}
.wsa4{word-spacing:6.138000px;}
.ws18{word-spacing:6.270000px;}
.wsbb{word-spacing:6.384000px;}
.ws3c{word-spacing:6.402000px;}
.ws90{word-spacing:6.468000px;}
.wsaa{word-spacing:6.534000px;}
.ws7{word-spacing:6.612000px;}
.wse3{word-spacing:6.666000px;}
.ws1f{word-spacing:6.732000px;}
.ws4{word-spacing:6.811200px;}
.wsd3{word-spacing:6.864000px;}
.wsb8{word-spacing:6.897000px;}
.ws29{word-spacing:6.996000px;}
.ws32{word-spacing:7.022400px;}
.ws84{word-spacing:7.068000px;}
.wsfc{word-spacing:7.125000px;}
.ws8b{word-spacing:7.128000px;}
.ws102{word-spacing:7.194000px;}
.ws43{word-spacing:7.260000px;}
.ws16{word-spacing:7.326000px;}
.ws82{word-spacing:7.353000px;}
.ws31{word-spacing:7.550400px;}
.ws83{word-spacing:7.581000px;}
.ws5c{word-spacing:7.590000px;}
.wsa9{word-spacing:7.656000px;}
.ws4d{word-spacing:7.722000px;}
.ws100{word-spacing:7.854000px;}
.wsab{word-spacing:7.920000px;}
.wsdb{word-spacing:8.052000px;}
.ws20{word-spacing:8.118000px;}
.wsb9{word-spacing:8.151000px;}
.ws2d{word-spacing:8.184000px;}
.ws37{word-spacing:8.250000px;}
.ws104{word-spacing:8.316000px;}
.ws50{word-spacing:8.382000px;}
.wsda{word-spacing:8.514000px;}
.wsde{word-spacing:8.844000px;}
.ws108{word-spacing:8.910000px;}
.ws106{word-spacing:8.976000px;}
.wsc3{word-spacing:9.063000px;}
.wse4{word-spacing:9.108000px;}
.ws6{word-spacing:9.177000px;}
.ws61{word-spacing:9.240000px;}
.wsc4{word-spacing:9.291000px;}
.ws49{word-spacing:9.372000px;}
.ws4b{word-spacing:9.438000px;}
.ws51{word-spacing:9.636000px;}
.wsd9{word-spacing:9.702000px;}
.ws9{word-spacing:9.747000px;}
.wsfa{word-spacing:9.804000px;}
.wsa0{word-spacing:9.834000px;}
.wsef{word-spacing:10.296000px;}
.wsc5{word-spacing:10.317000px;}
.wsb{word-spacing:10.374000px;}
.wsea{word-spacing:10.428000px;}
.ws56{word-spacing:10.494000px;}
.wsd2{word-spacing:10.758000px;}
.wscf{word-spacing:10.824000px;}
.ws33{word-spacing:10.876800px;}
.ws10a{word-spacing:11.022000px;}
.ws121{word-spacing:11.088000px;}
.wsa8{word-spacing:11.154000px;}
.ws17{word-spacing:11.220000px;}
.ws88{word-spacing:11.484000px;}
.wsf8{word-spacing:11.682000px;}
.wsa7{word-spacing:11.946000px;}
.ws10b{word-spacing:12.276000px;}
.ws1a{word-spacing:12.408000px;}
.wsa2{word-spacing:12.474000px;}
.ws99{word-spacing:12.540000px;}
.ws80{word-spacing:12.597000px;}
.ws11a{word-spacing:12.672000px;}
.ws30{word-spacing:12.777600px;}
.wscc{word-spacing:12.936000px;}
.ws4f{word-spacing:13.002000px;}
.wseb{word-spacing:13.068000px;}
.ws2c{word-spacing:13.094400px;}
.ws1d{word-spacing:13.134000px;}
.wsfe{word-spacing:13.266000px;}
.ws3a{word-spacing:13.332000px;}
.ws7b{word-spacing:14.058000px;}
.wsd7{word-spacing:14.124000px;}
.ws8{word-spacing:14.193000px;}
.ws111{word-spacing:14.454000px;}
.ws9e{word-spacing:14.718000px;}
.ws34{word-spacing:15.787200px;}
.wse9{word-spacing:15.972000px;}
.ws122{word-spacing:16.500000px;}
.ws114{word-spacing:16.566000px;}
.wsa6{word-spacing:16.632000px;}
.wsa{word-spacing:16.872000px;}
.ws7a{word-spacing:16.962000px;}
.ws109{word-spacing:17.028000px;}
.ws98{word-spacing:17.424000px;}
.wsd6{word-spacing:17.886000px;}
.wse5{word-spacing:18.414000px;}
.ws10c{word-spacing:18.744000px;}
.ws9f{word-spacing:18.810000px;}
.ws6f{word-spacing:19.272000px;}
.ws8c{word-spacing:19.470000px;}
.ws69{word-spacing:19.602000px;}
.ws103{word-spacing:19.800000px;}
.ws19{word-spacing:20.922000px;}
.wsd1{word-spacing:21.120000px;}
.ws70{word-spacing:21.186000px;}
.ws8d{word-spacing:21.582000px;}
.wsd4{word-spacing:21.780000px;}
.ws101{word-spacing:22.044000px;}
.wsed{word-spacing:22.506000px;}
.wsd8{word-spacing:24.024000px;}
.wsf0{word-spacing:24.486000px;}
.ws7d{word-spacing:25.278000px;}
.wsce{word-spacing:26.598000px;}
.ws7e{word-spacing:27.918000px;}
.ws112{word-spacing:28.842000px;}
.wsd5{word-spacing:29.436000px;}
.ws97{word-spacing:30.096000px;}
.ws127{word-spacing:30.360000px;}
.ws89{word-spacing:30.690000px;}
.ws79{word-spacing:32.670000px;}
.wsee{word-spacing:32.802000px;}
.ws9b{word-spacing:33.264000px;}
.ws0{word-spacing:42.984000px;}
.wsf7{word-spacing:203.518200px;}
.ws95{word-spacing:203.998200px;}
.wscd{word-spacing:205.486200px;}
.ws5a{word-spacing:205.822200px;}
.ws12{word-spacing:208.798200px;}
.ws118{word-spacing:209.806200px;}
._8{margin-left:-8.514000px;}
._7{margin-left:-7.358700px;}
._6{margin-left:-5.860800px;}
._2{margin-left:-4.540800px;}
._5{margin-left:-3.091080px;}
._0{margin-left:-1.050000px;}
._3{width:1.710000px;}
._1{width:2.837400px;}
._9{width:4.582200px;}
._a{width:6.501000px;}
._4{width:14.322000px;}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(71,45,65);}
.fc1{color:rgb(78,53,73);}
.fc0{color:rgb(88,88,90);}
.fsd{font-size:35.880000px;}
.fsb{font-size:36.000000px;}
.fse{font-size:38.760000px;}
.fs6{font-size:42.000000px;}
.fsc{font-size:44.880000px;}
.fsa{font-size:48.000000px;}
.fs7{font-size:52.800000px;}
.fsf{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs10{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:144.000000px;}
.fs0{font-size:162.000000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:2789.994000px;}
.y0{bottom:0.000000px;}
.y5{bottom:50.631000px;}
.y4{bottom:55.417500px;}
.y10{bottom:85.039350px;}
.y9d{bottom:85.039500px;}
.y4e{bottom:88.039350px;}
.y7d{bottom:88.039500px;}
.ye9{bottom:88.039650px;}
.y124{bottom:95.167350px;}
.y4d{bottom:99.921300px;}
.yf{bottom:100.489350px;}
.y9c{bottom:100.489500px;}
.y7c{bottom:102.921300px;}
.ye8{bottom:102.921600px;}
.y123{bottom:114.367350px;}
.y4c{bottom:115.371300px;}
.ye{bottom:115.939350px;}
.y9b{bottom:115.939500px;}
.ye2{bottom:117.803250px;}
.ye7{bottom:117.803700px;}
.y104{bottom:118.371300px;}
.y76{bottom:118.939350px;}
.y4b{bottom:130.821300px;}
.y103{bottom:133.253250px;}
.y122{bottom:133.567350px;}
.y9a{bottom:134.389500px;}
.y1{bottom:137.607000px;}
.y125{bottom:139.090500px;}
.y13e{bottom:139.740000px;}
.yba{bottom:143.622150px;}
.y102{bottom:148.135050px;}
.y7b{bottom:149.259450px;}
.y4a{bottom:149.271300px;}
.y99{bottom:149.271600px;}
.y121{bottom:152.767350px;}
.y101{bottom:160.017000px;}
.yb9{bottom:160.122150px;}
.y49{bottom:161.153250px;}
.y98{bottom:164.153700px;}
.ye1{bottom:164.247000px;}
.y120{bottom:164.776800px;}
.y7a{bottom:165.759450px;}
.ye6{bottom:169.030050px;}
.y21{bottom:170.810700px;}
.y75{bottom:171.967350px;}
.y3{bottom:175.138500px;}
.y100{bottom:175.467000px;}
.yb8{bottom:176.622150px;}
.y48{bottom:179.603250px;}
.y79{bottom:182.259450px;}
.ye0{bottom:183.447000px;}
.y11f{bottom:183.976800px;}
.y20{bottom:187.910700px;}
.ye5{bottom:188.230050px;}
.yff{bottom:190.917000px;}
.y74{bottom:191.167350px;}
.y47{bottom:191.485050px;}
.yb7{bottom:193.122150px;}
.y78{bottom:198.759450px;}
.y11e{bottom:203.176800px;}
.y1f{bottom:205.010700px;}
.yfe{bottom:206.367000px;}
.y46{bottom:206.935050px;}
.ye4{bottom:207.430050px;}
.y73{bottom:210.367350px;}
.y77{bottom:215.259450px;}
.ydf{bottom:219.654900px;}
.y1e{bottom:222.110700px;}
.y11d{bottom:222.376950px;}
.yfd{bottom:224.817000px;}
.y45{bottom:225.385050px;}
.yb6{bottom:226.630050px;}
.y72{bottom:229.567350px;}
.yde{bottom:236.154900px;}
.y44{bottom:237.267000px;}
.y97{bottom:239.051700px;}
.y1d{bottom:239.210700px;}
.y11c{bottom:241.576800px;}
.yb5{bottom:245.830050px;}
.y71{bottom:248.767350px;}
.ydd{bottom:252.654900px;}
.y43{bottom:252.717000px;}
.y1c{bottom:256.310700px;}
.y96{bottom:258.251700px;}
.y11b{bottom:260.776800px;}
.yb4{bottom:265.030050px;}
.y70{bottom:267.967350px;}
.ydc{bottom:269.154900px;}
.y42{bottom:271.167000px;}
.y1b{bottom:273.410700px;}
.y95{bottom:277.451700px;}
.y41{bottom:283.048800px;}
.yb3{bottom:284.230050px;}
.ydb{bottom:285.654900px;}
.y6f{bottom:287.167350px;}
.y1a{bottom:294.762750px;}
.y94{bottom:296.651700px;}
.y40{bottom:298.498950px;}
.yfc{bottom:299.651700px;}
.y11a{bottom:301.236750px;}
.yda{bottom:302.154900px;}
.yb2{bottom:303.430050px;}
.y13d{bottom:305.809500px;}
.y6e{bottom:306.367350px;}
.y19{bottom:311.862750px;}
.y3f{bottom:313.948950px;}
.y93{bottom:315.851700px;}
.yd9{bottom:318.654900px;}
.yfb{bottom:318.851700px;}
.yb1{bottom:322.630050px;}
.y6d{bottom:325.567350px;}
.y18{bottom:328.962750px;}
.y3e{bottom:332.398950px;}
.y92{bottom:335.051700px;}
.yd8{bottom:335.154900px;}
.yfa{bottom:338.051700px;}
.yb0{bottom:341.830050px;}
.y6c{bottom:344.767350px;}
.y17{bottom:346.062750px;}
.yd7{bottom:351.654900px;}
.y91{bottom:354.251700px;}
.yf9{bottom:357.251700px;}
.yaf{bottom:361.030050px;}
.y16{bottom:363.162750px;}
.y6b{bottom:363.967350px;}
.yd6{bottom:368.154900px;}
.y90{bottom:373.451700px;}
.yf8{bottom:376.451700px;}
.y119{bottom:378.914250px;}
.yae{bottom:380.230050px;}
.y15{bottom:380.262750px;}
.y3d{bottom:381.107550px;}
.y6a{bottom:383.167350px;}
.yd5{bottom:384.654900px;}
.y8f{bottom:392.651700px;}
.yf7{bottom:395.651700px;}
.y14{bottom:397.362600px;}
.y118{bottom:398.114250px;}
.yad{bottom:399.430050px;}
.y3c{bottom:400.307550px;}
.y69{bottom:402.367350px;}
.y8e{bottom:411.851700px;}
.y13{bottom:414.462750px;}
.yf6{bottom:414.851700px;}
.y117{bottom:417.314250px;}
.yd4{bottom:418.162800px;}
.yac{bottom:418.630050px;}
.y3b{bottom:419.507550px;}
.ye3{bottom:420.689850px;}
.y68{bottom:421.567350px;}
.y8d{bottom:431.051700px;}
.yf5{bottom:434.051700px;}
.y116{bottom:436.514250px;}
.yd3{bottom:437.362800px;}
.yab{bottom:437.830050px;}
.y3a{bottom:438.707550px;}
.y67{bottom:440.767350px;}
.y8c{bottom:450.251700px;}
.y2{bottom:450.295500px;}
.yf4{bottom:453.251700px;}
.y115{bottom:455.714250px;}
.yd2{bottom:456.562800px;}
.yaa{bottom:457.030050px;}
.y12{bottom:457.074450px;}
.y39{bottom:457.907550px;}
.y66{bottom:459.967350px;}
.y8b{bottom:469.451700px;}
.yf3{bottom:472.451700px;}
.y13c{bottom:472.755000px;}
.y114{bottom:474.914250px;}
.yd1{bottom:475.762800px;}
.ya9{bottom:476.230050px;}
.y38{bottom:477.107550px;}
.y65{bottom:479.167350px;}
.y8a{bottom:488.651700px;}
.y13b{bottom:490.755000px;}
.yf2{bottom:491.651700px;}
.y113{bottom:494.114250px;}
.ya8{bottom:495.430050px;}
.y37{bottom:496.307550px;}
.y64{bottom:498.367350px;}
.y89{bottom:507.851700px;}
.y13a{bottom:508.755000px;}
.yf1{bottom:510.851700px;}
.yd0{bottom:511.970700px;}
.y112{bottom:513.314250px;}
.ya7{bottom:514.630050px;}
.y36{bottom:515.507550px;}
.y63{bottom:517.567350px;}
.y139{bottom:526.755000px;}
.y88{bottom:527.051700px;}
.ycf{bottom:528.470700px;}
.yf0{bottom:530.051700px;}
.y111{bottom:532.514250px;}
.ya6{bottom:533.830050px;}
.y35{bottom:534.707550px;}
.y62{bottom:536.767350px;}
.y138{bottom:544.755000px;}
.yce{bottom:544.970700px;}
.y87{bottom:546.251700px;}
.yef{bottom:549.251700px;}
.y110{bottom:551.714250px;}
.ya5{bottom:553.030050px;}
.y34{bottom:553.907550px;}
.y61{bottom:555.967500px;}
.ycd{bottom:561.470700px;}
.y137{bottom:562.755000px;}
.yee{bottom:568.451700px;}
.y10f{bottom:570.914250px;}
.ya4{bottom:572.230050px;}
.y33{bottom:573.107550px;}
.y60{bottom:575.167350px;}
.ycc{bottom:577.970700px;}
.y136{bottom:580.755000px;}
.y86{bottom:582.459450px;}
.yed{bottom:587.651700px;}
.y10e{bottom:590.114250px;}
.ya3{bottom:591.430050px;}
.y32{bottom:592.307550px;}
.y5f{bottom:594.367350px;}
.ycb{bottom:594.470700px;}
.y85{bottom:598.959450px;}
.yec{bottom:606.851550px;}
.y10d{bottom:609.314250px;}
.ya2{bottom:610.630050px;}
.yca{bottom:610.970700px;}
.y31{bottom:611.507550px;}
.y5e{bottom:613.567350px;}
.y84{bottom:615.459450px;}
.y135{bottom:620.355000px;}
.y11{bottom:624.043350px;}
.yeb{bottom:626.051700px;}
.yc9{bottom:627.470700px;}
.ya1{bottom:629.830050px;}
.y30{bottom:630.707550px;}
.y83{bottom:631.959450px;}
.y5d{bottom:632.767350px;}
.y134{bottom:638.355000px;}
.yc8{bottom:643.970700px;}
.yea{bottom:645.251700px;}
.y82{bottom:648.459450px;}
.ya0{bottom:649.030050px;}
.y10c{bottom:649.774050px;}
.y2f{bottom:649.907550px;}
.y5c{bottom:651.967500px;}
.y133{bottom:656.355000px;}
.yc7{bottom:660.470700px;}
.y81{bottom:664.959450px;}
.y9f{bottom:668.230050px;}
.y2e{bottom:669.107550px;}
.y5b{bottom:671.167350px;}
.y132{bottom:674.355000px;}
.y80{bottom:681.459450px;}
.y2d{bottom:688.307550px;}
.y5a{bottom:690.367350px;}
.y131{bottom:692.355000px;}
.yc6{bottom:693.978450px;}
.y7f{bottom:697.959450px;}
.y2c{bottom:707.507550px;}
.y9e{bottom:708.689850px;}
.y59{bottom:709.567350px;}
.y130{bottom:710.355000px;}
.yc5{bottom:713.178450px;}
.y7e{bottom:714.459450px;}
.y2b{bottom:726.707550px;}
.y10b{bottom:727.451700px;}
.y12f{bottom:728.355000px;}
.y58{bottom:728.767350px;}
.yc4{bottom:732.378450px;}
.y2a{bottom:745.907550px;}
.y12e{bottom:746.355000px;}
.y10a{bottom:746.651700px;}
.y57{bottom:747.967350px;}
.yc3{bottom:751.578450px;}
.y12d{bottom:764.355000px;}
.y29{bottom:765.107550px;}
.y56{bottom:767.167350px;}
.yd{bottom:770.821350px;}
.y12c{bottom:782.355000px;}
.y109{bottom:782.859600px;}
.y28{bottom:784.307550px;}
.y55{bottom:786.367350px;}
.yc2{bottom:787.786350px;}
.y108{bottom:799.359600px;}
.y12b{bottom:800.355000px;}
.y27{bottom:803.507550px;}
.yc1{bottom:804.286350px;}
.y54{bottom:805.567350px;}
.yc{bottom:814.021350px;}
.y107{bottom:815.859600px;}
.yc0{bottom:820.786350px;}
.y6{bottom:822.209700px;}
.y26{bottom:822.707550px;}
.y53{bottom:824.767350px;}
.y106{bottom:832.359600px;}
.y12a{bottom:836.355000px;}
.ybf{bottom:837.286350px;}
.y25{bottom:841.907550px;}
.y52{bottom:843.967500px;}
.y105{bottom:848.859600px;}
.ybe{bottom:853.786350px;}
.y129{bottom:854.355000px;}
.yb{bottom:857.221350px;}
.y24{bottom:861.107550px;}
.y51{bottom:863.167350px;}
.ybd{bottom:870.286350px;}
.y50{bottom:882.367350px;}
.ybc{bottom:886.786350px;}
.y128{bottom:891.200550px;}
.y23{bottom:901.567350px;}
.ybb{bottom:903.286350px;}
.y127{bottom:912.800550px;}
.ya{bottom:928.350000px;}
.y126{bottom:937.401150px;}
.y9{bottom:940.950000px;}
.y22{bottom:943.936950px;}
.y4f{bottom:945.872100px;}
.y8{bottom:953.550000px;}
.y7{bottom:966.150000px;}
.h12{height:32.004000px;}
.ha{height:32.172000px;}
.h6{height:37.872000px;}
.hf{height:42.672000px;}
.h18{height:43.800000px;}
.hb{height:47.836800px;}
.h14{height:48.006000px;}
.he{height:51.642000px;}
.h15{height:51.912000px;}
.h17{height:53.340000px;}
.h13{height:59.116560px;}
.hd{height:59.664000px;}
.h10{height:59.796000px;}
.h7{height:62.412000px;}
.h19{height:64.008000px;}
.h16{height:64.020000px;}
.h11{height:64.661280px;}
.hc{height:65.232000px;}
.h2{height:114.222656px;}
.h5{height:122.580000px;}
.h9{height:130.464000px;}
.h3{height:479.179500px;}
.h0{height:1020.471000px;}
.h8{height:1020.472500px;}
.h1{height:1020.750000px;}
.h4{height:1916.725878px;}
.w2{width:538.920000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x3{left:-20.156100px;}
.x0{left:0.000000px;}
.x6{left:85.039350px;}
.x2{left:88.428000px;}
.xe{left:99.602850px;}
.xd{left:102.079050px;}
.x7{left:106.299150px;}
.x4{left:110.569350px;}
.x1{left:113.421450px;}
.xa{left:188.094150px;}
.x5{left:297.360000px;}
.x8{left:361.417350px;}
.xf{left:510.666000px;}
.xb{left:625.027500px;}
.x9{left:626.479350px;}
.xc{left:628.207350px;}
@media print{
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.880533pt;}
.v2{vertical-align:21.333333pt;}
.ls1{letter-spacing:-42.159909pt;}
.ls2{letter-spacing:-7.904000pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.253333pt;}
.ls7{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.186667pt;}
.ls0{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.119680pt;}
.lsb{letter-spacing:-0.103360pt;}
.lsd{letter-spacing:-0.095680pt;}
.ls11{letter-spacing:-0.044800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.373867pt;}
.ls4{letter-spacing:3.434667pt;}
.lse{letter-spacing:7.673600pt;}
.lsa{letter-spacing:10.278400pt;}
.wsaf{word-spacing:-16.309333pt;}
.ws13{word-spacing:-16.016000pt;}
.ws14{word-spacing:-11.090347pt;}
.ws77{word-spacing:-10.970667pt;}
.ws5b{word-spacing:-9.578027pt;}
.ws76{word-spacing:-9.474667pt;}
.ws15{word-spacing:-8.866347pt;}
.ws78{word-spacing:-8.770667pt;}
.ws123{word-spacing:-7.626667pt;}
.ws3e{word-spacing:-7.450667pt;}
.ws91{word-spacing:-7.392000pt;}
.wsdd{word-spacing:-7.216000pt;}
.wsb6{word-spacing:-6.453333pt;}
.ws62{word-spacing:-6.160000pt;}
.ws116{word-spacing:-6.042667pt;}
.ws124{word-spacing:-5.984000pt;}
.wsf3{word-spacing:-5.632000pt;}
.ws8e{word-spacing:-5.514667pt;}
.ws2b{word-spacing:-5.456000pt;}
.wse1{word-spacing:-5.104000pt;}
.ws3f{word-spacing:-4.869333pt;}
.ws86{word-spacing:-4.712000pt;}
.ws6c{word-spacing:-4.634667pt;}
.wse0{word-spacing:-4.458667pt;}
.wsf{word-spacing:-4.104000pt;}
.ws27{word-spacing:-3.813333pt;}
.ws117{word-spacing:-3.637333pt;}
.ws63{word-spacing:-3.578667pt;}
.ws71{word-spacing:-3.520000pt;}
.ws23{word-spacing:-3.344000pt;}
.ws120{word-spacing:-3.285333pt;}
.ws1e{word-spacing:-3.226667pt;}
.ws53{word-spacing:-3.168000pt;}
.ws4e{word-spacing:-3.109333pt;}
.ws110{word-spacing:-3.050667pt;}
.wsec{word-spacing:-2.992000pt;}
.ws45{word-spacing:-2.874667pt;}
.wsc2{word-spacing:-2.698667pt;}
.ws87{word-spacing:-2.584000pt;}
.wsd0{word-spacing:-2.581333pt;}
.ws44{word-spacing:-2.522667pt;}
.ws5f{word-spacing:-2.405333pt;}
.ws6b{word-spacing:-2.346667pt;}
.ws46{word-spacing:-2.288000pt;}
.ws4c{word-spacing:-2.229333pt;}
.ws11b{word-spacing:-2.112000pt;}
.ws26{word-spacing:-2.053333pt;}
.ws25{word-spacing:-1.936000pt;}
.ws119{word-spacing:-1.642667pt;}
.wsae{word-spacing:-1.570667pt;}
.ws9a{word-spacing:-1.525333pt;}
.ws74{word-spacing:-1.469333pt;}
.wsbc{word-spacing:-1.368000pt;}
.wse6{word-spacing:-1.290667pt;}
.wsfb{word-spacing:-1.216000pt;}
.ws92{word-spacing:-1.173333pt;}
.ws28{word-spacing:-1.114667pt;}
.wsca{word-spacing:-1.013333pt;}
.ws52{word-spacing:-0.997333pt;}
.wsc{word-spacing:-0.962667pt;}
.ws107{word-spacing:-0.938667pt;}
.ws59{word-spacing:-0.891733pt;}
.ws115{word-spacing:-0.880000pt;}
.wsdc{word-spacing:-0.821333pt;}
.ws7f{word-spacing:-0.704000pt;}
.ws21{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.557333pt;}
.ws8a{word-spacing:-0.528000pt;}
.wsad{word-spacing:-0.456000pt;}
.ws6a{word-spacing:-0.410667pt;}
.ws1c{word-spacing:-0.293333pt;}
.ws9c{word-spacing:-0.234667pt;}
.ws73{word-spacing:-0.202667pt;}
.ws81{word-spacing:-0.152000pt;}
.wsbe{word-spacing:-0.101333pt;}
.wsdf{word-spacing:-0.058667pt;}
.ws128{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws129{word-spacing:0.044800pt;}
.ws66{word-spacing:0.058667pt;}
.ws38{word-spacing:0.176000pt;}
.ws2{word-spacing:0.186667pt;}
.ws36{word-spacing:0.234667pt;}
.ws5{word-spacing:0.293333pt;}
.wse{word-spacing:0.304000pt;}
.wsa5{word-spacing:0.352000pt;}
.ws11e{word-spacing:0.469333pt;}
.wsbf{word-spacing:0.557333pt;}
.ws10f{word-spacing:0.586667pt;}
.wsc7{word-spacing:0.608000pt;}
.wse2{word-spacing:0.645333pt;}
.wsd{word-spacing:0.658667pt;}
.ws2a{word-spacing:0.762667pt;}
.wsb3{word-spacing:0.861333pt;}
.ws3b{word-spacing:0.938667pt;}
.ws42{word-spacing:1.056000pt;}
.ws9d{word-spacing:1.114667pt;}
.wsb1{word-spacing:1.216000pt;}
.ws11f{word-spacing:1.290667pt;}
.wsa1{word-spacing:1.349333pt;}
.ws125{word-spacing:1.408000pt;}
.wsf5{word-spacing:1.454933pt;}
.ws75{word-spacing:1.469333pt;}
.ws55{word-spacing:1.525333pt;}
.wsf1{word-spacing:1.584000pt;}
.wsac{word-spacing:1.621333pt;}
.wsff{word-spacing:1.642667pt;}
.ws10{word-spacing:1.722667pt;}
.ws54{word-spacing:1.760000pt;}
.ws58{word-spacing:1.783467pt;}
.wsa3{word-spacing:1.818667pt;}
.ws40{word-spacing:1.877333pt;}
.ws105{word-spacing:2.053333pt;}
.ws4a{word-spacing:2.112000pt;}
.ws6d{word-spacing:2.170667pt;}
.ws2e{word-spacing:2.205867pt;}
.ws60{word-spacing:2.229333pt;}
.wsc0{word-spacing:2.280000pt;}
.ws2f{word-spacing:2.346667pt;}
.ws126{word-spacing:2.405333pt;}
.wsc8{word-spacing:2.482667pt;}
.ws35{word-spacing:2.487467pt;}
.ws3{word-spacing:2.534400pt;}
.ws57{word-spacing:2.581333pt;}
.wsb5{word-spacing:2.584000pt;}
.wsb4{word-spacing:2.685333pt;}
.ws22{word-spacing:2.698667pt;}
.wsb7{word-spacing:2.816000pt;}
.wsba{word-spacing:2.837333pt;}
.ws39{word-spacing:2.874667pt;}
.ws68{word-spacing:2.992000pt;}
.wse8{word-spacing:3.040000pt;}
.ws48{word-spacing:3.050667pt;}
.wsf4{word-spacing:3.168000pt;}
.ws65{word-spacing:3.226667pt;}
.ws85{word-spacing:3.344000pt;}
.ws24{word-spacing:3.461333pt;}
.wsc9{word-spacing:3.496000pt;}
.ws10d{word-spacing:3.520000pt;}
.ws41{word-spacing:3.578667pt;}
.ws67{word-spacing:3.637333pt;}
.ws94{word-spacing:3.660800pt;}
.ws7c{word-spacing:3.696000pt;}
.wscb{word-spacing:3.813333pt;}
.ws3d{word-spacing:3.872000pt;}
.wsfd{word-spacing:3.930667pt;}
.wsc1{word-spacing:3.989333pt;}
.ws96{word-spacing:4.048000pt;}
.ws11c{word-spacing:4.106667pt;}
.ws11d{word-spacing:4.165333pt;}
.ws8f{word-spacing:4.282667pt;}
.ws10e{word-spacing:4.341333pt;}
.wsbd{word-spacing:4.357333pt;}
.ws64{word-spacing:4.400000pt;}
.wsf2{word-spacing:4.458667pt;}
.ws72{word-spacing:4.560000pt;}
.ws5d{word-spacing:4.576000pt;}
.wsf6{word-spacing:4.599467pt;}
.ws1b{word-spacing:4.634667pt;}
.ws6e{word-spacing:4.693333pt;}
.wsc6{word-spacing:4.712000pt;}
.ws47{word-spacing:4.752000pt;}
.wsf9{word-spacing:4.762667pt;}
.ws5e{word-spacing:4.928000pt;}
.wse7{word-spacing:4.986667pt;}
.wsb0{word-spacing:5.016000pt;}
.wsb2{word-spacing:5.066667pt;}
.ws113{word-spacing:5.104000pt;}
.ws93{word-spacing:5.256533pt;}
.wsa4{word-spacing:5.456000pt;}
.ws18{word-spacing:5.573333pt;}
.wsbb{word-spacing:5.674667pt;}
.ws3c{word-spacing:5.690667pt;}
.ws90{word-spacing:5.749333pt;}
.wsaa{word-spacing:5.808000pt;}
.ws7{word-spacing:5.877333pt;}
.wse3{word-spacing:5.925333pt;}
.ws1f{word-spacing:5.984000pt;}
.ws4{word-spacing:6.054400pt;}
.wsd3{word-spacing:6.101333pt;}
.wsb8{word-spacing:6.130667pt;}
.ws29{word-spacing:6.218667pt;}
.ws32{word-spacing:6.242133pt;}
.ws84{word-spacing:6.282667pt;}
.wsfc{word-spacing:6.333333pt;}
.ws8b{word-spacing:6.336000pt;}
.ws102{word-spacing:6.394667pt;}
.ws43{word-spacing:6.453333pt;}
.ws16{word-spacing:6.512000pt;}
.ws82{word-spacing:6.536000pt;}
.ws31{word-spacing:6.711467pt;}
.ws83{word-spacing:6.738667pt;}
.ws5c{word-spacing:6.746667pt;}
.wsa9{word-spacing:6.805333pt;}
.ws4d{word-spacing:6.864000pt;}
.ws100{word-spacing:6.981333pt;}
.wsab{word-spacing:7.040000pt;}
.wsdb{word-spacing:7.157333pt;}
.ws20{word-spacing:7.216000pt;}
.wsb9{word-spacing:7.245333pt;}
.ws2d{word-spacing:7.274667pt;}
.ws37{word-spacing:7.333333pt;}
.ws104{word-spacing:7.392000pt;}
.ws50{word-spacing:7.450667pt;}
.wsda{word-spacing:7.568000pt;}
.wsde{word-spacing:7.861333pt;}
.ws108{word-spacing:7.920000pt;}
.ws106{word-spacing:7.978667pt;}
.wsc3{word-spacing:8.056000pt;}
.wse4{word-spacing:8.096000pt;}
.ws6{word-spacing:8.157333pt;}
.ws61{word-spacing:8.213333pt;}
.wsc4{word-spacing:8.258667pt;}
.ws49{word-spacing:8.330667pt;}
.ws4b{word-spacing:8.389333pt;}
.ws51{word-spacing:8.565333pt;}
.wsd9{word-spacing:8.624000pt;}
.ws9{word-spacing:8.664000pt;}
.wsfa{word-spacing:8.714667pt;}
.wsa0{word-spacing:8.741333pt;}
.wsef{word-spacing:9.152000pt;}
.wsc5{word-spacing:9.170667pt;}
.wsb{word-spacing:9.221333pt;}
.wsea{word-spacing:9.269333pt;}
.ws56{word-spacing:9.328000pt;}
.wsd2{word-spacing:9.562667pt;}
.wscf{word-spacing:9.621333pt;}
.ws33{word-spacing:9.668267pt;}
.ws10a{word-spacing:9.797333pt;}
.ws121{word-spacing:9.856000pt;}
.wsa8{word-spacing:9.914667pt;}
.ws17{word-spacing:9.973333pt;}
.ws88{word-spacing:10.208000pt;}
.wsf8{word-spacing:10.384000pt;}
.wsa7{word-spacing:10.618667pt;}
.ws10b{word-spacing:10.912000pt;}
.ws1a{word-spacing:11.029333pt;}
.wsa2{word-spacing:11.088000pt;}
.ws99{word-spacing:11.146667pt;}
.ws80{word-spacing:11.197333pt;}
.ws11a{word-spacing:11.264000pt;}
.ws30{word-spacing:11.357867pt;}
.wscc{word-spacing:11.498667pt;}
.ws4f{word-spacing:11.557333pt;}
.wseb{word-spacing:11.616000pt;}
.ws2c{word-spacing:11.639467pt;}
.ws1d{word-spacing:11.674667pt;}
.wsfe{word-spacing:11.792000pt;}
.ws3a{word-spacing:11.850667pt;}
.ws7b{word-spacing:12.496000pt;}
.wsd7{word-spacing:12.554667pt;}
.ws8{word-spacing:12.616000pt;}
.ws111{word-spacing:12.848000pt;}
.ws9e{word-spacing:13.082667pt;}
.ws34{word-spacing:14.033067pt;}
.wse9{word-spacing:14.197333pt;}
.ws122{word-spacing:14.666667pt;}
.ws114{word-spacing:14.725333pt;}
.wsa6{word-spacing:14.784000pt;}
.wsa{word-spacing:14.997333pt;}
.ws7a{word-spacing:15.077333pt;}
.ws109{word-spacing:15.136000pt;}
.ws98{word-spacing:15.488000pt;}
.wsd6{word-spacing:15.898667pt;}
.wse5{word-spacing:16.368000pt;}
.ws10c{word-spacing:16.661333pt;}
.ws9f{word-spacing:16.720000pt;}
.ws6f{word-spacing:17.130667pt;}
.ws8c{word-spacing:17.306667pt;}
.ws69{word-spacing:17.424000pt;}
.ws103{word-spacing:17.600000pt;}
.ws19{word-spacing:18.597333pt;}
.wsd1{word-spacing:18.773333pt;}
.ws70{word-spacing:18.832000pt;}
.ws8d{word-spacing:19.184000pt;}
.wsd4{word-spacing:19.360000pt;}
.ws101{word-spacing:19.594667pt;}
.wsed{word-spacing:20.005333pt;}
.wsd8{word-spacing:21.354667pt;}
.wsf0{word-spacing:21.765333pt;}
.ws7d{word-spacing:22.469333pt;}
.wsce{word-spacing:23.642667pt;}
.ws7e{word-spacing:24.816000pt;}
.ws112{word-spacing:25.637333pt;}
.wsd5{word-spacing:26.165333pt;}
.ws97{word-spacing:26.752000pt;}
.ws127{word-spacing:26.986667pt;}
.ws89{word-spacing:27.280000pt;}
.ws79{word-spacing:29.040000pt;}
.wsee{word-spacing:29.157333pt;}
.ws9b{word-spacing:29.568000pt;}
.ws0{word-spacing:38.208000pt;}
.wsf7{word-spacing:180.905067pt;}
.ws95{word-spacing:181.331733pt;}
.wscd{word-spacing:182.654400pt;}
.ws5a{word-spacing:182.953067pt;}
.ws12{word-spacing:185.598400pt;}
.ws118{word-spacing:186.494400pt;}
._8{margin-left:-7.568000pt;}
._7{margin-left:-6.541067pt;}
._6{margin-left:-5.209600pt;}
._2{margin-left:-4.036267pt;}
._5{margin-left:-2.747627pt;}
._0{margin-left:-0.933333pt;}
._3{width:1.520000pt;}
._1{width:2.522133pt;}
._9{width:4.073067pt;}
._a{width:5.778667pt;}
._4{width:12.730667pt;}
.fsd{font-size:31.893333pt;}
.fsb{font-size:32.000000pt;}
.fse{font-size:34.453333pt;}
.fs6{font-size:37.333333pt;}
.fsc{font-size:39.893333pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:46.933333pt;}
.fsf{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs10{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:128.000000pt;}
.fs0{font-size:144.000000pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:2479.994667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:45.005333pt;}
.y4{bottom:49.260000pt;}
.y10{bottom:75.590533pt;}
.y9d{bottom:75.590667pt;}
.y4e{bottom:78.257200pt;}
.y7d{bottom:78.257333pt;}
.ye9{bottom:78.257467pt;}
.y124{bottom:84.593200pt;}
.y4d{bottom:88.818933pt;}
.yf{bottom:89.323867pt;}
.y9c{bottom:89.324000pt;}
.y7c{bottom:91.485600pt;}
.ye8{bottom:91.485867pt;}
.y123{bottom:101.659867pt;}
.y4c{bottom:102.552267pt;}
.ye{bottom:103.057200pt;}
.y9b{bottom:103.057333pt;}
.ye2{bottom:104.714000pt;}
.ye7{bottom:104.714400pt;}
.y104{bottom:105.218933pt;}
.y76{bottom:105.723867pt;}
.y4b{bottom:116.285600pt;}
.y103{bottom:118.447333pt;}
.y122{bottom:118.726533pt;}
.y9a{bottom:119.457333pt;}
.y1{bottom:122.317333pt;}
.y125{bottom:123.636000pt;}
.y13e{bottom:124.213333pt;}
.yba{bottom:127.664133pt;}
.y102{bottom:131.675600pt;}
.y7b{bottom:132.675067pt;}
.y4a{bottom:132.685600pt;}
.y99{bottom:132.685867pt;}
.y121{bottom:135.793200pt;}
.y101{bottom:142.237333pt;}
.yb9{bottom:142.330800pt;}
.y49{bottom:143.247333pt;}
.y98{bottom:145.914400pt;}
.ye1{bottom:145.997333pt;}
.y120{bottom:146.468267pt;}
.y7a{bottom:147.341733pt;}
.ye6{bottom:150.248933pt;}
.y21{bottom:151.831733pt;}
.y75{bottom:152.859867pt;}
.y3{bottom:155.678667pt;}
.y100{bottom:155.970667pt;}
.yb8{bottom:156.997467pt;}
.y48{bottom:159.647333pt;}
.y79{bottom:162.008400pt;}
.ye0{bottom:163.064000pt;}
.y11f{bottom:163.534933pt;}
.y20{bottom:167.031733pt;}
.ye5{bottom:167.315600pt;}
.yff{bottom:169.704000pt;}
.y74{bottom:169.926533pt;}
.y47{bottom:170.208933pt;}
.yb7{bottom:171.664133pt;}
.y78{bottom:176.675067pt;}
.y11e{bottom:180.601600pt;}
.y1f{bottom:182.231733pt;}
.yfe{bottom:183.437333pt;}
.y46{bottom:183.942267pt;}
.ye4{bottom:184.382267pt;}
.y73{bottom:186.993200pt;}
.y77{bottom:191.341733pt;}
.ydf{bottom:195.248800pt;}
.y1e{bottom:197.431733pt;}
.y11d{bottom:197.668400pt;}
.yfd{bottom:199.837333pt;}
.y45{bottom:200.342267pt;}
.yb6{bottom:201.448933pt;}
.y72{bottom:204.059867pt;}
.yde{bottom:209.915467pt;}
.y44{bottom:210.904000pt;}
.y97{bottom:212.490400pt;}
.y1d{bottom:212.631733pt;}
.y11c{bottom:214.734933pt;}
.yb5{bottom:218.515600pt;}
.y71{bottom:221.126533pt;}
.ydd{bottom:224.582133pt;}
.y43{bottom:224.637333pt;}
.y1c{bottom:227.831733pt;}
.y96{bottom:229.557067pt;}
.y11b{bottom:231.801600pt;}
.yb4{bottom:235.582267pt;}
.y70{bottom:238.193200pt;}
.ydc{bottom:239.248800pt;}
.y42{bottom:241.037333pt;}
.y1b{bottom:243.031733pt;}
.y95{bottom:246.623733pt;}
.y41{bottom:251.598933pt;}
.yb3{bottom:252.648933pt;}
.ydb{bottom:253.915467pt;}
.y6f{bottom:255.259867pt;}
.y1a{bottom:262.011333pt;}
.y94{bottom:263.690400pt;}
.y40{bottom:265.332400pt;}
.yfc{bottom:266.357067pt;}
.y11a{bottom:267.766000pt;}
.yda{bottom:268.582133pt;}
.yb2{bottom:269.715600pt;}
.y13d{bottom:271.830667pt;}
.y6e{bottom:272.326533pt;}
.y19{bottom:277.211333pt;}
.y3f{bottom:279.065733pt;}
.y93{bottom:280.757067pt;}
.yd9{bottom:283.248800pt;}
.yfb{bottom:283.423733pt;}
.yb1{bottom:286.782267pt;}
.y6d{bottom:289.393200pt;}
.y18{bottom:292.411333pt;}
.y3e{bottom:295.465733pt;}
.y92{bottom:297.823733pt;}
.yd8{bottom:297.915467pt;}
.yfa{bottom:300.490400pt;}
.yb0{bottom:303.848933pt;}
.y6c{bottom:306.459867pt;}
.y17{bottom:307.611333pt;}
.yd7{bottom:312.582133pt;}
.y91{bottom:314.890400pt;}
.yf9{bottom:317.557067pt;}
.yaf{bottom:320.915600pt;}
.y16{bottom:322.811333pt;}
.y6b{bottom:323.526533pt;}
.yd6{bottom:327.248800pt;}
.y90{bottom:331.957067pt;}
.yf8{bottom:334.623733pt;}
.y119{bottom:336.812667pt;}
.yae{bottom:337.982267pt;}
.y15{bottom:338.011333pt;}
.y3d{bottom:338.762267pt;}
.y6a{bottom:340.593200pt;}
.yd5{bottom:341.915467pt;}
.y8f{bottom:349.023733pt;}
.yf7{bottom:351.690400pt;}
.y14{bottom:353.211200pt;}
.y118{bottom:353.879333pt;}
.yad{bottom:355.048933pt;}
.y3c{bottom:355.828933pt;}
.y69{bottom:357.659867pt;}
.y8e{bottom:366.090400pt;}
.y13{bottom:368.411333pt;}
.yf6{bottom:368.757067pt;}
.y117{bottom:370.946000pt;}
.yd4{bottom:371.700267pt;}
.yac{bottom:372.115600pt;}
.y3b{bottom:372.895600pt;}
.ye3{bottom:373.946533pt;}
.y68{bottom:374.726533pt;}
.y8d{bottom:383.157067pt;}
.yf5{bottom:385.823733pt;}
.y116{bottom:388.012667pt;}
.yd3{bottom:388.766933pt;}
.yab{bottom:389.182267pt;}
.y3a{bottom:389.962267pt;}
.y67{bottom:391.793200pt;}
.y8c{bottom:400.223733pt;}
.y2{bottom:400.262667pt;}
.yf4{bottom:402.890400pt;}
.y115{bottom:405.079333pt;}
.yd2{bottom:405.833600pt;}
.yaa{bottom:406.248933pt;}
.y12{bottom:406.288400pt;}
.y39{bottom:407.028933pt;}
.y66{bottom:408.859867pt;}
.y8b{bottom:417.290400pt;}
.yf3{bottom:419.957067pt;}
.y13c{bottom:420.226667pt;}
.y114{bottom:422.146000pt;}
.yd1{bottom:422.900267pt;}
.ya9{bottom:423.315600pt;}
.y38{bottom:424.095600pt;}
.y65{bottom:425.926533pt;}
.y8a{bottom:434.357067pt;}
.y13b{bottom:436.226667pt;}
.yf2{bottom:437.023733pt;}
.y113{bottom:439.212667pt;}
.ya8{bottom:440.382267pt;}
.y37{bottom:441.162267pt;}
.y64{bottom:442.993200pt;}
.y89{bottom:451.423733pt;}
.y13a{bottom:452.226667pt;}
.yf1{bottom:454.090400pt;}
.yd0{bottom:455.085067pt;}
.y112{bottom:456.279333pt;}
.ya7{bottom:457.448933pt;}
.y36{bottom:458.228933pt;}
.y63{bottom:460.059867pt;}
.y139{bottom:468.226667pt;}
.y88{bottom:468.490400pt;}
.ycf{bottom:469.751733pt;}
.yf0{bottom:471.157067pt;}
.y111{bottom:473.346000pt;}
.ya6{bottom:474.515600pt;}
.y35{bottom:475.295600pt;}
.y62{bottom:477.126533pt;}
.y138{bottom:484.226667pt;}
.yce{bottom:484.418400pt;}
.y87{bottom:485.557067pt;}
.yef{bottom:488.223733pt;}
.y110{bottom:490.412667pt;}
.ya5{bottom:491.582267pt;}
.y34{bottom:492.362267pt;}
.y61{bottom:494.193333pt;}
.ycd{bottom:499.085067pt;}
.y137{bottom:500.226667pt;}
.yee{bottom:505.290400pt;}
.y10f{bottom:507.479333pt;}
.ya4{bottom:508.648933pt;}
.y33{bottom:509.428933pt;}
.y60{bottom:511.259867pt;}
.ycc{bottom:513.751733pt;}
.y136{bottom:516.226667pt;}
.y86{bottom:517.741733pt;}
.yed{bottom:522.357067pt;}
.y10e{bottom:524.546000pt;}
.ya3{bottom:525.715600pt;}
.y32{bottom:526.495600pt;}
.y5f{bottom:528.326533pt;}
.ycb{bottom:528.418400pt;}
.y85{bottom:532.408400pt;}
.yec{bottom:539.423600pt;}
.y10d{bottom:541.612667pt;}
.ya2{bottom:542.782267pt;}
.yca{bottom:543.085067pt;}
.y31{bottom:543.562267pt;}
.y5e{bottom:545.393200pt;}
.y84{bottom:547.075067pt;}
.y135{bottom:551.426667pt;}
.y11{bottom:554.705200pt;}
.yeb{bottom:556.490400pt;}
.yc9{bottom:557.751733pt;}
.ya1{bottom:559.848933pt;}
.y30{bottom:560.628933pt;}
.y83{bottom:561.741733pt;}
.y5d{bottom:562.459867pt;}
.y134{bottom:567.426667pt;}
.yc8{bottom:572.418400pt;}
.yea{bottom:573.557067pt;}
.y82{bottom:576.408400pt;}
.ya0{bottom:576.915600pt;}
.y10c{bottom:577.576933pt;}
.y2f{bottom:577.695600pt;}
.y5c{bottom:579.526667pt;}
.y133{bottom:583.426667pt;}
.yc7{bottom:587.085067pt;}
.y81{bottom:591.075067pt;}
.y9f{bottom:593.982267pt;}
.y2e{bottom:594.762267pt;}
.y5b{bottom:596.593200pt;}
.y132{bottom:599.426667pt;}
.y80{bottom:605.741733pt;}
.y2d{bottom:611.828933pt;}
.y5a{bottom:613.659867pt;}
.y131{bottom:615.426667pt;}
.yc6{bottom:616.869733pt;}
.y7f{bottom:620.408400pt;}
.y2c{bottom:628.895600pt;}
.y9e{bottom:629.946533pt;}
.y59{bottom:630.726533pt;}
.y130{bottom:631.426667pt;}
.yc5{bottom:633.936400pt;}
.y7e{bottom:635.075067pt;}
.y2b{bottom:645.962267pt;}
.y10b{bottom:646.623733pt;}
.y12f{bottom:647.426667pt;}
.y58{bottom:647.793200pt;}
.yc4{bottom:651.003067pt;}
.y2a{bottom:663.028933pt;}
.y12e{bottom:663.426667pt;}
.y10a{bottom:663.690400pt;}
.y57{bottom:664.859867pt;}
.yc3{bottom:668.069733pt;}
.y12d{bottom:679.426667pt;}
.y29{bottom:680.095600pt;}
.y56{bottom:681.926533pt;}
.yd{bottom:685.174533pt;}
.y12c{bottom:695.426667pt;}
.y109{bottom:695.875200pt;}
.y28{bottom:697.162267pt;}
.y55{bottom:698.993200pt;}
.yc2{bottom:700.254533pt;}
.y108{bottom:710.541867pt;}
.y12b{bottom:711.426667pt;}
.y27{bottom:714.228933pt;}
.yc1{bottom:714.921200pt;}
.y54{bottom:716.059867pt;}
.yc{bottom:723.574533pt;}
.y107{bottom:725.208533pt;}
.yc0{bottom:729.587867pt;}
.y6{bottom:730.853067pt;}
.y26{bottom:731.295600pt;}
.y53{bottom:733.126533pt;}
.y106{bottom:739.875200pt;}
.y12a{bottom:743.426667pt;}
.ybf{bottom:744.254533pt;}
.y25{bottom:748.362267pt;}
.y52{bottom:750.193333pt;}
.y105{bottom:754.541867pt;}
.ybe{bottom:758.921200pt;}
.y129{bottom:759.426667pt;}
.yb{bottom:761.974533pt;}
.y24{bottom:765.428933pt;}
.y51{bottom:767.259867pt;}
.ybd{bottom:773.587867pt;}
.y50{bottom:784.326533pt;}
.ybc{bottom:788.254533pt;}
.y128{bottom:792.178267pt;}
.y23{bottom:801.393200pt;}
.ybb{bottom:802.921200pt;}
.y127{bottom:811.378267pt;}
.ya{bottom:825.200000pt;}
.y126{bottom:833.245467pt;}
.y9{bottom:836.400000pt;}
.y22{bottom:839.055067pt;}
.y4f{bottom:840.775200pt;}
.y8{bottom:847.600000pt;}
.y7{bottom:858.800000pt;}
.h12{height:28.448000pt;}
.ha{height:28.597333pt;}
.h6{height:33.664000pt;}
.hf{height:37.930667pt;}
.h18{height:38.933333pt;}
.hb{height:42.521600pt;}
.h14{height:42.672000pt;}
.he{height:45.904000pt;}
.h15{height:46.144000pt;}
.h17{height:47.413333pt;}
.h13{height:52.548053pt;}
.hd{height:53.034667pt;}
.h10{height:53.152000pt;}
.h7{height:55.477333pt;}
.h19{height:56.896000pt;}
.h16{height:56.906667pt;}
.h11{height:57.476693pt;}
.hc{height:57.984000pt;}
.h2{height:101.531250pt;}
.h5{height:108.960000pt;}
.h9{height:115.968000pt;}
.h3{height:425.937333pt;}
.h0{height:907.085333pt;}
.h8{height:907.086667pt;}
.h1{height:907.333333pt;}
.h4{height:1703.756336pt;}
.w2{width:479.040000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x3{left:-17.916533pt;}
.x0{left:0.000000pt;}
.x6{left:75.590533pt;}
.x2{left:78.602667pt;}
.xe{left:88.535867pt;}
.xd{left:90.736933pt;}
.x7{left:94.488133pt;}
.x4{left:98.283867pt;}
.x1{left:100.819067pt;}
.xa{left:167.194800pt;}
.x5{left:264.320000pt;}
.x8{left:321.259867pt;}
.xf{left:453.925333pt;}
.xb{left:555.580000pt;}
.x9{left:556.870533pt;}
.xc{left:558.406533pt;}
}




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