
    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_2a69538ee90d2117d042d1a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_fd59abf4e234d62d9af59b47.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_4d3781f14e01a84bcb43c3cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.019000;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_1d042ba5c20acd648f27126a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_dd789ae81065521c544fa2ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000048;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_35ea0f9de368deed73729fae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_14fbddf7e55080d333f6950e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000048;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_732a6af4d254797f3f2440d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.019000;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_a4a547237945fe019be4fd4d.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e9012847e37b0f88ec7756f3.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1{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.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.576800px;}
.ls11{letter-spacing:-3.840000px;}
.lsa{letter-spacing:-3.564000px;}
.ls19{letter-spacing:-3.120000px;}
.ls9{letter-spacing:-1.584000px;}
.ls18{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.248000px;}
.ls1a{letter-spacing:-1.152000px;}
.lsf{letter-spacing:-0.990000px;}
.ls10{letter-spacing:-0.960000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.462000px;}
.ls1c{letter-spacing:-0.396000px;}
.ls8{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.132000px;}
.ls1e{letter-spacing:-0.066000px;}
.ls5{letter-spacing:-0.037800px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.184800px;}
.ls0{letter-spacing:0.277200px;}
.ls14{letter-spacing:0.330000px;}
.ls13{letter-spacing:0.990000px;}
.ls6{letter-spacing:1.227600px;}
.lsd{letter-spacing:1.512000px;}
.ls1d{letter-spacing:4.104000px;}
.ls1b{letter-spacing:5.454000px;}
.ls7{letter-spacing:6.468000px;}
.lse{letter-spacing:445.872000px;}
.ls15{letter-spacing:474.576000px;}
.ls17{letter-spacing:551.184000px;}
.ls16{letter-spacing:575.088000px;}
.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;}
}
.ws6{word-spacing:-19.682400px;}
.ws80{word-spacing:-17.490000px;}
.ws81{word-spacing:-16.830000px;}
.ws20{word-spacing:-16.500000px;}
.ws45{word-spacing:-16.368000px;}
.ws1f{word-spacing:-16.170000px;}
.ws23{word-spacing:-16.038000px;}
.ws5{word-spacing:-15.012000px;}
.wsd4{word-spacing:-15.000000px;}
.ws21{word-spacing:-14.916000px;}
.wsfe{word-spacing:-14.280000px;}
.ws4{word-spacing:-13.500000px;}
.ws22{word-spacing:-12.936000px;}
.ws3{word-spacing:-12.676800px;}
.ws2{word-spacing:-12.000000px;}
.ws78{word-spacing:-11.040000px;}
.ws1{word-spacing:-10.988617px;}
.ws7b{word-spacing:-10.752000px;}
.wsd{word-spacing:-9.028800px;}
.ws82{word-spacing:-8.880000px;}
.wse{word-spacing:-8.544000px;}
.ws79{word-spacing:-8.160000px;}
.ws62{word-spacing:-3.696000px;}
.ws8e{word-spacing:-3.630000px;}
.ws48{word-spacing:-3.564000px;}
.wse7{word-spacing:-3.300000px;}
.ws35{word-spacing:-3.102000px;}
.wsa6{word-spacing:-2.970000px;}
.ws108{word-spacing:-2.940000px;}
.ws63{word-spacing:-2.904000px;}
.wseb{word-spacing:-2.880000px;}
.ws5f{word-spacing:-2.838000px;}
.wsec{word-spacing:-2.820000px;}
.ws3f{word-spacing:-2.772000px;}
.ws103{word-spacing:-2.760000px;}
.ws51{word-spacing:-2.706000px;}
.ws2e{word-spacing:-2.640000px;}
.ws47{word-spacing:-2.574000px;}
.wsea{word-spacing:-2.520000px;}
.ws42{word-spacing:-2.508000px;}
.ws24{word-spacing:-2.442000px;}
.ws64{word-spacing:-2.376000px;}
.wsa3{word-spacing:-2.310000px;}
.ws8d{word-spacing:-2.244000px;}
.ws57{word-spacing:-2.178000px;}
.ws9c{word-spacing:-2.160000px;}
.ws43{word-spacing:-2.112000px;}
.ws52{word-spacing:-2.046000px;}
.wsa4{word-spacing:-1.980000px;}
.ws100{word-spacing:-1.920000px;}
.ws28{word-spacing:-1.914000px;}
.wsf7{word-spacing:-1.860000px;}
.ws3d{word-spacing:-1.848000px;}
.wsff{word-spacing:-1.800000px;}
.wsbc{word-spacing:-1.782000px;}
.wsfb{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.716000px;}
.ws10c{word-spacing:-1.680000px;}
.ws9e{word-spacing:-1.650000px;}
.wsb6{word-spacing:-1.584000px;}
.ws8a{word-spacing:-1.518000px;}
.wsd2{word-spacing:-1.512000px;}
.wsef{word-spacing:-1.500000px;}
.ws19{word-spacing:-1.458000px;}
.ws30{word-spacing:-1.386000px;}
.ws18{word-spacing:-1.350000px;}
.ws104{word-spacing:-1.320000px;}
.ws4c{word-spacing:-1.254000px;}
.ws1e{word-spacing:-1.227600px;}
.ws37{word-spacing:-1.188000px;}
.wscf{word-spacing:-1.122000px;}
.wsf3{word-spacing:-1.080000px;}
.ws41{word-spacing:-1.056000px;}
.ws12{word-spacing:-1.026000px;}
.wsf6{word-spacing:-1.020000px;}
.ws8{word-spacing:-1.017000px;}
.ws5d{word-spacing:-0.990000px;}
.ws16{word-spacing:-0.918000px;}
.ws36{word-spacing:-0.858000px;}
.ws3c{word-spacing:-0.792000px;}
.wsf2{word-spacing:-0.780000px;}
.ws7f{word-spacing:-0.720000px;}
.wsc1{word-spacing:-0.648000px;}
.wsc2{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.529200px;}
.ws92{word-spacing:-0.528000px;}
.ws10{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.462000px;}
.ws2b{word-spacing:-0.396000px;}
.ws13{word-spacing:-0.378000px;}
.ws61{word-spacing:-0.330000px;}
.ws0{word-spacing:-0.277200px;}
.wscd{word-spacing:-0.264000px;}
.ws2c{word-spacing:-0.198000px;}
.ws7e{word-spacing:-0.144000px;}
.ws54{word-spacing:-0.132000px;}
.wsf5{word-spacing:-0.120000px;}
.ws74{word-spacing:-0.066000px;}
.ws44{word-spacing:-0.057000px;}
.ws7{word-spacing:0.000000px;}
.ws1c{word-spacing:0.037800px;}
.ws67{word-spacing:0.066000px;}
.ws4f{word-spacing:0.132000px;}
.wsd8{word-spacing:0.180000px;}
.wsb8{word-spacing:0.198000px;}
.ws33{word-spacing:0.264000px;}
.wsa{word-spacing:0.324000px;}
.ws3a{word-spacing:0.330000px;}
.ws4a{word-spacing:0.396000px;}
.ws9f{word-spacing:0.462000px;}
.ws14{word-spacing:0.486000px;}
.ws6b{word-spacing:0.528000px;}
.ws11{word-spacing:0.576000px;}
.ws38{word-spacing:0.594000px;}
.wsf0{word-spacing:0.600000px;}
.ws4e{word-spacing:0.660000px;}
.wsc7{word-spacing:0.726000px;}
.ws6e{word-spacing:0.792000px;}
.ws73{word-spacing:0.858000px;}
.wsa0{word-spacing:0.924000px;}
.wse3{word-spacing:0.960000px;}
.wsa1{word-spacing:0.990000px;}
.wsad{word-spacing:1.056000px;}
.ws53{word-spacing:1.122000px;}
.ws98{word-spacing:1.134000px;}
.wsdb{word-spacing:1.140000px;}
.ws9b{word-spacing:1.152000px;}
.ws46{word-spacing:1.188000px;}
.ws31{word-spacing:1.254000px;}
.ws75{word-spacing:1.320000px;}
.wsbe{word-spacing:1.386000px;}
.ws9a{word-spacing:1.440000px;}
.ws6a{word-spacing:1.452000px;}
.ws34{word-spacing:1.518000px;}
.ws7d{word-spacing:1.566000px;}
.ws8f{word-spacing:1.584000px;}
.ws58{word-spacing:1.650000px;}
.ws99{word-spacing:1.674000px;}
.ws7c{word-spacing:1.782000px;}
.wsb7{word-spacing:1.848000px;}
.wsd5{word-spacing:1.914000px;}
.wsfd{word-spacing:1.920000px;}
.ws5e{word-spacing:1.980000px;}
.wsde{word-spacing:2.040000px;}
.ws65{word-spacing:2.046000px;}
.ws60{word-spacing:2.112000px;}
.ws25{word-spacing:2.178000px;}
.wsf8{word-spacing:2.280000px;}
.ws3e{word-spacing:2.310000px;}
.ws76{word-spacing:2.376000px;}
.wsce{word-spacing:2.442000px;}
.wsee{word-spacing:2.520000px;}
.wsc8{word-spacing:2.574000px;}
.ws40{word-spacing:2.640000px;}
.ws56{word-spacing:2.706000px;}
.ws69{word-spacing:2.772000px;}
.ws5b{word-spacing:2.904000px;}
.wsc{word-spacing:2.970000px;}
.wsfc{word-spacing:3.000000px;}
.ws9d{word-spacing:3.036000px;}
.wse5{word-spacing:3.060000px;}
.ws97{word-spacing:3.078000px;}
.ws2d{word-spacing:3.102000px;}
.wsaa{word-spacing:3.234000px;}
.wsa8{word-spacing:3.432000px;}
.ws10d{word-spacing:3.480000px;}
.wsc9{word-spacing:3.498000px;}
.wsd3{word-spacing:3.630000px;}
.wsed{word-spacing:3.660000px;}
.ws15{word-spacing:3.672000px;}
.ws93{word-spacing:3.696000px;}
.ws5a{word-spacing:3.828000px;}
.wsd6{word-spacing:3.840000px;}
.ws10b{word-spacing:3.900000px;}
.wsb4{word-spacing:3.960000px;}
.wsdd{word-spacing:4.020000px;}
.ws9{word-spacing:4.050000px;}
.wsc0{word-spacing:4.104000px;}
.ws88{word-spacing:4.224000px;}
.ws32{word-spacing:4.290000px;}
.wse9{word-spacing:4.320000px;}
.wsca{word-spacing:4.356000px;}
.ws90{word-spacing:4.422000px;}
.ws66{word-spacing:4.488000px;}
.wsbf{word-spacing:4.536000px;}
.wsab{word-spacing:4.554000px;}
.wsf1{word-spacing:4.560000px;}
.ws55{word-spacing:4.686000px;}
.ws6f{word-spacing:4.752000px;}
.wse1{word-spacing:4.800000px;}
.ws17{word-spacing:4.806000px;}
.ws6d{word-spacing:4.818000px;}
.wsf{word-spacing:4.848000px;}
.wsfa{word-spacing:4.860000px;}
.ws3b{word-spacing:4.884000px;}
.ws6c{word-spacing:4.950000px;}
.wscb{word-spacing:5.082000px;}
.wse4{word-spacing:5.100000px;}
.ws68{word-spacing:5.148000px;}
.ws5c{word-spacing:5.214000px;}
.ws89{word-spacing:5.280000px;}
.ws105{word-spacing:5.340000px;}
.ws8c{word-spacing:5.346000px;}
.wsa5{word-spacing:5.412000px;}
.ws8b{word-spacing:5.478000px;}
.wsb0{word-spacing:5.508000px;}
.wsf4{word-spacing:5.520000px;}
.wsb3{word-spacing:5.544000px;}
.wsc4{word-spacing:5.610000px;}
.wsb{word-spacing:5.616000px;}
.wsb1{word-spacing:5.670000px;}
.ws101{word-spacing:5.760000px;}
.ws96{word-spacing:5.832000px;}
.ws70{word-spacing:5.874000px;}
.wsa7{word-spacing:5.940000px;}
.wse6{word-spacing:6.000000px;}
.wsbd{word-spacing:6.006000px;}
.wsaf{word-spacing:6.102000px;}
.ws10f{word-spacing:6.180000px;}
.wsa2{word-spacing:6.270000px;}
.ws95{word-spacing:6.480000px;}
.wsd1{word-spacing:6.588000px;}
.ws27{word-spacing:6.666000px;}
.ws2f{word-spacing:6.732000px;}
.ws59{word-spacing:6.798000px;}
.ws106{word-spacing:6.840000px;}
.ws4d{word-spacing:6.930000px;}
.wsba{word-spacing:6.996000px;}
.ws102{word-spacing:7.020000px;}
.ws29{word-spacing:7.062000px;}
.ws72{word-spacing:7.326000px;}
.wsd0{word-spacing:7.344000px;}
.ws94{word-spacing:7.392000px;}
.wsd7{word-spacing:7.440000px;}
.wsae{word-spacing:7.524000px;}
.wsc5{word-spacing:7.656000px;}
.wscc{word-spacing:7.722000px;}
.wsf9{word-spacing:7.740000px;}
.wsb5{word-spacing:7.854000px;}
.wsc6{word-spacing:7.920000px;}
.ws91{word-spacing:7.986000px;}
.wsac{word-spacing:8.250000px;}
.ws85{word-spacing:8.316000px;}
.wsb2{word-spacing:8.448000px;}
.wsb9{word-spacing:8.514000px;}
.wsdc{word-spacing:8.520000px;}
.ws49{word-spacing:8.580000px;}
.wsdf{word-spacing:8.700000px;}
.ws2a{word-spacing:8.712000px;}
.ws77{word-spacing:8.778000px;}
.ws87{word-spacing:8.844000px;}
.wsd9{word-spacing:8.940000px;}
.ws1b{word-spacing:9.108000px;}
.ws71{word-spacing:9.174000px;}
.wsc3{word-spacing:9.240000px;}
.wse8{word-spacing:9.360000px;}
.wsbb{word-spacing:9.372000px;}
.ws109{word-spacing:9.720000px;}
.ws26{word-spacing:9.900000px;}
.wsda{word-spacing:10.080000px;}
.ws107{word-spacing:10.500000px;}
.wsa9{word-spacing:10.758000px;}
.ws10e{word-spacing:10.860000px;}
.ws86{word-spacing:10.956000px;}
.wse0{word-spacing:11.040000px;}
.ws10a{word-spacing:11.820000px;}
.ws1a{word-spacing:12.474000px;}
.wse2{word-spacing:19.800000px;}
.ws50{word-spacing:75.636000px;}
.ws7a{word-spacing:393.844800px;}
.ws84{word-spacing:547.680000px;}
.ws83{word-spacing:590.592000px;}
._b{margin-left:-11.961060px;}
._9{margin-left:-10.902420px;}
._7{margin-left:-9.267780px;}
._2{margin-left:-7.586820px;}
._a{margin-left:-6.355800px;}
._8{margin-left:-4.955820px;}
._4{margin-left:-3.254400px;}
._3{margin-left:-2.172180px;}
._1{margin-left:-1.090320px;}
._0{width:1.977360px;}
._5{width:4.028400px;}
._6{width:5.525580px;}
._57{width:7.454400px;}
._d{width:9.179820px;}
._25{width:21.023160px;}
._28{width:23.089080px;}
._40{width:32.100540px;}
._41{width:37.013400px;}
._3c{width:42.689580px;}
._45{width:49.709640px;}
._2b{width:118.778940px;}
._3a{width:127.630500px;}
._2a{width:135.134760px;}
._10{width:142.335000px;}
._30{width:144.708900px;}
._24{width:146.111820px;}
._21{width:162.891180px;}
._32{width:184.532640px;}
._39{width:190.152360px;}
._42{width:205.438500px;}
._31{width:206.549400px;}
._37{width:212.198400px;}
._1e{width:213.577860px;}
._3d{width:217.320360px;}
._11{width:220.738320px;}
._3b{width:222.168360px;}
._19{width:223.971900px;}
._14{width:230.808360px;}
._2f{width:236.017080px;}
._23{width:239.064360px;}
._1b{width:243.830100px;}
._3f{width:258.114780px;}
._44{width:261.192360px;}
._27{width:264.977580px;}
._38{width:268.591020px;}
._16{width:273.615000px;}
._22{width:274.886100px;}
._34{width:278.270760px;}
._1d{width:283.390500px;}
._35{width:291.916140px;}
._13{width:296.868900px;}
._1c{width:302.472360px;}
._2c{width:305.186580px;}
._1a{width:312.432720px;}
._12{width:315.950760px;}
._18{width:327.326760px;}
._f{width:336.300180px;}
._48{width:337.334400px;}
._2e{width:339.684900px;}
._36{width:348.002580px;}
._4b{width:354.216360px;}
._2d{width:358.766760px;}
._33{width:369.758760px;}
._26{width:371.398800px;}
._1f{width:380.760360px;}
._4c{width:383.208720px;}
._4a{width:385.104000px;}
._43{width:387.780900px;}
._4f{width:390.019680px;}
._4e{width:391.816680px;}
._17{width:402.658320px;}
._29{width:403.790760px;}
._52{width:445.054500px;}
._47{width:450.840360px;}
._51{width:475.656360px;}
._46{width:479.640360px;}
._15{width:511.200000px;}
._3e{width:512.579280px;}
._53{width:528.758400px;}
._54{width:550.008360px;}
._55{width:571.680000px;}
._50{width:576.792360px;}
._20{width:595.116180px;}
._4d{width:617.630760px;}
._e{width:627.947820px;}
._49{width:728.699820px;}
._56{width:776.712360px;}
._c{width:824.767980px;}
.fc1{color:rgb(25,64,49);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.800000px;}
.fs2{font-size:39.527400px;}
.fs9{font-size:39.600000px;}
.fs4{font-size:45.600000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:67.800000px;}
.fs6{font-size:70.800000px;}
.fs0{font-size:92.400000px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.408350px;}
.y7b{bottom:64.233000px;}
.ydc{bottom:64.235250px;}
.y20{bottom:68.005200px;}
.yba{bottom:68.525100px;}
.ya9{bottom:69.610800px;}
.y73{bottom:84.033000px;}
.y4f{bottom:84.033150px;}
.ydb{bottom:84.035250px;}
.yb9{bottom:84.881100px;}
.ya8{bottom:85.966800px;}
.yb8{bottom:101.237100px;}
.ya7{bottom:102.322800px;}
.y72{bottom:103.833000px;}
.y4e{bottom:103.833150px;}
.yda{bottom:103.835250px;}
.yb7{bottom:117.593100px;}
.ye3{bottom:117.924000px;}
.ya6{bottom:118.678800px;}
.y1c{bottom:123.633000px;}
.y4d{bottom:123.633150px;}
.yd9{bottom:123.635250px;}
.yb6{bottom:133.949100px;}
.ya5{bottom:135.034800px;}
.ye0{bottom:137.724000px;}
.y1b{bottom:143.433000px;}
.y4c{bottom:143.433150px;}
.yd8{bottom:143.435250px;}
.yb5{bottom:150.305100px;}
.ya4{bottom:151.390800px;}
.ye7{bottom:157.524150px;}
.y1a{bottom:163.233000px;}
.y4b{bottom:163.233150px;}
.yd7{bottom:163.235250px;}
.yb4{bottom:166.661100px;}
.ya3{bottom:167.746800px;}
.yb3{bottom:183.017100px;}
.y71{bottom:183.033000px;}
.y4a{bottom:183.033150px;}
.ya2{bottom:184.102800px;}
.yd6{bottom:197.126250px;}
.yb2{bottom:199.373100px;}
.ya1{bottom:200.458800px;}
.y19{bottom:200.515350px;}
.y70{bottom:202.833000px;}
.y49{bottom:202.833150px;}
.ye9{bottom:214.185750px;}
.yb1{bottom:215.729100px;}
.ya0{bottom:216.814800px;}
.y6f{bottom:222.633000px;}
.y48{bottom:222.633150px;}
.y9f{bottom:233.170800px;}
.y6e{bottom:242.433000px;}
.y47{bottom:242.433150px;}
.yd5{bottom:242.435250px;}
.yb0{bottom:244.007550px;}
.y9e{bottom:248.170800px;}
.yaf{bottom:262.003050px;}
.y6d{bottom:262.233000px;}
.y46{bottom:262.233150px;}
.yd4{bottom:262.235250px;}
.y9d{bottom:264.526800px;}
.y18{bottom:268.409100px;}
.yae{bottom:279.998550px;}
.y9c{bottom:280.882800px;}
.y6c{bottom:282.033000px;}
.y45{bottom:282.033150px;}
.yd3{bottom:282.035250px;}
.y17{bottom:286.404600px;}
.y9b{bottom:297.238800px;}
.yad{bottom:297.994050px;}
.y6b{bottom:301.833000px;}
.y44{bottom:301.833150px;}
.yd2{bottom:301.835250px;}
.y9a{bottom:313.594800px;}
.yac{bottom:315.989550px;}
.y6a{bottom:321.633000px;}
.y43{bottom:321.633150px;}
.yd1{bottom:321.635250px;}
.y16{bottom:324.204600px;}
.y99{bottom:329.950800px;}
.yab{bottom:333.985050px;}
.y69{bottom:341.433000px;}
.y42{bottom:341.433150px;}
.yd0{bottom:341.435250px;}
.y15{bottom:342.200100px;}
.y98{bottom:346.306800px;}
.ydf{bottom:360.066450px;}
.y14{bottom:360.195600px;}
.y68{bottom:361.233000px;}
.y41{bottom:361.233150px;}
.ycf{bottom:361.235250px;}
.y97{bottom:362.662800px;}
.yde{bottom:378.061950px;}
.y13{bottom:378.191100px;}
.y96{bottom:379.018800px;}
.y67{bottom:381.033000px;}
.y40{bottom:381.033150px;}
.yce{bottom:381.035250px;}
.y95{bottom:395.374800px;}
.ydd{bottom:396.057450px;}
.y12{bottom:396.186600px;}
.y66{bottom:400.833000px;}
.y3f{bottom:400.833150px;}
.ycd{bottom:400.835250px;}
.yec{bottom:410.501700px;}
.y94{bottom:411.730800px;}
.y11{bottom:414.182100px;}
.ye6{bottom:416.754900px;}
.y7a{bottom:420.633000px;}
.y3e{bottom:420.633150px;}
.ycc{bottom:420.635250px;}
.y93{bottom:428.086800px;}
.yeb{bottom:428.497200px;}
.y10{bottom:432.177600px;}
.ye2{bottom:434.724000px;}
.ye5{bottom:434.750400px;}
.y79{bottom:440.433000px;}
.y3d{bottom:440.433150px;}
.ycb{bottom:440.435250px;}
.y65{bottom:440.486850px;}
.y92{bottom:444.442800px;}
.yea{bottom:446.492700px;}
.yf{bottom:450.173100px;}
.ye4{bottom:452.745900px;}
.ye8{bottom:454.521150px;}
.y78{bottom:460.233000px;}
.y3c{bottom:460.233150px;}
.y91{bottom:460.798800px;}
.ye{bottom:468.168600px;}
.y64{bottom:471.585750px;}
.yca{bottom:474.326250px;}
.y90{bottom:477.154800px;}
.y77{bottom:480.033000px;}
.y3b{bottom:480.033150px;}
.yd{bottom:486.164100px;}
.y8f{bottom:493.510800px;}
.y76{bottom:499.833000px;}
.y3a{bottom:499.833150px;}
.y8e{bottom:509.866800px;}
.y75{bottom:519.633000px;}
.y39{bottom:519.633150px;}
.yc9{bottom:519.635250px;}
.y8d{bottom:526.222800px;}
.y63{bottom:539.433000px;}
.y38{bottom:539.433150px;}
.yc8{bottom:539.435250px;}
.y8c{bottom:542.578800px;}
.yc{bottom:546.556200px;}
.y74{bottom:553.521300px;}
.y8b{bottom:558.934800px;}
.y62{bottom:559.233000px;}
.y37{bottom:559.233150px;}
.yc7{bottom:559.235250px;}
.yb{bottom:564.556200px;}
.y8a{bottom:575.290800px;}
.y61{bottom:579.033000px;}
.y36{bottom:579.033150px;}
.yc6{bottom:579.035250px;}
.yee{bottom:590.385750px;}
.ya{bottom:591.060150px;}
.y89{bottom:591.646800px;}
.y60{bottom:598.833000px;}
.y35{bottom:598.833150px;}
.yc5{bottom:598.835250px;}
.y88{bottom:608.002800px;}
.y5f{bottom:618.633000px;}
.y34{bottom:618.633150px;}
.yc4{bottom:618.635250px;}
.y87{bottom:624.358800px;}
.y9{bottom:628.861500px;}
.y5e{bottom:638.433000px;}
.y33{bottom:638.433150px;}
.yc3{bottom:638.435250px;}
.y86{bottom:640.714800px;}
.yaa{bottom:652.521300px;}
.y85{bottom:657.070800px;}
.y8{bottom:658.177050px;}
.y5d{bottom:658.233000px;}
.y32{bottom:658.233150px;}
.yc2{bottom:658.235250px;}
.y84{bottom:673.426800px;}
.y7{bottom:676.172550px;}
.y5c{bottom:678.033000px;}
.y31{bottom:678.033150px;}
.yc1{bottom:678.035250px;}
.y83{bottom:689.782800px;}
.ye1{bottom:692.124000px;}
.y6{bottom:694.168050px;}
.y5b{bottom:697.833000px;}
.y30{bottom:697.833150px;}
.yc0{bottom:697.835250px;}
.y82{bottom:706.138800px;}
.y5{bottom:712.163550px;}
.y5a{bottom:717.633000px;}
.y2f{bottom:717.633150px;}
.ybf{bottom:717.635250px;}
.y81{bottom:722.494800px;}
.y4{bottom:730.159050px;}
.y59{bottom:737.433000px;}
.y2e{bottom:737.433150px;}
.ybe{bottom:737.435250px;}
.y80{bottom:739.222800px;}
.y58{bottom:757.233000px;}
.y2d{bottom:757.233150px;}
.ybd{bottom:757.235250px;}
.y3{bottom:765.166800px;}
.y7f{bottom:767.483250px;}
.y57{bottom:777.033000px;}
.y2c{bottom:777.033150px;}
.y7e{bottom:785.478750px;}
.y2{bottom:785.506950px;}
.y56{bottom:796.833000px;}
.y2b{bottom:796.833150px;}
.ybc{bottom:799.623750px;}
.y55{bottom:816.633000px;}
.y2a{bottom:816.633150px;}
.ybb{bottom:830.721150px;}
.y54{bottom:836.433000px;}
.y29{bottom:836.433150px;}
.y1{bottom:841.197750px;}
.y53{bottom:856.233000px;}
.y28{bottom:856.233150px;}
.y7d{bottom:869.568000px;}
.y52{bottom:876.033000px;}
.y27{bottom:876.033150px;}
.y51{bottom:895.833000px;}
.y26{bottom:895.833150px;}
.y7c{bottom:900.666900px;}
.yed{bottom:909.171000px;}
.y50{bottom:915.633000px;}
.y25{bottom:915.633150px;}
.y1f{bottom:935.709300px;}
.y1e{bottom:950.706450px;}
.y22{bottom:953.482500px;}
.y24{bottom:959.117700px;}
.y23{bottom:959.661450px;}
.y1d{bottom:965.703600px;}
.hc{height:27.363600px;}
.hb{height:28.350000px;}
.hf{height:34.320000px;}
.h6{height:36.000000px;}
.h7{height:37.314000px;}
.h5{height:38.612571px;}
.h8{height:40.500000px;}
.hd{height:42.750000px;}
.h11{height:45.000000px;}
.h10{height:47.190000px;}
.h9{height:48.922800px;}
.ha{height:49.500000px;}
.h3{height:52.222350px;}
.h4{height:52.222950px;}
.he{height:53.100000px;}
.h2{height:69.300000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x4{left:78.661350px;}
.x9{left:81.201600px;}
.x7{left:104.170350px;}
.x3{left:170.226300px;}
.x6{left:180.061200px;}
.x1{left:217.528350px;}
.x2{left:220.079250px;}
.x5{left:301.665750px;}
.x8{left:306.456450px;}
.xa{left:313.869600px;}
.xb{left:534.969600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.068267pt;}
.ls11{letter-spacing:-3.413333pt;}
.lsa{letter-spacing:-3.168000pt;}
.ls19{letter-spacing:-2.773333pt;}
.ls9{letter-spacing:-1.408000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.109333pt;}
.ls1a{letter-spacing:-1.024000pt;}
.lsf{letter-spacing:-0.880000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.410667pt;}
.ls1c{letter-spacing:-0.352000pt;}
.ls8{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls1e{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:-0.033600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.164267pt;}
.ls0{letter-spacing:0.246400pt;}
.ls14{letter-spacing:0.293333pt;}
.ls13{letter-spacing:0.880000pt;}
.ls6{letter-spacing:1.091200pt;}
.lsd{letter-spacing:1.344000pt;}
.ls1d{letter-spacing:3.648000pt;}
.ls1b{letter-spacing:4.848000pt;}
.ls7{letter-spacing:5.749333pt;}
.lse{letter-spacing:396.330667pt;}
.ls15{letter-spacing:421.845333pt;}
.ls17{letter-spacing:489.941333pt;}
.ls16{letter-spacing:511.189333pt;}
.ws6{word-spacing:-17.495467pt;}
.ws80{word-spacing:-15.546667pt;}
.ws81{word-spacing:-14.960000pt;}
.ws20{word-spacing:-14.666667pt;}
.ws45{word-spacing:-14.549333pt;}
.ws1f{word-spacing:-14.373333pt;}
.ws23{word-spacing:-14.256000pt;}
.ws5{word-spacing:-13.344000pt;}
.wsd4{word-spacing:-13.333333pt;}
.ws21{word-spacing:-13.258667pt;}
.wsfe{word-spacing:-12.693333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.498667pt;}
.ws3{word-spacing:-11.268267pt;}
.ws2{word-spacing:-10.666667pt;}
.ws78{word-spacing:-9.813333pt;}
.ws1{word-spacing:-9.767660pt;}
.ws7b{word-spacing:-9.557333pt;}
.wsd{word-spacing:-8.025600pt;}
.ws82{word-spacing:-7.893333pt;}
.wse{word-spacing:-7.594667pt;}
.ws79{word-spacing:-7.253333pt;}
.ws62{word-spacing:-3.285333pt;}
.ws8e{word-spacing:-3.226667pt;}
.ws48{word-spacing:-3.168000pt;}
.wse7{word-spacing:-2.933333pt;}
.ws35{word-spacing:-2.757333pt;}
.wsa6{word-spacing:-2.640000pt;}
.ws108{word-spacing:-2.613333pt;}
.ws63{word-spacing:-2.581333pt;}
.wseb{word-spacing:-2.560000pt;}
.ws5f{word-spacing:-2.522667pt;}
.wsec{word-spacing:-2.506667pt;}
.ws3f{word-spacing:-2.464000pt;}
.ws103{word-spacing:-2.453333pt;}
.ws51{word-spacing:-2.405333pt;}
.ws2e{word-spacing:-2.346667pt;}
.ws47{word-spacing:-2.288000pt;}
.wsea{word-spacing:-2.240000pt;}
.ws42{word-spacing:-2.229333pt;}
.ws24{word-spacing:-2.170667pt;}
.ws64{word-spacing:-2.112000pt;}
.wsa3{word-spacing:-2.053333pt;}
.ws8d{word-spacing:-1.994667pt;}
.ws57{word-spacing:-1.936000pt;}
.ws9c{word-spacing:-1.920000pt;}
.ws43{word-spacing:-1.877333pt;}
.ws52{word-spacing:-1.818667pt;}
.wsa4{word-spacing:-1.760000pt;}
.ws100{word-spacing:-1.706667pt;}
.ws28{word-spacing:-1.701333pt;}
.wsf7{word-spacing:-1.653333pt;}
.ws3d{word-spacing:-1.642667pt;}
.wsff{word-spacing:-1.600000pt;}
.wsbc{word-spacing:-1.584000pt;}
.wsfb{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.525333pt;}
.ws10c{word-spacing:-1.493333pt;}
.ws9e{word-spacing:-1.466667pt;}
.wsb6{word-spacing:-1.408000pt;}
.ws8a{word-spacing:-1.349333pt;}
.wsd2{word-spacing:-1.344000pt;}
.wsef{word-spacing:-1.333333pt;}
.ws19{word-spacing:-1.296000pt;}
.ws30{word-spacing:-1.232000pt;}
.ws18{word-spacing:-1.200000pt;}
.ws104{word-spacing:-1.173333pt;}
.ws4c{word-spacing:-1.114667pt;}
.ws1e{word-spacing:-1.091200pt;}
.ws37{word-spacing:-1.056000pt;}
.wscf{word-spacing:-0.997333pt;}
.wsf3{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.938667pt;}
.ws12{word-spacing:-0.912000pt;}
.wsf6{word-spacing:-0.906667pt;}
.ws8{word-spacing:-0.904000pt;}
.ws5d{word-spacing:-0.880000pt;}
.ws16{word-spacing:-0.816000pt;}
.ws36{word-spacing:-0.762667pt;}
.ws3c{word-spacing:-0.704000pt;}
.wsf2{word-spacing:-0.693333pt;}
.ws7f{word-spacing:-0.640000pt;}
.wsc1{word-spacing:-0.576000pt;}
.wsc2{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.470400pt;}
.ws92{word-spacing:-0.469333pt;}
.ws10{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.410667pt;}
.ws2b{word-spacing:-0.352000pt;}
.ws13{word-spacing:-0.336000pt;}
.ws61{word-spacing:-0.293333pt;}
.ws0{word-spacing:-0.246400pt;}
.wscd{word-spacing:-0.234667pt;}
.ws2c{word-spacing:-0.176000pt;}
.ws7e{word-spacing:-0.128000pt;}
.ws54{word-spacing:-0.117333pt;}
.wsf5{word-spacing:-0.106667pt;}
.ws74{word-spacing:-0.058667pt;}
.ws44{word-spacing:-0.050667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.033600pt;}
.ws67{word-spacing:0.058667pt;}
.ws4f{word-spacing:0.117333pt;}
.wsd8{word-spacing:0.160000pt;}
.wsb8{word-spacing:0.176000pt;}
.ws33{word-spacing:0.234667pt;}
.wsa{word-spacing:0.288000pt;}
.ws3a{word-spacing:0.293333pt;}
.ws4a{word-spacing:0.352000pt;}
.ws9f{word-spacing:0.410667pt;}
.ws14{word-spacing:0.432000pt;}
.ws6b{word-spacing:0.469333pt;}
.ws11{word-spacing:0.512000pt;}
.ws38{word-spacing:0.528000pt;}
.wsf0{word-spacing:0.533333pt;}
.ws4e{word-spacing:0.586667pt;}
.wsc7{word-spacing:0.645333pt;}
.ws6e{word-spacing:0.704000pt;}
.ws73{word-spacing:0.762667pt;}
.wsa0{word-spacing:0.821333pt;}
.wse3{word-spacing:0.853333pt;}
.wsa1{word-spacing:0.880000pt;}
.wsad{word-spacing:0.938667pt;}
.ws53{word-spacing:0.997333pt;}
.ws98{word-spacing:1.008000pt;}
.wsdb{word-spacing:1.013333pt;}
.ws9b{word-spacing:1.024000pt;}
.ws46{word-spacing:1.056000pt;}
.ws31{word-spacing:1.114667pt;}
.ws75{word-spacing:1.173333pt;}
.wsbe{word-spacing:1.232000pt;}
.ws9a{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.290667pt;}
.ws34{word-spacing:1.349333pt;}
.ws7d{word-spacing:1.392000pt;}
.ws8f{word-spacing:1.408000pt;}
.ws58{word-spacing:1.466667pt;}
.ws99{word-spacing:1.488000pt;}
.ws7c{word-spacing:1.584000pt;}
.wsb7{word-spacing:1.642667pt;}
.wsd5{word-spacing:1.701333pt;}
.wsfd{word-spacing:1.706667pt;}
.ws5e{word-spacing:1.760000pt;}
.wsde{word-spacing:1.813333pt;}
.ws65{word-spacing:1.818667pt;}
.ws60{word-spacing:1.877333pt;}
.ws25{word-spacing:1.936000pt;}
.wsf8{word-spacing:2.026667pt;}
.ws3e{word-spacing:2.053333pt;}
.ws76{word-spacing:2.112000pt;}
.wsce{word-spacing:2.170667pt;}
.wsee{word-spacing:2.240000pt;}
.wsc8{word-spacing:2.288000pt;}
.ws40{word-spacing:2.346667pt;}
.ws56{word-spacing:2.405333pt;}
.ws69{word-spacing:2.464000pt;}
.ws5b{word-spacing:2.581333pt;}
.wsc{word-spacing:2.640000pt;}
.wsfc{word-spacing:2.666667pt;}
.ws9d{word-spacing:2.698667pt;}
.wse5{word-spacing:2.720000pt;}
.ws97{word-spacing:2.736000pt;}
.ws2d{word-spacing:2.757333pt;}
.wsaa{word-spacing:2.874667pt;}
.wsa8{word-spacing:3.050667pt;}
.ws10d{word-spacing:3.093333pt;}
.wsc9{word-spacing:3.109333pt;}
.wsd3{word-spacing:3.226667pt;}
.wsed{word-spacing:3.253333pt;}
.ws15{word-spacing:3.264000pt;}
.ws93{word-spacing:3.285333pt;}
.ws5a{word-spacing:3.402667pt;}
.wsd6{word-spacing:3.413333pt;}
.ws10b{word-spacing:3.466667pt;}
.wsb4{word-spacing:3.520000pt;}
.wsdd{word-spacing:3.573333pt;}
.ws9{word-spacing:3.600000pt;}
.wsc0{word-spacing:3.648000pt;}
.ws88{word-spacing:3.754667pt;}
.ws32{word-spacing:3.813333pt;}
.wse9{word-spacing:3.840000pt;}
.wsca{word-spacing:3.872000pt;}
.ws90{word-spacing:3.930667pt;}
.ws66{word-spacing:3.989333pt;}
.wsbf{word-spacing:4.032000pt;}
.wsab{word-spacing:4.048000pt;}
.wsf1{word-spacing:4.053333pt;}
.ws55{word-spacing:4.165333pt;}
.ws6f{word-spacing:4.224000pt;}
.wse1{word-spacing:4.266667pt;}
.ws17{word-spacing:4.272000pt;}
.ws6d{word-spacing:4.282667pt;}
.wsf{word-spacing:4.309333pt;}
.wsfa{word-spacing:4.320000pt;}
.ws3b{word-spacing:4.341333pt;}
.ws6c{word-spacing:4.400000pt;}
.wscb{word-spacing:4.517333pt;}
.wse4{word-spacing:4.533333pt;}
.ws68{word-spacing:4.576000pt;}
.ws5c{word-spacing:4.634667pt;}
.ws89{word-spacing:4.693333pt;}
.ws105{word-spacing:4.746667pt;}
.ws8c{word-spacing:4.752000pt;}
.wsa5{word-spacing:4.810667pt;}
.ws8b{word-spacing:4.869333pt;}
.wsb0{word-spacing:4.896000pt;}
.wsf4{word-spacing:4.906667pt;}
.wsb3{word-spacing:4.928000pt;}
.wsc4{word-spacing:4.986667pt;}
.wsb{word-spacing:4.992000pt;}
.wsb1{word-spacing:5.040000pt;}
.ws101{word-spacing:5.120000pt;}
.ws96{word-spacing:5.184000pt;}
.ws70{word-spacing:5.221333pt;}
.wsa7{word-spacing:5.280000pt;}
.wse6{word-spacing:5.333333pt;}
.wsbd{word-spacing:5.338667pt;}
.wsaf{word-spacing:5.424000pt;}
.ws10f{word-spacing:5.493333pt;}
.wsa2{word-spacing:5.573333pt;}
.ws95{word-spacing:5.760000pt;}
.wsd1{word-spacing:5.856000pt;}
.ws27{word-spacing:5.925333pt;}
.ws2f{word-spacing:5.984000pt;}
.ws59{word-spacing:6.042667pt;}
.ws106{word-spacing:6.080000pt;}
.ws4d{word-spacing:6.160000pt;}
.wsba{word-spacing:6.218667pt;}
.ws102{word-spacing:6.240000pt;}
.ws29{word-spacing:6.277333pt;}
.ws72{word-spacing:6.512000pt;}
.wsd0{word-spacing:6.528000pt;}
.ws94{word-spacing:6.570667pt;}
.wsd7{word-spacing:6.613333pt;}
.wsae{word-spacing:6.688000pt;}
.wsc5{word-spacing:6.805333pt;}
.wscc{word-spacing:6.864000pt;}
.wsf9{word-spacing:6.880000pt;}
.wsb5{word-spacing:6.981333pt;}
.wsc6{word-spacing:7.040000pt;}
.ws91{word-spacing:7.098667pt;}
.wsac{word-spacing:7.333333pt;}
.ws85{word-spacing:7.392000pt;}
.wsb2{word-spacing:7.509333pt;}
.wsb9{word-spacing:7.568000pt;}
.wsdc{word-spacing:7.573333pt;}
.ws49{word-spacing:7.626667pt;}
.wsdf{word-spacing:7.733333pt;}
.ws2a{word-spacing:7.744000pt;}
.ws77{word-spacing:7.802667pt;}
.ws87{word-spacing:7.861333pt;}
.wsd9{word-spacing:7.946667pt;}
.ws1b{word-spacing:8.096000pt;}
.ws71{word-spacing:8.154667pt;}
.wsc3{word-spacing:8.213333pt;}
.wse8{word-spacing:8.320000pt;}
.wsbb{word-spacing:8.330667pt;}
.ws109{word-spacing:8.640000pt;}
.ws26{word-spacing:8.800000pt;}
.wsda{word-spacing:8.960000pt;}
.ws107{word-spacing:9.333333pt;}
.wsa9{word-spacing:9.562667pt;}
.ws10e{word-spacing:9.653333pt;}
.ws86{word-spacing:9.738667pt;}
.wse0{word-spacing:9.813333pt;}
.ws10a{word-spacing:10.506667pt;}
.ws1a{word-spacing:11.088000pt;}
.wse2{word-spacing:17.600000pt;}
.ws50{word-spacing:67.232000pt;}
.ws7a{word-spacing:350.084267pt;}
.ws84{word-spacing:486.826667pt;}
.ws83{word-spacing:524.970667pt;}
._b{margin-left:-10.632053pt;}
._9{margin-left:-9.691040pt;}
._7{margin-left:-8.238027pt;}
._2{margin-left:-6.743840pt;}
._a{margin-left:-5.649600pt;}
._8{margin-left:-4.405173pt;}
._4{margin-left:-2.892800pt;}
._3{margin-left:-1.930827pt;}
._1{margin-left:-0.969173pt;}
._0{width:1.757653pt;}
._5{width:3.580800pt;}
._6{width:4.911627pt;}
._57{width:6.626133pt;}
._d{width:8.159840pt;}
._25{width:18.687253pt;}
._28{width:20.523627pt;}
._40{width:28.533813pt;}
._41{width:32.900800pt;}
._3c{width:37.946293pt;}
._45{width:44.186347pt;}
._2b{width:105.581280pt;}
._3a{width:113.449333pt;}
._2a{width:120.119787pt;}
._10{width:126.520000pt;}
._30{width:128.630133pt;}
._24{width:129.877173pt;}
._21{width:144.792160pt;}
._32{width:164.029013pt;}
._39{width:169.024320pt;}
._42{width:182.612000pt;}
._31{width:183.599467pt;}
._37{width:188.620800pt;}
._1e{width:189.846987pt;}
._3d{width:193.173653pt;}
._11{width:196.211840pt;}
._3b{width:197.482987pt;}
._19{width:199.086133pt;}
._14{width:205.162987pt;}
._2f{width:209.792960pt;}
._23{width:212.501653pt;}
._1b{width:216.737867pt;}
._3f{width:229.435360pt;}
._44{width:232.170987pt;}
._27{width:235.535627pt;}
._38{width:238.747573pt;}
._16{width:243.213333pt;}
._22{width:244.343200pt;}
._34{width:247.351787pt;}
._1d{width:251.902667pt;}
._35{width:259.481013pt;}
._13{width:263.883467pt;}
._1c{width:268.864320pt;}
._2c{width:271.276960pt;}
._1a{width:277.717973pt;}
._12{width:280.845120pt;}
._18{width:290.957120pt;}
._f{width:298.933493pt;}
._48{width:299.852800pt;}
._2e{width:301.942133pt;}
._36{width:309.335627pt;}
._4b{width:314.858987pt;}
._2d{width:318.903787pt;}
._33{width:328.674453pt;}
._26{width:330.132267pt;}
._1f{width:338.453653pt;}
._4c{width:340.629973pt;}
._4a{width:342.314667pt;}
._43{width:344.694133pt;}
._4f{width:346.684160pt;}
._4e{width:348.281493pt;}
._17{width:357.918507pt;}
._29{width:358.925120pt;}
._52{width:395.604000pt;}
._47{width:400.746987pt;}
._51{width:422.805653pt;}
._46{width:426.346987pt;}
._15{width:454.400000pt;}
._3e{width:455.626027pt;}
._53{width:470.007467pt;}
._54{width:488.896320pt;}
._55{width:508.160000pt;}
._50{width:512.704320pt;}
._20{width:528.992160pt;}
._4d{width:549.005120pt;}
._e{width:558.175840pt;}
._49{width:647.733173pt;}
._56{width:690.410987pt;}
._c{width:733.127093pt;}
.fs8{font-size:33.600000pt;}
.fs2{font-size:35.135467pt;}
.fs9{font-size:35.200000pt;}
.fs4{font-size:40.533333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:60.266667pt;}
.fs6{font-size:62.933333pt;}
.fs0{font-size:82.133333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.251867pt;}
.y7b{bottom:57.096000pt;}
.ydc{bottom:57.098000pt;}
.y20{bottom:60.449067pt;}
.yba{bottom:60.911200pt;}
.ya9{bottom:61.876267pt;}
.y73{bottom:74.696000pt;}
.y4f{bottom:74.696133pt;}
.ydb{bottom:74.698000pt;}
.yb9{bottom:75.449867pt;}
.ya8{bottom:76.414933pt;}
.yb8{bottom:89.988533pt;}
.ya7{bottom:90.953600pt;}
.y72{bottom:92.296000pt;}
.y4e{bottom:92.296133pt;}
.yda{bottom:92.298000pt;}
.yb7{bottom:104.527200pt;}
.ye3{bottom:104.821333pt;}
.ya6{bottom:105.492267pt;}
.y1c{bottom:109.896000pt;}
.y4d{bottom:109.896133pt;}
.yd9{bottom:109.898000pt;}
.yb6{bottom:119.065867pt;}
.ya5{bottom:120.030933pt;}
.ye0{bottom:122.421333pt;}
.y1b{bottom:127.496000pt;}
.y4c{bottom:127.496133pt;}
.yd8{bottom:127.498000pt;}
.yb5{bottom:133.604533pt;}
.ya4{bottom:134.569600pt;}
.ye7{bottom:140.021467pt;}
.y1a{bottom:145.096000pt;}
.y4b{bottom:145.096133pt;}
.yd7{bottom:145.098000pt;}
.yb4{bottom:148.143200pt;}
.ya3{bottom:149.108267pt;}
.yb3{bottom:162.681867pt;}
.y71{bottom:162.696000pt;}
.y4a{bottom:162.696133pt;}
.ya2{bottom:163.646933pt;}
.yd6{bottom:175.223333pt;}
.yb2{bottom:177.220533pt;}
.ya1{bottom:178.185600pt;}
.y19{bottom:178.235867pt;}
.y70{bottom:180.296000pt;}
.y49{bottom:180.296133pt;}
.ye9{bottom:190.387333pt;}
.yb1{bottom:191.759200pt;}
.ya0{bottom:192.724267pt;}
.y6f{bottom:197.896000pt;}
.y48{bottom:197.896133pt;}
.y9f{bottom:207.262933pt;}
.y6e{bottom:215.496000pt;}
.y47{bottom:215.496133pt;}
.yd5{bottom:215.498000pt;}
.yb0{bottom:216.895600pt;}
.y9e{bottom:220.596267pt;}
.yaf{bottom:232.891600pt;}
.y6d{bottom:233.096000pt;}
.y46{bottom:233.096133pt;}
.yd4{bottom:233.098000pt;}
.y9d{bottom:235.134933pt;}
.y18{bottom:238.585867pt;}
.yae{bottom:248.887600pt;}
.y9c{bottom:249.673600pt;}
.y6c{bottom:250.696000pt;}
.y45{bottom:250.696133pt;}
.yd3{bottom:250.698000pt;}
.y17{bottom:254.581867pt;}
.y9b{bottom:264.212267pt;}
.yad{bottom:264.883600pt;}
.y6b{bottom:268.296000pt;}
.y44{bottom:268.296133pt;}
.yd2{bottom:268.298000pt;}
.y9a{bottom:278.750933pt;}
.yac{bottom:280.879600pt;}
.y6a{bottom:285.896000pt;}
.y43{bottom:285.896133pt;}
.yd1{bottom:285.898000pt;}
.y16{bottom:288.181867pt;}
.y99{bottom:293.289600pt;}
.yab{bottom:296.875600pt;}
.y69{bottom:303.496000pt;}
.y42{bottom:303.496133pt;}
.yd0{bottom:303.498000pt;}
.y15{bottom:304.177867pt;}
.y98{bottom:307.828267pt;}
.ydf{bottom:320.059067pt;}
.y14{bottom:320.173867pt;}
.y68{bottom:321.096000pt;}
.y41{bottom:321.096133pt;}
.ycf{bottom:321.098000pt;}
.y97{bottom:322.366933pt;}
.yde{bottom:336.055067pt;}
.y13{bottom:336.169867pt;}
.y96{bottom:336.905600pt;}
.y67{bottom:338.696000pt;}
.y40{bottom:338.696133pt;}
.yce{bottom:338.698000pt;}
.y95{bottom:351.444267pt;}
.ydd{bottom:352.051067pt;}
.y12{bottom:352.165867pt;}
.y66{bottom:356.296000pt;}
.y3f{bottom:356.296133pt;}
.ycd{bottom:356.298000pt;}
.yec{bottom:364.890400pt;}
.y94{bottom:365.982933pt;}
.y11{bottom:368.161867pt;}
.ye6{bottom:370.448800pt;}
.y7a{bottom:373.896000pt;}
.y3e{bottom:373.896133pt;}
.ycc{bottom:373.898000pt;}
.y93{bottom:380.521600pt;}
.yeb{bottom:380.886400pt;}
.y10{bottom:384.157867pt;}
.ye2{bottom:386.421333pt;}
.ye5{bottom:386.444800pt;}
.y79{bottom:391.496000pt;}
.y3d{bottom:391.496133pt;}
.ycb{bottom:391.498000pt;}
.y65{bottom:391.543867pt;}
.y92{bottom:395.060267pt;}
.yea{bottom:396.882400pt;}
.yf{bottom:400.153867pt;}
.ye4{bottom:402.440800pt;}
.ye8{bottom:404.018800pt;}
.y78{bottom:409.096000pt;}
.y3c{bottom:409.096133pt;}
.y91{bottom:409.598933pt;}
.ye{bottom:416.149867pt;}
.y64{bottom:419.187333pt;}
.yca{bottom:421.623333pt;}
.y90{bottom:424.137600pt;}
.y77{bottom:426.696000pt;}
.y3b{bottom:426.696133pt;}
.yd{bottom:432.145867pt;}
.y8f{bottom:438.676267pt;}
.y76{bottom:444.296000pt;}
.y3a{bottom:444.296133pt;}
.y8e{bottom:453.214933pt;}
.y75{bottom:461.896000pt;}
.y39{bottom:461.896133pt;}
.yc9{bottom:461.898000pt;}
.y8d{bottom:467.753600pt;}
.y63{bottom:479.496000pt;}
.y38{bottom:479.496133pt;}
.yc8{bottom:479.498000pt;}
.y8c{bottom:482.292267pt;}
.yc{bottom:485.827733pt;}
.y74{bottom:492.018933pt;}
.y8b{bottom:496.830933pt;}
.y62{bottom:497.096000pt;}
.y37{bottom:497.096133pt;}
.yc7{bottom:497.098000pt;}
.yb{bottom:501.827733pt;}
.y8a{bottom:511.369600pt;}
.y61{bottom:514.696000pt;}
.y36{bottom:514.696133pt;}
.yc6{bottom:514.698000pt;}
.yee{bottom:524.787333pt;}
.ya{bottom:525.386800pt;}
.y89{bottom:525.908267pt;}
.y60{bottom:532.296000pt;}
.y35{bottom:532.296133pt;}
.yc5{bottom:532.298000pt;}
.y88{bottom:540.446933pt;}
.y5f{bottom:549.896000pt;}
.y34{bottom:549.896133pt;}
.yc4{bottom:549.898000pt;}
.y87{bottom:554.985600pt;}
.y9{bottom:558.988000pt;}
.y5e{bottom:567.496000pt;}
.y33{bottom:567.496133pt;}
.yc3{bottom:567.498000pt;}
.y86{bottom:569.524267pt;}
.yaa{bottom:580.018933pt;}
.y85{bottom:584.062933pt;}
.y8{bottom:585.046267pt;}
.y5d{bottom:585.096000pt;}
.y32{bottom:585.096133pt;}
.yc2{bottom:585.098000pt;}
.y84{bottom:598.601600pt;}
.y7{bottom:601.042267pt;}
.y5c{bottom:602.696000pt;}
.y31{bottom:602.696133pt;}
.yc1{bottom:602.698000pt;}
.y83{bottom:613.140267pt;}
.ye1{bottom:615.221333pt;}
.y6{bottom:617.038267pt;}
.y5b{bottom:620.296000pt;}
.y30{bottom:620.296133pt;}
.yc0{bottom:620.298000pt;}
.y82{bottom:627.678933pt;}
.y5{bottom:633.034267pt;}
.y5a{bottom:637.896000pt;}
.y2f{bottom:637.896133pt;}
.ybf{bottom:637.898000pt;}
.y81{bottom:642.217600pt;}
.y4{bottom:649.030267pt;}
.y59{bottom:655.496000pt;}
.y2e{bottom:655.496133pt;}
.ybe{bottom:655.498000pt;}
.y80{bottom:657.086933pt;}
.y58{bottom:673.096000pt;}
.y2d{bottom:673.096133pt;}
.ybd{bottom:673.098000pt;}
.y3{bottom:680.148267pt;}
.y7f{bottom:682.207333pt;}
.y57{bottom:690.696000pt;}
.y2c{bottom:690.696133pt;}
.y7e{bottom:698.203333pt;}
.y2{bottom:698.228400pt;}
.y56{bottom:708.296000pt;}
.y2b{bottom:708.296133pt;}
.ybc{bottom:710.776667pt;}
.y55{bottom:725.896000pt;}
.y2a{bottom:725.896133pt;}
.ybb{bottom:738.418800pt;}
.y54{bottom:743.496000pt;}
.y29{bottom:743.496133pt;}
.y1{bottom:747.731333pt;}
.y53{bottom:761.096000pt;}
.y28{bottom:761.096133pt;}
.y7d{bottom:772.949333pt;}
.y52{bottom:778.696000pt;}
.y27{bottom:778.696133pt;}
.y51{bottom:796.296000pt;}
.y26{bottom:796.296133pt;}
.y7c{bottom:800.592800pt;}
.yed{bottom:808.152000pt;}
.y50{bottom:813.896000pt;}
.y25{bottom:813.896133pt;}
.y1f{bottom:831.741600pt;}
.y1e{bottom:845.072400pt;}
.y22{bottom:847.540000pt;}
.y24{bottom:852.549067pt;}
.y23{bottom:853.032400pt;}
.y1d{bottom:858.403200pt;}
.hc{height:24.323200pt;}
.hb{height:25.200000pt;}
.hf{height:30.506667pt;}
.h6{height:32.000000pt;}
.h7{height:33.168000pt;}
.h5{height:34.322286pt;}
.h8{height:36.000000pt;}
.hd{height:38.000000pt;}
.h11{height:40.000000pt;}
.h10{height:41.946667pt;}
.h9{height:43.486933pt;}
.ha{height:44.000000pt;}
.h3{height:46.419867pt;}
.h4{height:46.420400pt;}
.he{height:47.200000pt;}
.h2{height:61.600000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x4{left:69.921200pt;}
.x9{left:72.179200pt;}
.x7{left:92.595867pt;}
.x3{left:151.312267pt;}
.x6{left:160.054400pt;}
.x1{left:193.358533pt;}
.x2{left:195.626000pt;}
.x5{left:268.147333pt;}
.x8{left:272.405733pt;}
.xa{left:278.995200pt;}
.xb{left:475.528533pt;}
}




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