
    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_6852ef89a613713b0b92f6c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_a86d5f9a78c574bc06aa97ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_07f4fa380bc344b593aa66e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_178cf8c9f3429be9b14aeb5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_499da4bd08d6a05097dd6741.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_45c734c09f09fee846a12319.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_bbe58a2b3949e2aa9172bc62.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.000000px;}
.ls26{letter-spacing:-3.600000px;}
.ls3e{letter-spacing:-2.160000px;}
.ls38{letter-spacing:-1.800000px;}
.ls55{letter-spacing:-1.680000px;}
.ls61{letter-spacing:-1.620000px;}
.ls62{letter-spacing:-1.500000px;}
.ls37{letter-spacing:-1.368000px;}
.ls47{letter-spacing:-1.296000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls48{letter-spacing:-1.008000px;}
.ls60{letter-spacing:-0.960000px;}
.ls40{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls5a{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls6a{letter-spacing:-0.528000px;}
.ls27{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.420000px;}
.ls21{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.330000px;}
.ls20{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.288000px;}
.ls6c{letter-spacing:-0.264000px;}
.ls58{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.168000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls69{letter-spacing:-0.132000px;}
.ls57{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.084000px;}
.ls24{letter-spacing:-0.072000px;}
.ls6b{letter-spacing:-0.066000px;}
.ls54{letter-spacing:-0.060000px;}
.ls13{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.060000px;}
.ls36{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.120000px;}
.ls64{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.240000px;}
.ls5b{letter-spacing:0.282000px;}
.ls1d{letter-spacing:0.288000px;}
.ls63{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.360000px;}
.ls68{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.403200px;}
.ls2a{letter-spacing:0.410400px;}
.ls2f{letter-spacing:0.424800px;}
.ls4{letter-spacing:0.432000px;}
.ls66{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.482400px;}
.ls5{letter-spacing:0.504000px;}
.ls52{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.576000px;}
.ls43{letter-spacing:0.590400px;}
.ls53{letter-spacing:0.600000px;}
.ls2e{letter-spacing:0.648000px;}
.ls4c{letter-spacing:0.780000px;}
.ls3c{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.900000px;}
.ls46{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.152000px;}
.ls51{letter-spacing:1.194000px;}
.ls50{letter-spacing:1.200000px;}
.ls45{letter-spacing:1.440000px;}
.ls59{letter-spacing:1.560000px;}
.ls30{letter-spacing:1.656000px;}
.ls4e{letter-spacing:1.740000px;}
.ls5d{letter-spacing:1.980000px;}
.ls34{letter-spacing:2.332800px;}
.lsc{letter-spacing:2.376000px;}
.lsf{letter-spacing:2.534400px;}
.ls4b{letter-spacing:3.180000px;}
.ls4d{letter-spacing:4.380000px;}
.ls33{letter-spacing:4.744800px;}
.lsb{letter-spacing:4.752000px;}
.ls31{letter-spacing:7.200000px;}
.ls5c{letter-spacing:7.980000px;}
.ls35{letter-spacing:8.352000px;}
.ls39{letter-spacing:9.576000px;}
.ls3a{letter-spacing:10.800000px;}
.lsd{letter-spacing:11.952000px;}
.lse{letter-spacing:13.176000px;}
.ls5f{letter-spacing:14.724600px;}
.ls44{letter-spacing:15.552000px;}
.ls49{letter-spacing:20.376000px;}
.ls4a{letter-spacing:22.920000px;}
.ls3b{letter-spacing:23.976000px;}
.ls32{letter-spacing:28.800000px;}
.ls4f{letter-spacing:29.580000px;}
.ls29{letter-spacing:33.408000px;}
.ls11{letter-spacing:46.800000px;}
.ls42{letter-spacing:52.560000px;}
.ls5e{letter-spacing:88.800000px;}
.ls3f{letter-spacing:94.608000px;}
.ls3{letter-spacing:503.580000px;}
.ls2{letter-spacing:765.180000px;}
.ls1{letter-spacing:846.780000px;}
.ls28{letter-spacing:1031.580000px;}
.ls0{letter-spacing:1428.780000px;}
.ls41{letter-spacing:1590.780000px;}
.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;}
}
.ws76{word-spacing:-20.088000px;}
.ws37{word-spacing:-19.800000px;}
.ws4{word-spacing:-19.584000px;}
.wse{word-spacing:-19.512000px;}
.wsbc{word-spacing:-19.440000px;}
.wscb{word-spacing:-19.296000px;}
.ws5{word-spacing:-19.224000px;}
.wsa8{word-spacing:-19.152000px;}
.ws36{word-spacing:-19.080000px;}
.ws39{word-spacing:-19.008000px;}
.ws38{word-spacing:-18.936000px;}
.ws5b{word-spacing:-18.864000px;}
.wsd{word-spacing:-18.792000px;}
.ws35{word-spacing:-18.720000px;}
.ws3a{word-spacing:-18.648000px;}
.ws6{word-spacing:-18.360000px;}
.ws8d{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.216000px;}
.ws8e{word-spacing:-18.144000px;}
.wsd1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.640000px;}
.ws10d{word-spacing:-17.358000px;}
.ws10c{word-spacing:-17.094000px;}
.ws8{word-spacing:-16.920000px;}
.ws33{word-spacing:-16.500000px;}
.ws10b{word-spacing:-16.368000px;}
.ws108{word-spacing:-16.320000px;}
.ws106{word-spacing:-16.260000px;}
.wse4{word-spacing:-16.140000px;}
.ws109{word-spacing:-16.080000px;}
.wse2{word-spacing:-16.020000px;}
.wse0{word-spacing:-15.960000px;}
.ws1{word-spacing:-15.840000px;}
.wse1{word-spacing:-15.780000px;}
.ws9{word-spacing:-15.720000px;}
.ws7{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws34{word-spacing:-15.480000px;}
.wse3{word-spacing:-15.300000px;}
.ws10a{word-spacing:-14.640000px;}
.ws107{word-spacing:-14.520000px;}
.ws3{word-spacing:-11.214000px;}
.ws90{word-spacing:-4.752000px;}
.ws84{word-spacing:-4.392000px;}
.ws83{word-spacing:-4.248000px;}
.ws104{word-spacing:-4.140000px;}
.wsad{word-spacing:-3.888000px;}
.wscc{word-spacing:-3.816000px;}
.ws103{word-spacing:-3.540000px;}
.ws55{word-spacing:-3.528000px;}
.ws91{word-spacing:-3.384000px;}
.ws6a{word-spacing:-3.312000px;}
.ws53{word-spacing:-3.168000px;}
.wsfe{word-spacing:-3.060000px;}
.ws45{word-spacing:-3.024000px;}
.ws120{word-spacing:-3.000000px;}
.wse8{word-spacing:-2.940000px;}
.ws11b{word-spacing:-2.760000px;}
.ws3c{word-spacing:-2.736000px;}
.ws8c{word-spacing:-2.664000px;}
.wsd6{word-spacing:-2.520000px;}
.ws11c{word-spacing:-2.400000px;}
.ws41{word-spacing:-2.376000px;}
.ws11a{word-spacing:-2.340000px;}
.ws40{word-spacing:-2.160000px;}
.wsfb{word-spacing:-2.100000px;}
.ws77{word-spacing:-2.016000px;}
.ws7d{word-spacing:-1.872000px;}
.wsf1{word-spacing:-1.860000px;}
.wsec{word-spacing:-1.740000px;}
.wsf0{word-spacing:-1.680000px;}
.wsfd{word-spacing:-1.560000px;}
.ws65{word-spacing:-1.512000px;}
.wsf2{word-spacing:-1.500000px;}
.ws54{word-spacing:-1.440000px;}
.ws111{word-spacing:-1.320000px;}
.ws72{word-spacing:-1.152000px;}
.wsfc{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.008000px;}
.wsa0{word-spacing:-0.936000px;}
.ws100{word-spacing:-0.900000px;}
.ws99{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.792000px;}
.ws16{word-spacing:-0.672000px;}
.ws1e{word-spacing:-0.660000px;}
.ws3d{word-spacing:-0.648000px;}
.wsa4{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.540000px;}
.ws9e{word-spacing:-0.504000px;}
.ws101{word-spacing:-0.480000px;}
.ws1d{word-spacing:-0.468000px;}
.ws11{word-spacing:-0.420000px;}
.ws1b{word-spacing:-0.360000px;}
.wsf3{word-spacing:-0.300000px;}
.ws1c{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws86{word-spacing:-0.144000px;}
.wse9{word-spacing:-0.120000px;}
.ws6e{word-spacing:-0.072000px;}
.ws105{word-spacing:-0.060000px;}
.ws10{word-spacing:0.000000px;}
.wsf6{word-spacing:0.060000px;}
.ws12b{word-spacing:0.066000px;}
.ws2c{word-spacing:0.072000px;}
.ws1a{word-spacing:0.144000px;}
.ws113{word-spacing:0.180000px;}
.ws2e{word-spacing:0.216000px;}
.ws2f{word-spacing:0.288000px;}
.ws20{word-spacing:0.300000px;}
.ws17{word-spacing:0.336000px;}
.ws52{word-spacing:0.360000px;}
.ws15{word-spacing:0.420000px;}
.ws18{word-spacing:0.432000px;}
.ws12f{word-spacing:0.462000px;}
.ws1f{word-spacing:0.480000px;}
.wsb8{word-spacing:0.504000px;}
.ws12e{word-spacing:0.528000px;}
.wsea{word-spacing:0.540000px;}
.ws19{word-spacing:0.576000px;}
.ws118{word-spacing:0.600000px;}
.ws3b{word-spacing:0.660000px;}
.ws11d{word-spacing:0.720000px;}
.ws14{word-spacing:0.756000px;}
.ws28{word-spacing:0.864000px;}
.ws4b{word-spacing:0.936000px;}
.wsf4{word-spacing:1.200000px;}
.ws73{word-spacing:1.224000px;}
.wseb{word-spacing:1.260000px;}
.wsd9{word-spacing:1.296000px;}
.ws6d{word-spacing:1.368000px;}
.ws6c{word-spacing:1.440000px;}
.ws70{word-spacing:1.512000px;}
.ws29{word-spacing:1.584000px;}
.ws31{word-spacing:1.656000px;}
.ws30{word-spacing:1.728000px;}
.ws10e{word-spacing:1.740000px;}
.ws4a{word-spacing:1.800000px;}
.ws3e{word-spacing:2.088000px;}
.ws49{word-spacing:2.160000px;}
.ws110{word-spacing:2.400000px;}
.ws48{word-spacing:2.448000px;}
.ws10f{word-spacing:2.460000px;}
.ws6f{word-spacing:2.592000px;}
.ws74{word-spacing:2.808000px;}
.wsd0{word-spacing:2.880000px;}
.ws102{word-spacing:2.940000px;}
.ws3f{word-spacing:2.952000px;}
.ws4c{word-spacing:3.312000px;}
.ws9f{word-spacing:3.384000px;}
.ws12d{word-spacing:3.564000px;}
.ws2d{word-spacing:3.600000px;}
.wse6{word-spacing:3.660000px;}
.wsa1{word-spacing:3.672000px;}
.wsb1{word-spacing:3.888000px;}
.ws12c{word-spacing:3.960000px;}
.ws95{word-spacing:4.032000px;}
.wsee{word-spacing:4.140000px;}
.ws62{word-spacing:4.176000px;}
.wsef{word-spacing:4.260000px;}
.ws121{word-spacing:4.320000px;}
.ws21{word-spacing:4.536000px;}
.wse7{word-spacing:4.560000px;}
.ws122{word-spacing:4.680000px;}
.ws64{word-spacing:4.824000px;}
.wsed{word-spacing:4.860000px;}
.wsd2{word-spacing:4.968000px;}
.ws6b{word-spacing:5.040000px;}
.wsb5{word-spacing:5.112000px;}
.wsd7{word-spacing:5.184000px;}
.ws5a{word-spacing:5.328000px;}
.ws114{word-spacing:5.340000px;}
.ws98{word-spacing:5.616000px;}
.ws27{word-spacing:5.760000px;}
.ws115{word-spacing:6.000000px;}
.ws50{word-spacing:6.048000px;}
.ws87{word-spacing:6.264000px;}
.ws92{word-spacing:6.408000px;}
.ws7e{word-spacing:6.480000px;}
.ws112{word-spacing:6.540000px;}
.ws51{word-spacing:6.552000px;}
.ws60{word-spacing:6.912000px;}
.ws7a{word-spacing:6.984000px;}
.ws61{word-spacing:7.272000px;}
.ws97{word-spacing:7.488000px;}
.ws7b{word-spacing:7.632000px;}
.ws7c{word-spacing:7.704000px;}
.ws116{word-spacing:7.740000px;}
.ws5f{word-spacing:7.776000px;}
.wsa3{word-spacing:8.064000px;}
.wsc3{word-spacing:8.136000px;}
.ws117{word-spacing:8.400000px;}
.ws9d{word-spacing:8.424000px;}
.ws119{word-spacing:8.460000px;}
.wse5{word-spacing:8.640000px;}
.ws78{word-spacing:8.784000px;}
.ws4d{word-spacing:8.928000px;}
.wsf5{word-spacing:8.940000px;}
.wsca{word-spacing:9.288000px;}
.ws9c{word-spacing:9.360000px;}
.ws4e{word-spacing:9.648000px;}
.wsa5{word-spacing:9.792000px;}
.ws42{word-spacing:9.864000px;}
.ws44{word-spacing:10.008000px;}
.wsff{word-spacing:10.140000px;}
.ws43{word-spacing:10.152000px;}
.wsc9{word-spacing:10.512000px;}
.ws2b{word-spacing:10.584000px;}
.ws11e{word-spacing:10.680000px;}
.ws11f{word-spacing:10.860000px;}
.ws81{word-spacing:10.872000px;}
.wsc8{word-spacing:10.944000px;}
.wsdf{word-spacing:11.088000px;}
.ws82{word-spacing:11.232000px;}
.wsf7{word-spacing:11.340000px;}
.ws4f{word-spacing:11.376000px;}
.wsaf{word-spacing:11.736000px;}
.wsae{word-spacing:12.024000px;}
.ws80{word-spacing:12.384000px;}
.ws7f{word-spacing:12.456000px;}
.ws9b{word-spacing:12.528000px;}
.ws57{word-spacing:12.888000px;}
.ws79{word-spacing:12.960000px;}
.ws58{word-spacing:13.248000px;}
.ws8b{word-spacing:13.392000px;}
.ws59{word-spacing:13.608000px;}
.ws56{word-spacing:13.752000px;}
.wsa6{word-spacing:14.040000px;}
.wscd{word-spacing:14.184000px;}
.ws129{word-spacing:14.322000px;}
.ws96{word-spacing:14.472000px;}
.wsd3{word-spacing:14.832000px;}
.ws128{word-spacing:14.850000px;}
.ws22{word-spacing:14.976000px;}
.ws12a{word-spacing:15.114000px;}
.wsc5{word-spacing:15.336000px;}
.wsc2{word-spacing:15.624000px;}
.wsda{word-spacing:15.840000px;}
.wsac{word-spacing:16.128000px;}
.wsb4{word-spacing:16.488000px;}
.ws26{word-spacing:16.560000px;}
.ws63{word-spacing:16.992000px;}
.ws88{word-spacing:17.208000px;}
.ws25{word-spacing:17.352000px;}
.ws123{word-spacing:17.520000px;}
.ws8a{word-spacing:17.712000px;}
.ws124{word-spacing:18.060000px;}
.wsb7{word-spacing:18.072000px;}
.ws5d{word-spacing:18.216000px;}
.ws89{word-spacing:18.288000px;}
.ws5e{word-spacing:18.432000px;}
.ws5c{word-spacing:18.576000px;}
.wsd4{word-spacing:19.584000px;}
.ws8f{word-spacing:19.728000px;}
.wsb2{word-spacing:20.160000px;}
.wsb6{word-spacing:20.448000px;}
.ws75{word-spacing:20.808000px;}
.ws2a{word-spacing:20.952000px;}
.wsd5{word-spacing:22.176000px;}
.wscf{word-spacing:22.824000px;}
.wsce{word-spacing:23.184000px;}
.ws71{word-spacing:23.328000px;}
.wsa7{word-spacing:23.688000px;}
.ws85{word-spacing:24.552000px;}
.wsa2{word-spacing:25.272000px;}
.ws9a{word-spacing:25.776000px;}
.wsbe{word-spacing:26.136000px;}
.wsbd{word-spacing:26.424000px;}
.wsde{word-spacing:26.640000px;}
.wsb3{word-spacing:26.928000px;}
.wsba{word-spacing:27.648000px;}
.wsb9{word-spacing:27.864000px;}
.ws67{word-spacing:28.512000px;}
.ws68{word-spacing:28.872000px;}
.ws69{word-spacing:29.016000px;}
.ws66{word-spacing:29.376000px;}
.wsf8{word-spacing:29.520000px;}
.wsfa{word-spacing:29.880000px;}
.wsf9{word-spacing:30.000000px;}
.wsdd{word-spacing:30.528000px;}
.wsab{word-spacing:30.888000px;}
.wsaa{word-spacing:31.248000px;}
.wsc4{word-spacing:31.752000px;}
.ws47{word-spacing:32.688000px;}
.ws46{word-spacing:32.976000px;}
.ws93{word-spacing:33.264000px;}
.wsc0{word-spacing:33.840000px;}
.wsbf{word-spacing:33.984000px;}
.ws94{word-spacing:34.128000px;}
.wsd8{word-spacing:35.352000px;}
.wsbb{word-spacing:35.784000px;}
.wsc7{word-spacing:36.072000px;}
.wsc6{word-spacing:36.432000px;}
.wsc1{word-spacing:36.936000px;}
.wsdb{word-spacing:37.728000px;}
.wsb0{word-spacing:38.448000px;}
.wsdc{word-spacing:38.952000px;}
.ws32{word-spacing:45.936000px;}
.wsa9{word-spacing:46.872000px;}
.ws126{word-spacing:86.940000px;}
.ws127{word-spacing:87.240000px;}
.ws125{word-spacing:87.660000px;}
._12{margin-left:-13.320000px;}
._23{margin-left:-8.820000px;}
._9{margin-left:-4.509600px;}
._5{margin-left:-2.907600px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.532000px;}
._8{width:3.854400px;}
._7{width:5.836800px;}
._1b{width:7.392000px;}
._1e{width:8.400000px;}
._13{width:9.408000px;}
._a{width:11.757600px;}
._b{width:12.772800px;}
._c{width:13.893600px;}
._d{width:15.151200px;}
._17{width:18.223200px;}
._e{width:21.931200px;}
._1a{width:23.076000px;}
._1c{width:24.180000px;}
._19{width:28.272000px;}
._14{width:32.856000px;}
._22{width:37.728000px;}
._f{width:46.221600px;}
._15{width:73.008000px;}
._25{width:86.400000px;}
._24{width:87.588000px;}
._18{width:91.224000px;}
._1d{width:112.380000px;}
._1f{width:113.832000px;}
._20{width:132.048000px;}
._16{width:143.580000px;}
._3{width:765.900000px;}
._11{width:808.860000px;}
._4{width:821.580000px;}
._21{width:968.796000px;}
._10{width:999.996000px;}
._2{width:1005.420000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs7{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.y4{bottom:67.800000px;}
.y11e{bottom:97.206000px;}
.y12c{bottom:97.218000px;}
.y67{bottom:97.224000px;}
.y14e{bottom:97.272000px;}
.ydc{bottom:105.006000px;}
.y36{bottom:106.206000px;}
.y175{bottom:111.900000px;}
.yae{bottom:112.836000px;}
.y87{bottom:112.866000px;}
.y11d{bottom:120.606000px;}
.yf8{bottom:120.612000px;}
.y12b{bottom:120.618000px;}
.y66{bottom:120.624000px;}
.y10f{bottom:120.642000px;}
.y14d{bottom:120.672000px;}
.y1aa{bottom:123.000000px;}
.ydb{bottom:128.100000px;}
.y35{bottom:129.606000px;}
.y174{bottom:131.100000px;}
.yad{bottom:135.930000px;}
.y86{bottom:135.960000px;}
.y1a9{bottom:141.600000px;}
.y11c{bottom:143.700000px;}
.yf7{bottom:143.706000px;}
.y12a{bottom:143.712000px;}
.y65{bottom:143.718000px;}
.y10e{bottom:143.736000px;}
.y14c{bottom:143.766000px;}
.y173{bottom:150.600000px;}
.yda{bottom:151.500000px;}
.y1a8{bottom:152.097000px;}
.y34{bottom:153.006000px;}
.yac{bottom:159.330000px;}
.y85{bottom:159.360000px;}
.y11b{bottom:167.100000px;}
.yf6{bottom:167.106000px;}
.y129{bottom:167.112000px;}
.y64{bottom:167.118000px;}
.y10d{bottom:167.136000px;}
.y14b{bottom:167.166000px;}
.y172{bottom:170.100000px;}
.y1a7{bottom:173.398500px;}
.yd9{bottom:174.900000px;}
.y33{bottom:176.100000px;}
.yab{bottom:182.730000px;}
.y84{bottom:182.760000px;}
.y11a{bottom:186.000000px;}
.y171{bottom:189.300000px;}
.yf5{bottom:190.200000px;}
.y128{bottom:190.206000px;}
.y63{bottom:190.212000px;}
.y10c{bottom:190.230000px;}
.y14a{bottom:190.260000px;}
.y119{bottom:194.136000px;}
.yd8{bottom:194.700000px;}
.y32{bottom:197.700000px;}
.yaa{bottom:205.824000px;}
.yd7{bottom:205.836000px;}
.y83{bottom:205.854000px;}
.y170{bottom:208.800000px;}
.yf4{bottom:211.800000px;}
.y127{bottom:213.606000px;}
.y62{bottom:213.612000px;}
.y10b{bottom:213.630000px;}
.y149{bottom:213.660000px;}
.y31{bottom:215.118000px;}
.y118{bottom:217.536000px;}
.y1a6{bottom:220.500000px;}
.y16f{bottom:228.300000px;}
.ya9{bottom:229.224000px;}
.yd6{bottom:229.236000px;}
.yf3{bottom:229.248000px;}
.y82{bottom:229.254000px;}
.y126{bottom:237.006000px;}
.y61{bottom:237.012000px;}
.y10a{bottom:237.030000px;}
.y148{bottom:237.060000px;}
.y30{bottom:238.212000px;}
.y117{bottom:240.936000px;}
.y16e{bottom:247.800000px;}
.ya8{bottom:252.624000px;}
.yd5{bottom:252.636000px;}
.yf2{bottom:252.648000px;}
.y81{bottom:252.654000px;}
.y125{bottom:260.100000px;}
.y60{bottom:260.106000px;}
.y109{bottom:260.124000px;}
.y147{bottom:260.154000px;}
.y2f{bottom:261.612000px;}
.y1a5{bottom:263.698500px;}
.y116{bottom:264.030000px;}
.y16d{bottom:267.000000px;}
.ya7{bottom:275.718000px;}
.yd4{bottom:275.730000px;}
.yf1{bottom:275.742000px;}
.y80{bottom:275.748000px;}
.y124{bottom:283.500000px;}
.y5f{bottom:283.506000px;}
.y108{bottom:283.524000px;}
.y146{bottom:283.554000px;}
.y1a4{bottom:285.000000px;}
.y2e{bottom:285.012000px;}
.y16c{bottom:286.500000px;}
.y115{bottom:287.430000px;}
.ya6{bottom:299.118000px;}
.yd3{bottom:299.130000px;}
.yf0{bottom:299.142000px;}
.y7f{bottom:299.148000px;}
.y1a3{bottom:303.600000px;}
.y123{bottom:305.100000px;}
.y16b{bottom:306.000000px;}
.y5e{bottom:306.906000px;}
.y107{bottom:306.924000px;}
.y145{bottom:306.954000px;}
.y2d{bottom:308.106000px;}
.y114{bottom:310.830000px;}
.y1a2{bottom:313.800000px;}
.ya5{bottom:322.212000px;}
.yd2{bottom:322.224000px;}
.yef{bottom:322.236000px;}
.y7e{bottom:322.242000px;}
.y16a{bottom:325.200000px;}
.y5d{bottom:330.000000px;}
.y106{bottom:330.018000px;}
.y144{bottom:330.048000px;}
.y2c{bottom:331.506000px;}
.y1a1{bottom:333.000000px;}
.y113{bottom:333.924000px;}
.y169{bottom:344.700000px;}
.ya4{bottom:345.612000px;}
.yd1{bottom:345.624000px;}
.yee{bottom:345.636000px;}
.y7d{bottom:345.642000px;}
.y1a0{bottom:352.500000px;}
.y5c{bottom:353.400000px;}
.y105{bottom:353.418000px;}
.y143{bottom:353.448000px;}
.y2b{bottom:354.906000px;}
.y112{bottom:357.324000px;}
.y168{bottom:364.200000px;}
.ya3{bottom:369.012000px;}
.yd0{bottom:369.024000px;}
.yed{bottom:369.036000px;}
.y7c{bottom:369.042000px;}
.y19f{bottom:369.600000px;}
.y5b{bottom:372.600000px;}
.y120{bottom:376.800000px;}
.y104{bottom:376.818000px;}
.y142{bottom:376.848000px;}
.y2a{bottom:378.000000px;}
.y19e{bottom:379.800000px;}
.y5a{bottom:380.724000px;}
.y167{bottom:383.400000px;}
.ya2{bottom:392.106000px;}
.ycf{bottom:392.118000px;}
.yec{bottom:392.130000px;}
.y7b{bottom:392.136000px;}
.y11f{bottom:398.100000px;}
.y19d{bottom:399.000000px;}
.y103{bottom:399.912000px;}
.y141{bottom:399.942000px;}
.y29{bottom:401.400000px;}
.y166{bottom:402.900000px;}
.y59{bottom:403.818000px;}
.ya1{bottom:415.506000px;}
.yce{bottom:415.518000px;}
.yeb{bottom:415.530000px;}
.y7a{bottom:415.536000px;}
.y19c{bottom:418.500000px;}
.y165{bottom:422.400000px;}
.y102{bottom:423.312000px;}
.y140{bottom:423.342000px;}
.y28{bottom:424.800000px;}
.y58{bottom:427.218000px;}
.y19b{bottom:438.000000px;}
.ya0{bottom:438.906000px;}
.ycd{bottom:438.918000px;}
.yea{bottom:438.930000px;}
.y79{bottom:438.936000px;}
.y164{bottom:441.900000px;}
.y27{bottom:446.100000px;}
.y101{bottom:446.712000px;}
.y13f{bottom:446.742000px;}
.y57{bottom:450.312000px;}
.y19a{bottom:457.200000px;}
.y163{bottom:461.100000px;}
.y9f{bottom:462.000000px;}
.ycc{bottom:462.012000px;}
.ye9{bottom:462.024000px;}
.y78{bottom:462.030000px;}
.y26{bottom:463.500000px;}
.y100{bottom:469.806000px;}
.y13e{bottom:469.836000px;}
.y56{bottom:473.712000px;}
.y199{bottom:476.700000px;}
.y162{bottom:480.600000px;}
.y25{bottom:485.100000px;}
.y9e{bottom:485.400000px;}
.ycb{bottom:485.412000px;}
.ye8{bottom:485.424000px;}
.y77{bottom:485.430000px;}
.yff{bottom:493.206000px;}
.y13d{bottom:493.236000px;}
.y198{bottom:496.200000px;}
.y55{bottom:497.112000px;}
.y161{bottom:500.100000px;}
.y24{bottom:502.218000px;}
.y9d{bottom:508.800000px;}
.yca{bottom:508.812000px;}
.ye7{bottom:508.824000px;}
.y76{bottom:508.830000px;}
.y197{bottom:515.400000px;}
.yfe{bottom:516.300000px;}
.y13c{bottom:516.330000px;}
.y160{bottom:519.300000px;}
.y54{bottom:520.206000px;}
.y23{bottom:525.618000px;}
.y9c{bottom:528.600000px;}
.yc9{bottom:531.906000px;}
.ye6{bottom:531.918000px;}
.y75{bottom:531.924000px;}
.y196{bottom:534.900000px;}
.y15f{bottom:538.800000px;}
.yfd{bottom:539.700000px;}
.y13b{bottom:539.730000px;}
.y9b{bottom:539.736000px;}
.y53{bottom:543.606000px;}
.y22{bottom:549.018000px;}
.y195{bottom:554.400000px;}
.yc8{bottom:555.306000px;}
.ye5{bottom:555.318000px;}
.y74{bottom:555.324000px;}
.y15e{bottom:558.300000px;}
.y13a{bottom:563.130000px;}
.y9a{bottom:563.136000px;}
.y52{bottom:567.006000px;}
.y21{bottom:572.112000px;}
.y194{bottom:573.900000px;}
.y15d{bottom:577.500000px;}
.yc7{bottom:578.400000px;}
.yfc{bottom:578.406000px;}
.ye4{bottom:578.412000px;}
.y73{bottom:578.418000px;}
.y139{bottom:586.224000px;}
.y99{bottom:586.230000px;}
.y51{bottom:590.100000px;}
.y193{bottom:593.100000px;}
.y20{bottom:595.512000px;}
.y15c{bottom:597.000000px;}
.yc6{bottom:601.800000px;}
.yfb{bottom:601.806000px;}
.ye3{bottom:601.812000px;}
.y72{bottom:601.818000px;}
.y50{bottom:609.300000px;}
.y138{bottom:609.624000px;}
.y98{bottom:609.630000px;}
.y192{bottom:612.600000px;}
.y111{bottom:613.500000px;}
.y15b{bottom:616.500000px;}
.y4f{bottom:617.448000px;}
.y1f{bottom:618.912000px;}
.yc5{bottom:625.200000px;}
.yfa{bottom:625.206000px;}
.ye2{bottom:625.212000px;}
.y71{bottom:625.218000px;}
.y191{bottom:632.100000px;}
.y110{bottom:632.700000px;}
.y137{bottom:633.024000px;}
.y97{bottom:633.030000px;}
.y15a{bottom:636.000000px;}
.y4e{bottom:640.848000px;}
.y1e{bottom:642.006000px;}
.yc4{bottom:645.000000px;}
.yf9{bottom:648.300000px;}
.ye1{bottom:648.306000px;}
.y70{bottom:648.312000px;}
.y190{bottom:651.300000px;}
.y159{bottom:655.200000px;}
.y136{bottom:656.118000px;}
.y96{bottom:656.124000px;}
.yc3{bottom:656.142000px;}
.y4d{bottom:663.942000px;}
.y1d{bottom:665.406000px;}
.y18f{bottom:670.800000px;}
.ye0{bottom:671.706000px;}
.y6f{bottom:671.712000px;}
.y158{bottom:674.700000px;}
.y135{bottom:679.518000px;}
.y95{bottom:679.524000px;}
.yc2{bottom:679.542000px;}
.y4c{bottom:687.342000px;}
.y1c{bottom:688.500000px;}
.y18e{bottom:690.300000px;}
.y157{bottom:694.200000px;}
.ydf{bottom:695.106000px;}
.y6e{bottom:695.112000px;}
.y134{bottom:702.918000px;}
.y94{bottom:702.924000px;}
.yc1{bottom:702.942000px;}
.y18d{bottom:709.500000px;}
.y4b{bottom:710.436000px;}
.y1b{bottom:711.900000px;}
.y156{bottom:713.400000px;}
.yde{bottom:718.200000px;}
.y6d{bottom:718.206000px;}
.y133{bottom:726.012000px;}
.y93{bottom:726.018000px;}
.yc0{bottom:726.036000px;}
.y18c{bottom:729.000000px;}
.y155{bottom:732.900000px;}
.y1a{bottom:733.500000px;}
.y4a{bottom:733.836000px;}
.ydd{bottom:739.800000px;}
.y6c{bottom:741.606000px;}
.y18b{bottom:748.500000px;}
.y132{bottom:749.412000px;}
.y92{bottom:749.418000px;}
.ybf{bottom:749.436000px;}
.y19{bottom:749.700000px;}
.y154{bottom:752.400000px;}
.y49{bottom:757.236000px;}
.y6b{bottom:765.006000px;}
.y18a{bottom:768.000000px;}
.y18{bottom:769.200000px;}
.y153{bottom:771.600000px;}
.y131{bottom:772.506000px;}
.y91{bottom:772.512000px;}
.ybe{bottom:772.530000px;}
.y48{bottom:780.330000px;}
.y189{bottom:787.200000px;}
.y17{bottom:787.800000px;}
.y6a{bottom:788.100000px;}
.y152{bottom:791.100000px;}
.y130{bottom:795.906000px;}
.y90{bottom:795.912000px;}
.ybd{bottom:795.930000px;}
.y47{bottom:803.730000px;}
.y16{bottom:804.300000px;}
.y188{bottom:806.700000px;}
.y151{bottom:808.200000px;}
.y69{bottom:811.500000px;}
.y150{bottom:819.300000px;}
.y12f{bottom:819.306000px;}
.y8f{bottom:819.312000px;}
.ybc{bottom:819.330000px;}
.y187{bottom:826.200000px;}
.y46{bottom:827.130000px;}
.y15{bottom:828.897000px;}
.y68{bottom:833.100000px;}
.y122{bottom:834.900000px;}
.y14f{bottom:839.100000px;}
.y12e{bottom:842.400000px;}
.y8e{bottom:842.406000px;}
.ybb{bottom:842.424000px;}
.y186{bottom:845.400000px;}
.y14{bottom:848.400000px;}
.y45{bottom:850.224000px;}
.y121{bottom:856.200000px;}
.y12d{bottom:862.500000px;}
.y185{bottom:864.900000px;}
.y8d{bottom:865.806000px;}
.yba{bottom:865.824000px;}
.y13{bottom:867.900000px;}
.y44{bottom:873.624000px;}
.y12{bottom:882.600000px;}
.y184{bottom:884.400000px;}
.y8c{bottom:889.206000px;}
.yb9{bottom:889.224000px;}
.y43{bottom:897.024000px;}
.y183{bottom:903.600000px;}
.y11{bottom:906.000000px;}
.y8b{bottom:912.300000px;}
.yb8{bottom:912.318000px;}
.y42{bottom:920.118000px;}
.y182{bottom:923.100000px;}
.y10{bottom:929.406000px;}
.y8a{bottom:935.700000px;}
.yb7{bottom:935.718000px;}
.y181{bottom:942.600000px;}
.y41{bottom:943.518000px;}
.yf{bottom:952.500000px;}
.y89{bottom:959.100000px;}
.yb6{bottom:959.118000px;}
.y180{bottom:962.100000px;}
.y40{bottom:966.612000px;}
.ye{bottom:976.494000px;}
.y88{bottom:978.900000px;}
.y17f{bottom:981.300000px;}
.yb5{bottom:982.212000px;}
.y3f{bottom:990.012000px;}
.y17e{bottom:1000.800000px;}
.yd{bottom:1003.794000px;}
.yb4{bottom:1005.612000px;}
.y3e{bottom:1013.412000px;}
.y17d{bottom:1020.300000px;}
.yb3{bottom:1029.012000px;}
.yc{bottom:1030.800000px;}
.y3d{bottom:1036.506000px;}
.y17c{bottom:1039.500000px;}
.yb2{bottom:1052.106000px;}
.yb{bottom:1058.100000px;}
.y17b{bottom:1059.000000px;}
.y3c{bottom:1059.906000px;}
.yb1{bottom:1075.506000px;}
.y17a{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y3b{bottom:1083.306000px;}
.y179{bottom:1097.700000px;}
.yb0{bottom:1098.600000px;}
.y6{bottom:1103.400000px;}
.y3a{bottom:1106.400000px;}
.y178{bottom:1117.200000px;}
.yaf{bottom:1118.700000px;}
.y5{bottom:1129.200000px;}
.y39{bottom:1129.800000px;}
.y177{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y38{bottom:1153.200000px;}
.y176{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y37{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h11{height:9.684000px;}
.h13{height:10.440000px;}
.h14{height:20.880000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.hd{height:26.352000px;}
.h4{height:31.320000px;}
.hf{height:41.760000px;}
.h3{height:43.920000px;}
.h7{height:47.400000px;}
.h2{height:48.420000px;}
.h15{height:51.408000px;}
.he{height:52.200000px;}
.h10{height:52.704000px;}
.h17{height:57.420000px;}
.h6{height:58.104000px;}
.h16{height:62.578125px;}
.hc{height:62.640000px;}
.hb{height:67.788000px;}
.h9{height:70.664062px;}
.h12{height:72.562500px;}
.ha{height:73.080000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w2{width:478.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x14{left:95.700000px;}
.x9{left:100.803000px;}
.x17{left:112.800000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x15{left:145.500000px;}
.x18{left:173.100000px;}
.xe{left:175.500000px;}
.xf{left:183.000000px;}
.x10{left:208.203000px;}
.xd{left:224.994000px;}
.x11{left:229.200000px;}
.xa{left:235.497000px;}
.xb{left:253.500000px;}
.xc{left:259.206000px;}
.x12{left:374.100000px;}
.x2{left:446.400000px;}
.x13{left:464.400000px;}
.x16{left:473.400000px;}
.x5{left:558.000000px;}
.x7{left:685.800000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.333333pt;}
.ls26{letter-spacing:-3.200000pt;}
.ls3e{letter-spacing:-1.920000pt;}
.ls38{letter-spacing:-1.600000pt;}
.ls55{letter-spacing:-1.493333pt;}
.ls61{letter-spacing:-1.440000pt;}
.ls62{letter-spacing:-1.333333pt;}
.ls37{letter-spacing:-1.216000pt;}
.ls47{letter-spacing:-1.152000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls48{letter-spacing:-0.896000pt;}
.ls60{letter-spacing:-0.853333pt;}
.ls40{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls5a{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls6a{letter-spacing:-0.469333pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.293333pt;}
.ls20{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls6c{letter-spacing:-0.234667pt;}
.ls58{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.149333pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls69{letter-spacing:-0.117333pt;}
.ls57{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.074667pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls6b{letter-spacing:-0.058667pt;}
.ls54{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.053333pt;}
.ls36{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls64{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls5b{letter-spacing:0.250667pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls63{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls68{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.358400pt;}
.ls2a{letter-spacing:0.364800pt;}
.ls2f{letter-spacing:0.377600pt;}
.ls4{letter-spacing:0.384000pt;}
.ls66{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.428800pt;}
.ls5{letter-spacing:0.448000pt;}
.ls52{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.512000pt;}
.ls43{letter-spacing:0.524800pt;}
.ls53{letter-spacing:0.533333pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls4c{letter-spacing:0.693333pt;}
.ls3c{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls46{letter-spacing:0.896000pt;}
.ls10{letter-spacing:1.024000pt;}
.ls51{letter-spacing:1.061333pt;}
.ls50{letter-spacing:1.066667pt;}
.ls45{letter-spacing:1.280000pt;}
.ls59{letter-spacing:1.386667pt;}
.ls30{letter-spacing:1.472000pt;}
.ls4e{letter-spacing:1.546667pt;}
.ls5d{letter-spacing:1.760000pt;}
.ls34{letter-spacing:2.073600pt;}
.lsc{letter-spacing:2.112000pt;}
.lsf{letter-spacing:2.252800pt;}
.ls4b{letter-spacing:2.826667pt;}
.ls4d{letter-spacing:3.893333pt;}
.ls33{letter-spacing:4.217600pt;}
.lsb{letter-spacing:4.224000pt;}
.ls31{letter-spacing:6.400000pt;}
.ls5c{letter-spacing:7.093333pt;}
.ls35{letter-spacing:7.424000pt;}
.ls39{letter-spacing:8.512000pt;}
.ls3a{letter-spacing:9.600000pt;}
.lsd{letter-spacing:10.624000pt;}
.lse{letter-spacing:11.712000pt;}
.ls5f{letter-spacing:13.088533pt;}
.ls44{letter-spacing:13.824000pt;}
.ls49{letter-spacing:18.112000pt;}
.ls4a{letter-spacing:20.373333pt;}
.ls3b{letter-spacing:21.312000pt;}
.ls32{letter-spacing:25.600000pt;}
.ls4f{letter-spacing:26.293333pt;}
.ls29{letter-spacing:29.696000pt;}
.ls11{letter-spacing:41.600000pt;}
.ls42{letter-spacing:46.720000pt;}
.ls5e{letter-spacing:78.933333pt;}
.ls3f{letter-spacing:84.096000pt;}
.ls3{letter-spacing:447.626667pt;}
.ls2{letter-spacing:680.160000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls28{letter-spacing:916.960000pt;}
.ls0{letter-spacing:1270.026667pt;}
.ls41{letter-spacing:1414.026667pt;}
.ws76{word-spacing:-17.856000pt;}
.ws37{word-spacing:-17.600000pt;}
.ws4{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.344000pt;}
.wsbc{word-spacing:-17.280000pt;}
.wscb{word-spacing:-17.152000pt;}
.ws5{word-spacing:-17.088000pt;}
.wsa8{word-spacing:-17.024000pt;}
.ws36{word-spacing:-16.960000pt;}
.ws39{word-spacing:-16.896000pt;}
.ws38{word-spacing:-16.832000pt;}
.ws5b{word-spacing:-16.768000pt;}
.wsd{word-spacing:-16.704000pt;}
.ws35{word-spacing:-16.640000pt;}
.ws3a{word-spacing:-16.576000pt;}
.ws6{word-spacing:-16.320000pt;}
.ws8d{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws8e{word-spacing:-16.128000pt;}
.wsd1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.680000pt;}
.ws10d{word-spacing:-15.429333pt;}
.ws10c{word-spacing:-15.194667pt;}
.ws8{word-spacing:-15.040000pt;}
.ws33{word-spacing:-14.666667pt;}
.ws10b{word-spacing:-14.549333pt;}
.ws108{word-spacing:-14.506667pt;}
.ws106{word-spacing:-14.453333pt;}
.wse4{word-spacing:-14.346667pt;}
.ws109{word-spacing:-14.293333pt;}
.wse2{word-spacing:-14.240000pt;}
.wse0{word-spacing:-14.186667pt;}
.ws1{word-spacing:-14.080000pt;}
.wse1{word-spacing:-14.026667pt;}
.ws9{word-spacing:-13.973333pt;}
.ws7{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws34{word-spacing:-13.760000pt;}
.wse3{word-spacing:-13.600000pt;}
.ws10a{word-spacing:-13.013333pt;}
.ws107{word-spacing:-12.906667pt;}
.ws3{word-spacing:-9.968000pt;}
.ws90{word-spacing:-4.224000pt;}
.ws84{word-spacing:-3.904000pt;}
.ws83{word-spacing:-3.776000pt;}
.ws104{word-spacing:-3.680000pt;}
.wsad{word-spacing:-3.456000pt;}
.wscc{word-spacing:-3.392000pt;}
.ws103{word-spacing:-3.146667pt;}
.ws55{word-spacing:-3.136000pt;}
.ws91{word-spacing:-3.008000pt;}
.ws6a{word-spacing:-2.944000pt;}
.ws53{word-spacing:-2.816000pt;}
.wsfe{word-spacing:-2.720000pt;}
.ws45{word-spacing:-2.688000pt;}
.ws120{word-spacing:-2.666667pt;}
.wse8{word-spacing:-2.613333pt;}
.ws11b{word-spacing:-2.453333pt;}
.ws3c{word-spacing:-2.432000pt;}
.ws8c{word-spacing:-2.368000pt;}
.wsd6{word-spacing:-2.240000pt;}
.ws11c{word-spacing:-2.133333pt;}
.ws41{word-spacing:-2.112000pt;}
.ws11a{word-spacing:-2.080000pt;}
.ws40{word-spacing:-1.920000pt;}
.wsfb{word-spacing:-1.866667pt;}
.ws77{word-spacing:-1.792000pt;}
.ws7d{word-spacing:-1.664000pt;}
.wsf1{word-spacing:-1.653333pt;}
.wsec{word-spacing:-1.546667pt;}
.wsf0{word-spacing:-1.493333pt;}
.wsfd{word-spacing:-1.386667pt;}
.ws65{word-spacing:-1.344000pt;}
.wsf2{word-spacing:-1.333333pt;}
.ws54{word-spacing:-1.280000pt;}
.ws111{word-spacing:-1.173333pt;}
.ws72{word-spacing:-1.024000pt;}
.wsfc{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.896000pt;}
.wsa0{word-spacing:-0.832000pt;}
.ws100{word-spacing:-0.800000pt;}
.ws99{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.704000pt;}
.ws16{word-spacing:-0.597333pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws3d{word-spacing:-0.576000pt;}
.wsa4{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.480000pt;}
.ws9e{word-spacing:-0.448000pt;}
.ws101{word-spacing:-0.426667pt;}
.ws1d{word-spacing:-0.416000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws1b{word-spacing:-0.320000pt;}
.wsf3{word-spacing:-0.266667pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws86{word-spacing:-0.128000pt;}
.wse9{word-spacing:-0.106667pt;}
.ws6e{word-spacing:-0.064000pt;}
.ws105{word-spacing:-0.053333pt;}
.ws10{word-spacing:0.000000pt;}
.wsf6{word-spacing:0.053333pt;}
.ws12b{word-spacing:0.058667pt;}
.ws2c{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws113{word-spacing:0.160000pt;}
.ws2e{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.256000pt;}
.ws20{word-spacing:0.266667pt;}
.ws17{word-spacing:0.298667pt;}
.ws52{word-spacing:0.320000pt;}
.ws15{word-spacing:0.373333pt;}
.ws18{word-spacing:0.384000pt;}
.ws12f{word-spacing:0.410667pt;}
.ws1f{word-spacing:0.426667pt;}
.wsb8{word-spacing:0.448000pt;}
.ws12e{word-spacing:0.469333pt;}
.wsea{word-spacing:0.480000pt;}
.ws19{word-spacing:0.512000pt;}
.ws118{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.586667pt;}
.ws11d{word-spacing:0.640000pt;}
.ws14{word-spacing:0.672000pt;}
.ws28{word-spacing:0.768000pt;}
.ws4b{word-spacing:0.832000pt;}
.wsf4{word-spacing:1.066667pt;}
.ws73{word-spacing:1.088000pt;}
.wseb{word-spacing:1.120000pt;}
.wsd9{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.216000pt;}
.ws6c{word-spacing:1.280000pt;}
.ws70{word-spacing:1.344000pt;}
.ws29{word-spacing:1.408000pt;}
.ws31{word-spacing:1.472000pt;}
.ws30{word-spacing:1.536000pt;}
.ws10e{word-spacing:1.546667pt;}
.ws4a{word-spacing:1.600000pt;}
.ws3e{word-spacing:1.856000pt;}
.ws49{word-spacing:1.920000pt;}
.ws110{word-spacing:2.133333pt;}
.ws48{word-spacing:2.176000pt;}
.ws10f{word-spacing:2.186667pt;}
.ws6f{word-spacing:2.304000pt;}
.ws74{word-spacing:2.496000pt;}
.wsd0{word-spacing:2.560000pt;}
.ws102{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.624000pt;}
.ws4c{word-spacing:2.944000pt;}
.ws9f{word-spacing:3.008000pt;}
.ws12d{word-spacing:3.168000pt;}
.ws2d{word-spacing:3.200000pt;}
.wse6{word-spacing:3.253333pt;}
.wsa1{word-spacing:3.264000pt;}
.wsb1{word-spacing:3.456000pt;}
.ws12c{word-spacing:3.520000pt;}
.ws95{word-spacing:3.584000pt;}
.wsee{word-spacing:3.680000pt;}
.ws62{word-spacing:3.712000pt;}
.wsef{word-spacing:3.786667pt;}
.ws121{word-spacing:3.840000pt;}
.ws21{word-spacing:4.032000pt;}
.wse7{word-spacing:4.053333pt;}
.ws122{word-spacing:4.160000pt;}
.ws64{word-spacing:4.288000pt;}
.wsed{word-spacing:4.320000pt;}
.wsd2{word-spacing:4.416000pt;}
.ws6b{word-spacing:4.480000pt;}
.wsb5{word-spacing:4.544000pt;}
.wsd7{word-spacing:4.608000pt;}
.ws5a{word-spacing:4.736000pt;}
.ws114{word-spacing:4.746667pt;}
.ws98{word-spacing:4.992000pt;}
.ws27{word-spacing:5.120000pt;}
.ws115{word-spacing:5.333333pt;}
.ws50{word-spacing:5.376000pt;}
.ws87{word-spacing:5.568000pt;}
.ws92{word-spacing:5.696000pt;}
.ws7e{word-spacing:5.760000pt;}
.ws112{word-spacing:5.813333pt;}
.ws51{word-spacing:5.824000pt;}
.ws60{word-spacing:6.144000pt;}
.ws7a{word-spacing:6.208000pt;}
.ws61{word-spacing:6.464000pt;}
.ws97{word-spacing:6.656000pt;}
.ws7b{word-spacing:6.784000pt;}
.ws7c{word-spacing:6.848000pt;}
.ws116{word-spacing:6.880000pt;}
.ws5f{word-spacing:6.912000pt;}
.wsa3{word-spacing:7.168000pt;}
.wsc3{word-spacing:7.232000pt;}
.ws117{word-spacing:7.466667pt;}
.ws9d{word-spacing:7.488000pt;}
.ws119{word-spacing:7.520000pt;}
.wse5{word-spacing:7.680000pt;}
.ws78{word-spacing:7.808000pt;}
.ws4d{word-spacing:7.936000pt;}
.wsf5{word-spacing:7.946667pt;}
.wsca{word-spacing:8.256000pt;}
.ws9c{word-spacing:8.320000pt;}
.ws4e{word-spacing:8.576000pt;}
.wsa5{word-spacing:8.704000pt;}
.ws42{word-spacing:8.768000pt;}
.ws44{word-spacing:8.896000pt;}
.wsff{word-spacing:9.013333pt;}
.ws43{word-spacing:9.024000pt;}
.wsc9{word-spacing:9.344000pt;}
.ws2b{word-spacing:9.408000pt;}
.ws11e{word-spacing:9.493333pt;}
.ws11f{word-spacing:9.653333pt;}
.ws81{word-spacing:9.664000pt;}
.wsc8{word-spacing:9.728000pt;}
.wsdf{word-spacing:9.856000pt;}
.ws82{word-spacing:9.984000pt;}
.wsf7{word-spacing:10.080000pt;}
.ws4f{word-spacing:10.112000pt;}
.wsaf{word-spacing:10.432000pt;}
.wsae{word-spacing:10.688000pt;}
.ws80{word-spacing:11.008000pt;}
.ws7f{word-spacing:11.072000pt;}
.ws9b{word-spacing:11.136000pt;}
.ws57{word-spacing:11.456000pt;}
.ws79{word-spacing:11.520000pt;}
.ws58{word-spacing:11.776000pt;}
.ws8b{word-spacing:11.904000pt;}
.ws59{word-spacing:12.096000pt;}
.ws56{word-spacing:12.224000pt;}
.wsa6{word-spacing:12.480000pt;}
.wscd{word-spacing:12.608000pt;}
.ws129{word-spacing:12.730667pt;}
.ws96{word-spacing:12.864000pt;}
.wsd3{word-spacing:13.184000pt;}
.ws128{word-spacing:13.200000pt;}
.ws22{word-spacing:13.312000pt;}
.ws12a{word-spacing:13.434667pt;}
.wsc5{word-spacing:13.632000pt;}
.wsc2{word-spacing:13.888000pt;}
.wsda{word-spacing:14.080000pt;}
.wsac{word-spacing:14.336000pt;}
.wsb4{word-spacing:14.656000pt;}
.ws26{word-spacing:14.720000pt;}
.ws63{word-spacing:15.104000pt;}
.ws88{word-spacing:15.296000pt;}
.ws25{word-spacing:15.424000pt;}
.ws123{word-spacing:15.573333pt;}
.ws8a{word-spacing:15.744000pt;}
.ws124{word-spacing:16.053333pt;}
.wsb7{word-spacing:16.064000pt;}
.ws5d{word-spacing:16.192000pt;}
.ws89{word-spacing:16.256000pt;}
.ws5e{word-spacing:16.384000pt;}
.ws5c{word-spacing:16.512000pt;}
.wsd4{word-spacing:17.408000pt;}
.ws8f{word-spacing:17.536000pt;}
.wsb2{word-spacing:17.920000pt;}
.wsb6{word-spacing:18.176000pt;}
.ws75{word-spacing:18.496000pt;}
.ws2a{word-spacing:18.624000pt;}
.wsd5{word-spacing:19.712000pt;}
.wscf{word-spacing:20.288000pt;}
.wsce{word-spacing:20.608000pt;}
.ws71{word-spacing:20.736000pt;}
.wsa7{word-spacing:21.056000pt;}
.ws85{word-spacing:21.824000pt;}
.wsa2{word-spacing:22.464000pt;}
.ws9a{word-spacing:22.912000pt;}
.wsbe{word-spacing:23.232000pt;}
.wsbd{word-spacing:23.488000pt;}
.wsde{word-spacing:23.680000pt;}
.wsb3{word-spacing:23.936000pt;}
.wsba{word-spacing:24.576000pt;}
.wsb9{word-spacing:24.768000pt;}
.ws67{word-spacing:25.344000pt;}
.ws68{word-spacing:25.664000pt;}
.ws69{word-spacing:25.792000pt;}
.ws66{word-spacing:26.112000pt;}
.wsf8{word-spacing:26.240000pt;}
.wsfa{word-spacing:26.560000pt;}
.wsf9{word-spacing:26.666667pt;}
.wsdd{word-spacing:27.136000pt;}
.wsab{word-spacing:27.456000pt;}
.wsaa{word-spacing:27.776000pt;}
.wsc4{word-spacing:28.224000pt;}
.ws47{word-spacing:29.056000pt;}
.ws46{word-spacing:29.312000pt;}
.ws93{word-spacing:29.568000pt;}
.wsc0{word-spacing:30.080000pt;}
.wsbf{word-spacing:30.208000pt;}
.ws94{word-spacing:30.336000pt;}
.wsd8{word-spacing:31.424000pt;}
.wsbb{word-spacing:31.808000pt;}
.wsc7{word-spacing:32.064000pt;}
.wsc6{word-spacing:32.384000pt;}
.wsc1{word-spacing:32.832000pt;}
.wsdb{word-spacing:33.536000pt;}
.wsb0{word-spacing:34.176000pt;}
.wsdc{word-spacing:34.624000pt;}
.ws32{word-spacing:40.832000pt;}
.wsa9{word-spacing:41.664000pt;}
.ws126{word-spacing:77.280000pt;}
.ws127{word-spacing:77.546667pt;}
.ws125{word-spacing:77.920000pt;}
._12{margin-left:-11.840000pt;}
._23{margin-left:-7.840000pt;}
._9{margin-left:-4.008533pt;}
._5{margin-left:-2.584533pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.250667pt;}
._8{width:3.426133pt;}
._7{width:5.188267pt;}
._1b{width:6.570667pt;}
._1e{width:7.466667pt;}
._13{width:8.362667pt;}
._a{width:10.451200pt;}
._b{width:11.353600pt;}
._c{width:12.349867pt;}
._d{width:13.467733pt;}
._17{width:16.198400pt;}
._e{width:19.494400pt;}
._1a{width:20.512000pt;}
._1c{width:21.493333pt;}
._19{width:25.130667pt;}
._14{width:29.205333pt;}
._22{width:33.536000pt;}
._f{width:41.085867pt;}
._15{width:64.896000pt;}
._25{width:76.800000pt;}
._24{width:77.856000pt;}
._18{width:81.088000pt;}
._1d{width:99.893333pt;}
._1f{width:101.184000pt;}
._20{width:117.376000pt;}
._16{width:127.626667pt;}
._3{width:680.800000pt;}
._11{width:718.986667pt;}
._4{width:730.293333pt;}
._21{width:861.152000pt;}
._10{width:888.885333pt;}
._2{width:893.706667pt;}
.fs6{font-size:10.666667pt;}
.fs7{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.y4{bottom:60.266667pt;}
.y11e{bottom:86.405333pt;}
.y12c{bottom:86.416000pt;}
.y67{bottom:86.421333pt;}
.y14e{bottom:86.464000pt;}
.ydc{bottom:93.338667pt;}
.y36{bottom:94.405333pt;}
.y175{bottom:99.466667pt;}
.yae{bottom:100.298667pt;}
.y87{bottom:100.325333pt;}
.y11d{bottom:107.205333pt;}
.yf8{bottom:107.210667pt;}
.y12b{bottom:107.216000pt;}
.y66{bottom:107.221333pt;}
.y10f{bottom:107.237333pt;}
.y14d{bottom:107.264000pt;}
.y1aa{bottom:109.333333pt;}
.ydb{bottom:113.866667pt;}
.y35{bottom:115.205333pt;}
.y174{bottom:116.533333pt;}
.yad{bottom:120.826667pt;}
.y86{bottom:120.853333pt;}
.y1a9{bottom:125.866667pt;}
.y11c{bottom:127.733333pt;}
.yf7{bottom:127.738667pt;}
.y12a{bottom:127.744000pt;}
.y65{bottom:127.749333pt;}
.y10e{bottom:127.765333pt;}
.y14c{bottom:127.792000pt;}
.y173{bottom:133.866667pt;}
.yda{bottom:134.666667pt;}
.y1a8{bottom:135.197333pt;}
.y34{bottom:136.005333pt;}
.yac{bottom:141.626667pt;}
.y85{bottom:141.653333pt;}
.y11b{bottom:148.533333pt;}
.yf6{bottom:148.538667pt;}
.y129{bottom:148.544000pt;}
.y64{bottom:148.549333pt;}
.y10d{bottom:148.565333pt;}
.y14b{bottom:148.592000pt;}
.y172{bottom:151.200000pt;}
.y1a7{bottom:154.132000pt;}
.yd9{bottom:155.466667pt;}
.y33{bottom:156.533333pt;}
.yab{bottom:162.426667pt;}
.y84{bottom:162.453333pt;}
.y11a{bottom:165.333333pt;}
.y171{bottom:168.266667pt;}
.yf5{bottom:169.066667pt;}
.y128{bottom:169.072000pt;}
.y63{bottom:169.077333pt;}
.y10c{bottom:169.093333pt;}
.y14a{bottom:169.120000pt;}
.y119{bottom:172.565333pt;}
.yd8{bottom:173.066667pt;}
.y32{bottom:175.733333pt;}
.yaa{bottom:182.954667pt;}
.yd7{bottom:182.965333pt;}
.y83{bottom:182.981333pt;}
.y170{bottom:185.600000pt;}
.yf4{bottom:188.266667pt;}
.y127{bottom:189.872000pt;}
.y62{bottom:189.877333pt;}
.y10b{bottom:189.893333pt;}
.y149{bottom:189.920000pt;}
.y31{bottom:191.216000pt;}
.y118{bottom:193.365333pt;}
.y1a6{bottom:196.000000pt;}
.y16f{bottom:202.933333pt;}
.ya9{bottom:203.754667pt;}
.yd6{bottom:203.765333pt;}
.yf3{bottom:203.776000pt;}
.y82{bottom:203.781333pt;}
.y126{bottom:210.672000pt;}
.y61{bottom:210.677333pt;}
.y10a{bottom:210.693333pt;}
.y148{bottom:210.720000pt;}
.y30{bottom:211.744000pt;}
.y117{bottom:214.165333pt;}
.y16e{bottom:220.266667pt;}
.ya8{bottom:224.554667pt;}
.yd5{bottom:224.565333pt;}
.yf2{bottom:224.576000pt;}
.y81{bottom:224.581333pt;}
.y125{bottom:231.200000pt;}
.y60{bottom:231.205333pt;}
.y109{bottom:231.221333pt;}
.y147{bottom:231.248000pt;}
.y2f{bottom:232.544000pt;}
.y1a5{bottom:234.398667pt;}
.y116{bottom:234.693333pt;}
.y16d{bottom:237.333333pt;}
.ya7{bottom:245.082667pt;}
.yd4{bottom:245.093333pt;}
.yf1{bottom:245.104000pt;}
.y80{bottom:245.109333pt;}
.y124{bottom:252.000000pt;}
.y5f{bottom:252.005333pt;}
.y108{bottom:252.021333pt;}
.y146{bottom:252.048000pt;}
.y1a4{bottom:253.333333pt;}
.y2e{bottom:253.344000pt;}
.y16c{bottom:254.666667pt;}
.y115{bottom:255.493333pt;}
.ya6{bottom:265.882667pt;}
.yd3{bottom:265.893333pt;}
.yf0{bottom:265.904000pt;}
.y7f{bottom:265.909333pt;}
.y1a3{bottom:269.866667pt;}
.y123{bottom:271.200000pt;}
.y16b{bottom:272.000000pt;}
.y5e{bottom:272.805333pt;}
.y107{bottom:272.821333pt;}
.y145{bottom:272.848000pt;}
.y2d{bottom:273.872000pt;}
.y114{bottom:276.293333pt;}
.y1a2{bottom:278.933333pt;}
.ya5{bottom:286.410667pt;}
.yd2{bottom:286.421333pt;}
.yef{bottom:286.432000pt;}
.y7e{bottom:286.437333pt;}
.y16a{bottom:289.066667pt;}
.y5d{bottom:293.333333pt;}
.y106{bottom:293.349333pt;}
.y144{bottom:293.376000pt;}
.y2c{bottom:294.672000pt;}
.y1a1{bottom:296.000000pt;}
.y113{bottom:296.821333pt;}
.y169{bottom:306.400000pt;}
.ya4{bottom:307.210667pt;}
.yd1{bottom:307.221333pt;}
.yee{bottom:307.232000pt;}
.y7d{bottom:307.237333pt;}
.y1a0{bottom:313.333333pt;}
.y5c{bottom:314.133333pt;}
.y105{bottom:314.149333pt;}
.y143{bottom:314.176000pt;}
.y2b{bottom:315.472000pt;}
.y112{bottom:317.621333pt;}
.y168{bottom:323.733333pt;}
.ya3{bottom:328.010667pt;}
.yd0{bottom:328.021333pt;}
.yed{bottom:328.032000pt;}
.y7c{bottom:328.037333pt;}
.y19f{bottom:328.533333pt;}
.y5b{bottom:331.200000pt;}
.y120{bottom:334.933333pt;}
.y104{bottom:334.949333pt;}
.y142{bottom:334.976000pt;}
.y2a{bottom:336.000000pt;}
.y19e{bottom:337.600000pt;}
.y5a{bottom:338.421333pt;}
.y167{bottom:340.800000pt;}
.ya2{bottom:348.538667pt;}
.ycf{bottom:348.549333pt;}
.yec{bottom:348.560000pt;}
.y7b{bottom:348.565333pt;}
.y11f{bottom:353.866667pt;}
.y19d{bottom:354.666667pt;}
.y103{bottom:355.477333pt;}
.y141{bottom:355.504000pt;}
.y29{bottom:356.800000pt;}
.y166{bottom:358.133333pt;}
.y59{bottom:358.949333pt;}
.ya1{bottom:369.338667pt;}
.yce{bottom:369.349333pt;}
.yeb{bottom:369.360000pt;}
.y7a{bottom:369.365333pt;}
.y19c{bottom:372.000000pt;}
.y165{bottom:375.466667pt;}
.y102{bottom:376.277333pt;}
.y140{bottom:376.304000pt;}
.y28{bottom:377.600000pt;}
.y58{bottom:379.749333pt;}
.y19b{bottom:389.333333pt;}
.ya0{bottom:390.138667pt;}
.ycd{bottom:390.149333pt;}
.yea{bottom:390.160000pt;}
.y79{bottom:390.165333pt;}
.y164{bottom:392.800000pt;}
.y27{bottom:396.533333pt;}
.y101{bottom:397.077333pt;}
.y13f{bottom:397.104000pt;}
.y57{bottom:400.277333pt;}
.y19a{bottom:406.400000pt;}
.y163{bottom:409.866667pt;}
.y9f{bottom:410.666667pt;}
.ycc{bottom:410.677333pt;}
.ye9{bottom:410.688000pt;}
.y78{bottom:410.693333pt;}
.y26{bottom:412.000000pt;}
.y100{bottom:417.605333pt;}
.y13e{bottom:417.632000pt;}
.y56{bottom:421.077333pt;}
.y199{bottom:423.733333pt;}
.y162{bottom:427.200000pt;}
.y25{bottom:431.200000pt;}
.y9e{bottom:431.466667pt;}
.ycb{bottom:431.477333pt;}
.ye8{bottom:431.488000pt;}
.y77{bottom:431.493333pt;}
.yff{bottom:438.405333pt;}
.y13d{bottom:438.432000pt;}
.y198{bottom:441.066667pt;}
.y55{bottom:441.877333pt;}
.y161{bottom:444.533333pt;}
.y24{bottom:446.416000pt;}
.y9d{bottom:452.266667pt;}
.yca{bottom:452.277333pt;}
.ye7{bottom:452.288000pt;}
.y76{bottom:452.293333pt;}
.y197{bottom:458.133333pt;}
.yfe{bottom:458.933333pt;}
.y13c{bottom:458.960000pt;}
.y160{bottom:461.600000pt;}
.y54{bottom:462.405333pt;}
.y23{bottom:467.216000pt;}
.y9c{bottom:469.866667pt;}
.yc9{bottom:472.805333pt;}
.ye6{bottom:472.816000pt;}
.y75{bottom:472.821333pt;}
.y196{bottom:475.466667pt;}
.y15f{bottom:478.933333pt;}
.yfd{bottom:479.733333pt;}
.y13b{bottom:479.760000pt;}
.y9b{bottom:479.765333pt;}
.y53{bottom:483.205333pt;}
.y22{bottom:488.016000pt;}
.y195{bottom:492.800000pt;}
.yc8{bottom:493.605333pt;}
.ye5{bottom:493.616000pt;}
.y74{bottom:493.621333pt;}
.y15e{bottom:496.266667pt;}
.y13a{bottom:500.560000pt;}
.y9a{bottom:500.565333pt;}
.y52{bottom:504.005333pt;}
.y21{bottom:508.544000pt;}
.y194{bottom:510.133333pt;}
.y15d{bottom:513.333333pt;}
.yc7{bottom:514.133333pt;}
.yfc{bottom:514.138667pt;}
.ye4{bottom:514.144000pt;}
.y73{bottom:514.149333pt;}
.y139{bottom:521.088000pt;}
.y99{bottom:521.093333pt;}
.y51{bottom:524.533333pt;}
.y193{bottom:527.200000pt;}
.y20{bottom:529.344000pt;}
.y15c{bottom:530.666667pt;}
.yc6{bottom:534.933333pt;}
.yfb{bottom:534.938667pt;}
.ye3{bottom:534.944000pt;}
.y72{bottom:534.949333pt;}
.y50{bottom:541.600000pt;}
.y138{bottom:541.888000pt;}
.y98{bottom:541.893333pt;}
.y192{bottom:544.533333pt;}
.y111{bottom:545.333333pt;}
.y15b{bottom:548.000000pt;}
.y4f{bottom:548.842667pt;}
.y1f{bottom:550.144000pt;}
.yc5{bottom:555.733333pt;}
.yfa{bottom:555.738667pt;}
.ye2{bottom:555.744000pt;}
.y71{bottom:555.749333pt;}
.y191{bottom:561.866667pt;}
.y110{bottom:562.400000pt;}
.y137{bottom:562.688000pt;}
.y97{bottom:562.693333pt;}
.y15a{bottom:565.333333pt;}
.y4e{bottom:569.642667pt;}
.y1e{bottom:570.672000pt;}
.yc4{bottom:573.333333pt;}
.yf9{bottom:576.266667pt;}
.ye1{bottom:576.272000pt;}
.y70{bottom:576.277333pt;}
.y190{bottom:578.933333pt;}
.y159{bottom:582.400000pt;}
.y136{bottom:583.216000pt;}
.y96{bottom:583.221333pt;}
.yc3{bottom:583.237333pt;}
.y4d{bottom:590.170667pt;}
.y1d{bottom:591.472000pt;}
.y18f{bottom:596.266667pt;}
.ye0{bottom:597.072000pt;}
.y6f{bottom:597.077333pt;}
.y158{bottom:599.733333pt;}
.y135{bottom:604.016000pt;}
.y95{bottom:604.021333pt;}
.yc2{bottom:604.037333pt;}
.y4c{bottom:610.970667pt;}
.y1c{bottom:612.000000pt;}
.y18e{bottom:613.600000pt;}
.y157{bottom:617.066667pt;}
.ydf{bottom:617.872000pt;}
.y6e{bottom:617.877333pt;}
.y134{bottom:624.816000pt;}
.y94{bottom:624.821333pt;}
.yc1{bottom:624.837333pt;}
.y18d{bottom:630.666667pt;}
.y4b{bottom:631.498667pt;}
.y1b{bottom:632.800000pt;}
.y156{bottom:634.133333pt;}
.yde{bottom:638.400000pt;}
.y6d{bottom:638.405333pt;}
.y133{bottom:645.344000pt;}
.y93{bottom:645.349333pt;}
.yc0{bottom:645.365333pt;}
.y18c{bottom:648.000000pt;}
.y155{bottom:651.466667pt;}
.y1a{bottom:652.000000pt;}
.y4a{bottom:652.298667pt;}
.ydd{bottom:657.600000pt;}
.y6c{bottom:659.205333pt;}
.y18b{bottom:665.333333pt;}
.y132{bottom:666.144000pt;}
.y92{bottom:666.149333pt;}
.ybf{bottom:666.165333pt;}
.y19{bottom:666.400000pt;}
.y154{bottom:668.800000pt;}
.y49{bottom:673.098667pt;}
.y6b{bottom:680.005333pt;}
.y18a{bottom:682.666667pt;}
.y18{bottom:683.733333pt;}
.y153{bottom:685.866667pt;}
.y131{bottom:686.672000pt;}
.y91{bottom:686.677333pt;}
.ybe{bottom:686.693333pt;}
.y48{bottom:693.626667pt;}
.y189{bottom:699.733333pt;}
.y17{bottom:700.266667pt;}
.y6a{bottom:700.533333pt;}
.y152{bottom:703.200000pt;}
.y130{bottom:707.472000pt;}
.y90{bottom:707.477333pt;}
.ybd{bottom:707.493333pt;}
.y47{bottom:714.426667pt;}
.y16{bottom:714.933333pt;}
.y188{bottom:717.066667pt;}
.y151{bottom:718.400000pt;}
.y69{bottom:721.333333pt;}
.y150{bottom:728.266667pt;}
.y12f{bottom:728.272000pt;}
.y8f{bottom:728.277333pt;}
.ybc{bottom:728.293333pt;}
.y187{bottom:734.400000pt;}
.y46{bottom:735.226667pt;}
.y15{bottom:736.797333pt;}
.y68{bottom:740.533333pt;}
.y122{bottom:742.133333pt;}
.y14f{bottom:745.866667pt;}
.y12e{bottom:748.800000pt;}
.y8e{bottom:748.805333pt;}
.ybb{bottom:748.821333pt;}
.y186{bottom:751.466667pt;}
.y14{bottom:754.133333pt;}
.y45{bottom:755.754667pt;}
.y121{bottom:761.066667pt;}
.y12d{bottom:766.666667pt;}
.y185{bottom:768.800000pt;}
.y8d{bottom:769.605333pt;}
.yba{bottom:769.621333pt;}
.y13{bottom:771.466667pt;}
.y44{bottom:776.554667pt;}
.y12{bottom:784.533333pt;}
.y184{bottom:786.133333pt;}
.y8c{bottom:790.405333pt;}
.yb9{bottom:790.421333pt;}
.y43{bottom:797.354667pt;}
.y183{bottom:803.200000pt;}
.y11{bottom:805.333333pt;}
.y8b{bottom:810.933333pt;}
.yb8{bottom:810.949333pt;}
.y42{bottom:817.882667pt;}
.y182{bottom:820.533333pt;}
.y10{bottom:826.138667pt;}
.y8a{bottom:831.733333pt;}
.yb7{bottom:831.749333pt;}
.y181{bottom:837.866667pt;}
.y41{bottom:838.682667pt;}
.yf{bottom:846.666667pt;}
.y89{bottom:852.533333pt;}
.yb6{bottom:852.549333pt;}
.y180{bottom:855.200000pt;}
.y40{bottom:859.210667pt;}
.ye{bottom:867.994667pt;}
.y88{bottom:870.133333pt;}
.y17f{bottom:872.266667pt;}
.yb5{bottom:873.077333pt;}
.y3f{bottom:880.010667pt;}
.y17e{bottom:889.600000pt;}
.yd{bottom:892.261333pt;}
.yb4{bottom:893.877333pt;}
.y3e{bottom:900.810667pt;}
.y17d{bottom:906.933333pt;}
.yb3{bottom:914.677333pt;}
.yc{bottom:916.266667pt;}
.y3d{bottom:921.338667pt;}
.y17c{bottom:924.000000pt;}
.yb2{bottom:935.205333pt;}
.yb{bottom:940.533333pt;}
.y17b{bottom:941.333333pt;}
.y3c{bottom:942.138667pt;}
.yb1{bottom:956.005333pt;}
.y17a{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y3b{bottom:962.938667pt;}
.y179{bottom:975.733333pt;}
.yb0{bottom:976.533333pt;}
.y6{bottom:980.800000pt;}
.y3a{bottom:983.466667pt;}
.y178{bottom:993.066667pt;}
.yaf{bottom:994.400000pt;}
.y5{bottom:1003.733333pt;}
.y39{bottom:1004.266667pt;}
.y177{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y38{bottom:1025.066667pt;}
.y176{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y37{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h11{height:8.608000pt;}
.h13{height:9.280000pt;}
.h14{height:18.560000pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.hd{height:23.424000pt;}
.h4{height:27.840000pt;}
.hf{height:37.120000pt;}
.h3{height:39.040000pt;}
.h7{height:42.133333pt;}
.h2{height:43.040000pt;}
.h15{height:45.696000pt;}
.he{height:46.400000pt;}
.h10{height:46.848000pt;}
.h17{height:51.040000pt;}
.h6{height:51.648000pt;}
.h16{height:55.625000pt;}
.hc{height:55.680000pt;}
.hb{height:60.256000pt;}
.h9{height:62.812500pt;}
.h12{height:64.500000pt;}
.ha{height:64.960000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w2{width:425.066667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x14{left:85.066667pt;}
.x9{left:89.602667pt;}
.x17{left:100.266667pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x15{left:129.333333pt;}
.x18{left:153.866667pt;}
.xe{left:156.000000pt;}
.xf{left:162.666667pt;}
.x10{left:185.069333pt;}
.xd{left:199.994667pt;}
.x11{left:203.733333pt;}
.xa{left:209.330667pt;}
.xb{left:225.333333pt;}
.xc{left:230.405333pt;}
.x12{left:332.533333pt;}
.x2{left:396.800000pt;}
.x13{left:412.800000pt;}
.x16{left:420.800000pt;}
.x5{left:496.000000pt;}
.x7{left:609.600000pt;}
}




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