
    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_455e67ee74e096aecf386f98.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000977;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_e7585a5139de58ce4049848f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_335aff59b8bb97ff2e0b1a10.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_0e05b8dfd6902b18bdc1f96e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_b5ee06d0567c186f5f038ce8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_c7756b2bb7c0a3edaa2d9591.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_4e881592fac5f0f5c7595cbf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_59683ffce2501e7ade6e3a09.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_275b9ed8bf25ade32b6b3f11.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_0383b2e1eeffbe7fe36ccf16.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8e198a6b23d54d8d40d5266b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a099c9f5d608b1fe8d8ba42e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a4bf4cd434090698fa4f62fc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e261cc67b242db5b87779c83.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5d14292461e10077c0261b65.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6014839bcaa2cafe674a54df.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_865a66e33bae01e26840e2b3.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e7585a5139de58ce4049848f.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6cd697307db3e6167c6b482a.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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:ff14;src:url('chunks/assets/font_1dbe6e2ebb6fdfe8e822ef7e.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_69612c2251051fd5b466f3bd.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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:ff16;src:url('chunks/assets/font_4bfdac8edc1758a5318fed81.woff')format("woff");}.ff16{font-family:ff16;line-height:1.000977;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.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.554000px;}
.ls5{letter-spacing:-3.455052px;}
.ls6{letter-spacing:-2.640000px;}
.lse{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.132000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000036px;}
.ls0{letter-spacing:0.428985px;}
.ls2{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls4{letter-spacing:9.590400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-28.440000px;}
.ws4e{word-spacing:-24.300000px;}
.ws15{word-spacing:-18.216000px;}
.ws2{word-spacing:-16.740000px;}
.ws14{word-spacing:-15.774000px;}
.ws0{word-spacing:-15.066000px;}
.ws58{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.100000px;}
.ws16{word-spacing:-10.735362px;}
.ws13{word-spacing:-9.686400px;}
.ws6f{word-spacing:-6.660000px;}
.ws21{word-spacing:-6.270000px;}
.ws3f{word-spacing:-6.006000px;}
.ws3e{word-spacing:-5.940000px;}
.ws69{word-spacing:-3.234000px;}
.ws32{word-spacing:-3.180000px;}
.ws1f{word-spacing:-2.838000px;}
.ws20{word-spacing:-2.772000px;}
.ws6d{word-spacing:-2.520000px;}
.ws62{word-spacing:-2.508000px;}
.ws78{word-spacing:-2.400000px;}
.ws2a{word-spacing:-2.376000px;}
.ws3c{word-spacing:-2.310000px;}
.ws35{word-spacing:-2.160000px;}
.ws27{word-spacing:-1.980000px;}
.ws70{word-spacing:-1.800000px;}
.ws4c{word-spacing:-1.782000px;}
.ws73{word-spacing:-1.740000px;}
.ws5c{word-spacing:-1.620000px;}
.ws57{word-spacing:-1.566000px;}
.ws65{word-spacing:-1.452000px;}
.ws42{word-spacing:-1.122000px;}
.ws66{word-spacing:-0.990000px;}
.ws4a{word-spacing:-0.924000px;}
.wse{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.858000px;}
.ws1d{word-spacing:-0.792000px;}
.ws30{word-spacing:-0.780000px;}
.ws22{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.648000px;}
.ws7{word-spacing:-0.600000px;}
.ws59{word-spacing:-0.594000px;}
.ws5b{word-spacing:-0.528000px;}
.ws46{word-spacing:-0.330000px;}
.wsb{word-spacing:-0.162000px;}
.ws3b{word-spacing:-0.132000px;}
.ws77{word-spacing:-0.120000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.054000px;}
.ws38{word-spacing:0.066000px;}
.ws1b{word-spacing:0.132000px;}
.wsf{word-spacing:0.216000px;}
.ws25{word-spacing:0.330000px;}
.ws54{word-spacing:0.480000px;}
.ws19{word-spacing:0.528000px;}
.ws45{word-spacing:0.660000px;}
.ws61{word-spacing:0.726000px;}
.ws5a{word-spacing:0.792000px;}
.ws56{word-spacing:0.810000px;}
.ws53{word-spacing:0.858000px;}
.ws11{word-spacing:0.918000px;}
.ws34{word-spacing:0.972000px;}
.ws5e{word-spacing:0.990000px;}
.ws18{word-spacing:1.716000px;}
.ws64{word-spacing:1.782000px;}
.ws4f{word-spacing:1.800000px;}
.ws6e{word-spacing:1.920000px;}
.ws63{word-spacing:1.980000px;}
.ws31{word-spacing:2.400000px;}
.ws76{word-spacing:2.520000px;}
.ws50{word-spacing:2.772000px;}
.ws4{word-spacing:2.808000px;}
.ws6a{word-spacing:2.904000px;}
.ws10{word-spacing:2.916000px;}
.ws43{word-spacing:3.234000px;}
.ws17{word-spacing:3.455052px;}
.ws1a{word-spacing:3.564000px;}
.ws24{word-spacing:4.026000px;}
.wsc{word-spacing:4.158000px;}
.ws6c{word-spacing:4.380000px;}
.ws29{word-spacing:4.554000px;}
.wsd{word-spacing:4.644000px;}
.ws75{word-spacing:4.740000px;}
.ws74{word-spacing:4.800000px;}
.ws44{word-spacing:4.818000px;}
.ws5f{word-spacing:5.148000px;}
.ws71{word-spacing:5.280000px;}
.ws72{word-spacing:5.340000px;}
.ws6b{word-spacing:5.478000px;}
.ws2f{word-spacing:5.742000px;}
.ws55{word-spacing:5.808000px;}
.ws40{word-spacing:5.874000px;}
.ws51{word-spacing:6.006000px;}
.ws36{word-spacing:6.138000px;}
.ws3d{word-spacing:6.156000px;}
.ws48{word-spacing:6.270000px;}
.ws26{word-spacing:6.402000px;}
.ws67{word-spacing:6.534000px;}
.ws52{word-spacing:6.732000px;}
.ws2e{word-spacing:6.930000px;}
.ws6{word-spacing:7.128000px;}
.ws5{word-spacing:7.182000px;}
.ws37{word-spacing:7.194000px;}
.ws2d{word-spacing:7.458000px;}
.ws4d{word-spacing:9.042000px;}
.ws5d{word-spacing:9.372000px;}
.ws1e{word-spacing:9.504000px;}
.ws47{word-spacing:9.570000px;}
.ws41{word-spacing:9.768000px;}
.ws23{word-spacing:9.834000px;}
.ws2c{word-spacing:9.900000px;}
.ws3a{word-spacing:9.966000px;}
.ws39{word-spacing:10.098000px;}
.ws33{word-spacing:10.560000px;}
.ws2b{word-spacing:10.758000px;}
.ws8{word-spacing:10.800000px;}
.ws4b{word-spacing:11.088000px;}
.ws49{word-spacing:12.078000px;}
.ws28{word-spacing:14.652000px;}
.ws60{word-spacing:16.170000px;}
.ws68{word-spacing:33.000000px;}
._11{margin-left:-27.000000px;}
._17{margin-left:-24.332400px;}
._9{margin-left:-9.590400px;}
._8{margin-left:-7.200000px;}
._3{margin-left:-6.004552px;}
._4{margin-left:-4.212000px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._6{width:2.912209px;}
._b{width:4.145747px;}
._10{width:5.464200px;}
._c{width:6.659400px;}
._d{width:8.362200px;}
._12{width:9.367095px;}
._7{width:10.422000px;}
._e{width:11.582400px;}
._f{width:12.677047px;}
._15{width:13.691153px;}
._5{width:14.742000px;}
._13{width:16.193047px;}
._14{width:17.258295px;}
._18{width:19.991400px;}
._16{width:29.624400px;}
._a{width:33.000000px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fsb{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs8{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y29{bottom:17.983350px;}
.y28{bottom:26.200200px;}
.y2a{bottom:30.614100px;}
.y2{bottom:42.949800px;}
.y27{bottom:47.200200px;}
.ya{bottom:53.999400px;}
.y2b{bottom:55.288350px;}
.y26{bottom:68.200200px;}
.y9{bottom:70.199400px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.y54{bottom:170.078700px;}
.y122{bottom:170.081700px;}
.y173{bottom:170.084700px;}
.y180{bottom:170.090700px;}
.yc2{bottom:170.093700px;}
.ya1{bottom:170.102700px;}
.y143{bottom:170.108700px;}
.ye2{bottom:170.132700px;}
.y102{bottom:173.399400px;}
.y194{bottom:175.107900px;}
.y167{bottom:179.447400px;}
.y121{bottom:186.578700px;}
.y172{bottom:186.581700px;}
.y17f{bottom:186.587700px;}
.yc1{bottom:186.590700px;}
.ya0{bottom:186.599700px;}
.y142{bottom:186.605700px;}
.ye1{bottom:186.629700px;}
.y7a{bottom:188.426400px;}
.y101{bottom:195.905400px;}
.y193{bottom:196.107900px;}
.y166{bottom:201.953400px;}
.y171{bottom:203.078700px;}
.y17e{bottom:203.084700px;}
.yc0{bottom:203.087700px;}
.y9f{bottom:203.096700px;}
.y141{bottom:203.102700px;}
.ye0{bottom:203.126700px;}
.y79{bottom:210.932400px;}
.y100{bottom:218.411400px;}
.y17d{bottom:219.581700px;}
.ybf{bottom:219.584700px;}
.y9e{bottom:219.593700px;}
.y140{bottom:219.599700px;}
.ydf{bottom:219.623700px;}
.y165{bottom:224.459400px;}
.y192{bottom:227.607900px;}
.y78{bottom:233.438400px;}
.y53{bottom:233.984400px;}
.y17c{bottom:236.078700px;}
.ybe{bottom:236.081700px;}
.y9d{bottom:236.090700px;}
.y13f{bottom:236.096700px;}
.yde{bottom:236.120700px;}
.yff{bottom:240.917400px;}
.y191{bottom:248.607900px;}
.y120{bottom:251.601900px;}
.ybd{bottom:252.578700px;}
.y9c{bottom:252.587700px;}
.y13e{bottom:252.593700px;}
.ydd{bottom:252.617700px;}
.y77{bottom:255.944400px;}
.y52{bottom:256.490400px;}
.yfe{bottom:263.423400px;}
.y170{bottom:265.101900px;}
.y9b{bottom:269.084700px;}
.y13d{bottom:269.090700px;}
.ydc{bottom:269.114700px;}
.y164{bottom:269.454900px;}
.y11f{bottom:274.107900px;}
.y76{bottom:278.450400px;}
.y51{bottom:278.996400px;}
.y190{bottom:280.107900px;}
.y9a{bottom:285.581700px;}
.y13c{bottom:285.587700px;}
.ydb{bottom:285.611700px;}
.yfd{bottom:285.929400px;}
.y16f{bottom:287.607900px;}
.y163{bottom:291.960900px;}
.y75{bottom:300.956400px;}
.y50{bottom:301.502400px;}
.y99{bottom:302.078700px;}
.y13b{bottom:302.084700px;}
.yda{bottom:302.108700px;}
.yfc{bottom:308.435400px;}
.y18f{bottom:311.607900px;}
.y162{bottom:314.466900px;}
.y17b{bottom:316.071900px;}
.y13a{bottom:318.581700px;}
.yd9{bottom:318.605700px;}
.y11e{bottom:319.113900px;}
.y74{bottom:323.462400px;}
.y4f{bottom:324.008400px;}
.yfb{bottom:330.941400px;}
.y16e{bottom:332.613900px;}
.y139{bottom:335.078700px;}
.yd8{bottom:335.102700px;}
.y161{bottom:336.972900px;}
.y17a{bottom:338.577900px;}
.y18e{bottom:343.107900px;}
.yd7{bottom:351.599700px;}
.y11d{bottom:352.107900px;}
.yfa{bottom:353.447400px;}
.y160{bottom:359.478900px;}
.ybc{bottom:361.077900px;}
.y179{bottom:361.083900px;}
.y23{bottom:362.159400px;}
.y18d{bottom:364.107900px;}
.y16d{bottom:365.607900px;}
.yd6{bottom:368.096700px;}
.y73{bottom:368.457900px;}
.y4e{bottom:369.003900px;}
.yf9{bottom:375.953400px;}
.y98{bottom:376.059900px;}
.y12f{bottom:380.589900px;}
.y15f{bottom:381.984900px;}
.y22{bottom:383.165400px;}
.ybb{bottom:383.583900px;}
.y178{bottom:383.589900px;}
.yd5{bottom:384.593700px;}
.y72{bottom:390.963900px;}
.y4d{bottom:391.509900px;}
.y18c{bottom:395.607900px;}
.yf8{bottom:398.459400px;}
.y97{bottom:398.565900px;}
.y21{bottom:399.662400px;}
.yd4{bottom:401.090700px;}
.y12e{bottom:403.095900px;}
.y15e{bottom:404.490900px;}
.yba{bottom:406.089900px;}
.y177{bottom:406.095900px;}
.y71{bottom:413.469900px;}
.y4c{bottom:414.015900px;}
.y20{bottom:416.159400px;}
.y18b{bottom:416.607900px;}
.yd3{bottom:417.587700px;}
.yf7{bottom:420.965400px;}
.y96{bottom:421.071900px;}
.y138{bottom:422.577900px;}
.y12d{bottom:425.601900px;}
.y15d{bottom:426.996900px;}
.yb9{bottom:428.595900px;}
.y176{bottom:428.601900px;}
.y11c{bottom:430.004400px;}
.y1f{bottom:432.656400px;}
.yd2{bottom:434.084700px;}
.y70{bottom:435.975900px;}
.y4b{bottom:436.521900px;}
.y16c{bottom:443.454900px;}
.yf6{bottom:443.471400px;}
.y95{bottom:443.577900px;}
.y137{bottom:445.083900px;}
.y12c{bottom:448.107900px;}
.y1e{bottom:449.153400px;}
.y15c{bottom:449.502900px;}
.yd1{bottom:450.581700px;}
.yb8{bottom:451.101900px;}
.y175{bottom:451.107900px;}
.y11b{bottom:452.510400px;}
.y6f{bottom:458.481900px;}
.y4a{bottom:459.027900px;}
.y1d{bottom:465.650400px;}
.y16b{bottom:465.960900px;}
.yf5{bottom:465.977400px;}
.y94{bottom:466.083900px;}
.yd0{bottom:467.078700px;}
.y136{bottom:467.589900px;}
.y15b{bottom:472.008900px;}
.yb7{bottom:473.529900px;}
.y11a{bottom:475.016400px;}
.y18a{bottom:479.607900px;}
.y6e{bottom:480.987900px;}
.y49{bottom:481.533900px;}
.y16a{bottom:488.466900px;}
.yf4{bottom:488.483400px;}
.y93{bottom:488.589900px;}
.y135{bottom:490.095900px;}
.y12b{bottom:493.107900px;}
.y15a{bottom:494.514900px;}
.yb6{bottom:496.035900px;}
.y174{bottom:496.107900px;}
.y119{bottom:497.522400px;}
.y1c{bottom:499.400400px;}
.y6d{bottom:503.493900px;}
.y48{bottom:504.039900px;}
.y169{bottom:510.972900px;}
.yf3{bottom:510.989400px;}
.y92{bottom:511.095900px;}
.y189{bottom:511.107900px;}
.y134{bottom:512.601900px;}
.y12a{bottom:514.107900px;}
.y1b{bottom:516.653400px;}
.yb5{bottom:518.541900px;}
.y118{bottom:520.028400px;}
.y6c{bottom:525.999900px;}
.y188{bottom:532.107900px;}
.y168{bottom:533.478900px;}
.yf2{bottom:533.495400px;}
.y91{bottom:533.601900px;}
.y129{bottom:535.107900px;}
.y1a{bottom:537.659400px;}
.y159{bottom:539.510400px;}
.yb4{bottom:541.047900px;}
.y117{bottom:542.534400px;}
.y6b{bottom:548.505900px;}
.ycf{bottom:548.589900px;}
.y47{bottom:548.891400px;}
.y19{bottom:554.912400px;}
.y90{bottom:555.984900px;}
.yf1{bottom:556.001400px;}
.y158{bottom:562.016400px;}
.yb3{bottom:563.553900px;}
.y187{bottom:563.607900px;}
.y116{bottom:565.040400px;}
.y6a{bottom:571.011900px;}
.yce{bottom:571.095900px;}
.y46{bottom:571.397400px;}
.y18{bottom:572.165400px;}
.y128{bottom:578.474400px;}
.y8f{bottom:578.490900px;}
.y133{bottom:580.113900px;}
.y157{bottom:584.522400px;}
.y186{bottom:584.607900px;}
.yb2{bottom:586.059900px;}
.y115{bottom:587.546400px;}
.y17{bottom:589.418400px;}
.y69{bottom:593.517900px;}
.ycd{bottom:593.601900px;}
.y45{bottom:593.903400px;}
.y1aa{bottom:596.510400px;}
.y127{bottom:600.980400px;}
.y8e{bottom:600.996900px;}
.y16{bottom:606.671400px;}
.y156{bottom:607.028400px;}
.yb1{bottom:608.565900px;}
.y114{bottom:610.052400px;}
.y132{bottom:613.107900px;}
.y68{bottom:616.023900px;}
.ycc{bottom:616.089900px;}
.y185{bottom:616.107900px;}
.y44{bottom:616.409400px;}
.y1a9{bottom:617.510400px;}
.y126{bottom:623.486400px;}
.y8d{bottom:623.502900px;}
.y15{bottom:623.924400px;}
.y155{bottom:629.534400px;}
.yb0{bottom:631.071900px;}
.y113{bottom:632.558400px;}
.y67{bottom:638.529900px;}
.ycb{bottom:638.595900px;}
.y43{bottom:638.915400px;}
.y14{bottom:641.177400px;}
.y125{bottom:645.992400px;}
.y8c{bottom:646.008900px;}
.y184{bottom:647.607900px;}
.y1a8{bottom:649.010400px;}
.y154{bottom:652.040400px;}
.yaf{bottom:653.577900px;}
.y66{bottom:661.035900px;}
.yca{bottom:661.101900px;}
.y42{bottom:661.421400px;}
.y124{bottom:668.498400px;}
.y8b{bottom:668.514900px;}
.y183{bottom:668.607900px;}
.y153{bottom:674.546400px;}
.yae{bottom:676.083900px;}
.y112{bottom:677.553900px;}
.y1a7{bottom:680.510400px;}
.y65{bottom:683.541900px;}
.yc9{bottom:683.607900px;}
.y41{bottom:683.927400px;}
.y123{bottom:691.004400px;}
.yf0{bottom:691.020900px;}
.y13{bottom:695.430750px;}
.y152{bottom:697.052400px;}
.yad{bottom:698.589900px;}
.y111{bottom:700.059900px;}
.y182{bottom:700.107900px;}
.y64{bottom:706.047900px;}
.y40{bottom:706.433400px;}
.y1a6{bottom:712.010400px;}
.y8a{bottom:713.510400px;}
.yef{bottom:713.526900px;}
.y12{bottom:716.430750px;}
.y151{bottom:719.558400px;}
.yac{bottom:721.095900px;}
.y110{bottom:722.565900px;}
.y63{bottom:728.553900px;}
.yc8{bottom:728.607900px;}
.y3f{bottom:728.939400px;}
.y1a5{bottom:733.010400px;}
.y89{bottom:736.016400px;}
.yee{bottom:736.032900px;}
.y11{bottom:737.430750px;}
.y25{bottom:741.725400px;}
.y150{bottom:742.064400px;}
.yab{bottom:743.601900px;}
.y181{bottom:743.607900px;}
.y10f{bottom:745.071900px;}
.y62{bottom:751.059900px;}
.y3e{bottom:751.445400px;}
.y10{bottom:758.430750px;}
.y88{bottom:758.522400px;}
.yed{bottom:758.538900px;}
.y24{bottom:761.219400px;}
.y1a4{bottom:764.510400px;}
.yaa{bottom:766.107900px;}
.y10e{bottom:767.577900px;}
.y61{bottom:773.565900px;}
.y3d{bottom:773.951400px;}
.y87{bottom:781.028400px;}
.yec{bottom:781.044900px;}
.y1a3{bottom:785.510400px;}
.y14f{bottom:787.059900px;}
.y10d{bottom:790.083900px;}
.y60{bottom:796.071900px;}
.y3c{bottom:796.457400px;}
.y131{bottom:803.517900px;}
.y86{bottom:803.534400px;}
.yeb{bottom:803.550900px;}
.y14e{bottom:809.565900px;}
.ya9{bottom:811.107900px;}
.y10c{bottom:812.589900px;}
.y1a2{bottom:817.010400px;}
.y5f{bottom:818.577900px;}
.y3b{bottom:818.963400px;}
.y130{bottom:826.023900px;}
.y85{bottom:826.040400px;}
.yea{bottom:826.056900px;}
.y14d{bottom:832.071900px;}
.ya8{bottom:832.107900px;}
.y10b{bottom:835.095900px;}
.y1a1{bottom:838.010400px;}
.y5e{bottom:841.083900px;}
.y3a{bottom:841.469400px;}
.yc7{bottom:848.529900px;}
.y84{bottom:848.546400px;}
.ye9{bottom:848.562900px;}
.ya7{bottom:853.107900px;}
.y14c{bottom:854.577900px;}
.y10a{bottom:857.601900px;}
.y1a0{bottom:859.010400px;}
.yf{bottom:859.855650px;}
.y5d{bottom:863.589900px;}
.y39{bottom:863.975400px;}
.yc6{bottom:871.035900px;}
.y83{bottom:871.052400px;}
.ya6{bottom:874.107900px;}
.y14b{bottom:877.083900px;}
.y109{bottom:880.107900px;}
.y5c{bottom:886.095900px;}
.y38{bottom:886.481400px;}
.ye{bottom:886.855650px;}
.y19f{bottom:890.510400px;}
.yc5{bottom:893.541900px;}
.y82{bottom:893.558400px;}
.ya5{bottom:895.107900px;}
.y14a{bottom:899.589900px;}
.y5b{bottom:908.601900px;}
.y37{bottom:908.987400px;}
.y19e{bottom:911.510400px;}
.yc4{bottom:916.047900px;}
.y81{bottom:916.064400px;}
.y149{bottom:922.095900px;}
.y108{bottom:925.107900px;}
.yd{bottom:926.611500px;}
.y5a{bottom:931.107900px;}
.y36{bottom:931.493400px;}
.y19d{bottom:932.510400px;}
.yc3{bottom:938.553900px;}
.ye8{bottom:938.570400px;}
.ya4{bottom:938.589900px;}
.y148{bottom:944.601900px;}
.y107{bottom:946.107900px;}
.y35{bottom:953.999400px;}
.y80{bottom:961.059900px;}
.ye7{bottom:961.076400px;}
.ya3{bottom:961.095900px;}
.yc{bottom:961.111500px;}
.y19c{bottom:964.010400px;}
.y106{bottom:967.107900px;}
.y59{bottom:976.107900px;}
.y34{bottom:976.505400px;}
.y7f{bottom:983.565900px;}
.ye6{bottom:983.582400px;}
.ya2{bottom:983.601900px;}
.y19b{bottom:985.010400px;}
.y105{bottom:988.107900px;}
.yb{bottom:995.611500px;}
.y33{bottom:999.011400px;}
.y19a{bottom:1006.010400px;}
.y7e{bottom:1006.071900px;}
.ye5{bottom:1006.088400px;}
.y104{bottom:1009.107900px;}
.y147{bottom:1012.107900px;}
.y58{bottom:1013.607900px;}
.y32{bottom:1021.517400px;}
.y7d{bottom:1028.577900px;}
.ye4{bottom:1028.594400px;}
.y103{bottom:1030.107900px;}
.y146{bottom:1033.107900px;}
.y199{bottom:1037.510400px;}
.y31{bottom:1044.023400px;}
.y7c{bottom:1051.083900px;}
.ye3{bottom:1051.100400px;}
.y145{bottom:1054.107900px;}
.y198{bottom:1058.510400px;}
.y30{bottom:1066.529400px;}
.y7b{bottom:1073.589900px;}
.y144{bottom:1075.107900px;}
.y2f{bottom:1089.035400px;}
.y197{bottom:1090.010400px;}
.y57{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y56{bottom:1118.601900px;}
.y196{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.y2e{bottom:1134.035400px;}
.y55{bottom:1141.107900px;}
.y195{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y2c{bottom:1185.328350px;}
.y2d{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h8{height:67.500000px;}
.h5{height:69.300000px;}
.h11{height:69.372000px;}
.hf{height:69.444000px;}
.h10{height:69.612000px;}
.he{height:69.792000px;}
.hd{height:69.876000px;}
.ha{height:72.000000px;}
.h12{height:81.000000px;}
.hc{height:90.000000px;}
.h7{height:126.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:21.259800px;}
.xc{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x12{left:136.062900px;}
.x10{left:144.549150px;}
.x2{left:155.902500px;}
.x13{left:159.921150px;}
.x14{left:162.162150px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.xd{left:815.527500px;}
.x11{left:823.527600px;}
.xe{left:824.578650px;}
.x15{left:826.101450px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.048000pt;}
.ls5{letter-spacing:-3.071157pt;}
.ls6{letter-spacing:-2.346667pt;}
.lse{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000032pt;}
.ls0{letter-spacing:0.381320pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls4{letter-spacing:8.524800pt;}
.ws1{word-spacing:-25.280000pt;}
.ws4e{word-spacing:-21.600000pt;}
.ws15{word-spacing:-16.192000pt;}
.ws2{word-spacing:-14.880000pt;}
.ws14{word-spacing:-14.021333pt;}
.ws0{word-spacing:-13.392000pt;}
.ws58{word-spacing:-13.248000pt;}
.ws12{word-spacing:-12.533333pt;}
.ws16{word-spacing:-9.542544pt;}
.ws13{word-spacing:-8.610133pt;}
.ws6f{word-spacing:-5.920000pt;}
.ws21{word-spacing:-5.573333pt;}
.ws3f{word-spacing:-5.338667pt;}
.ws3e{word-spacing:-5.280000pt;}
.ws69{word-spacing:-2.874667pt;}
.ws32{word-spacing:-2.826667pt;}
.ws1f{word-spacing:-2.522667pt;}
.ws20{word-spacing:-2.464000pt;}
.ws6d{word-spacing:-2.240000pt;}
.ws62{word-spacing:-2.229333pt;}
.ws78{word-spacing:-2.133333pt;}
.ws2a{word-spacing:-2.112000pt;}
.ws3c{word-spacing:-2.053333pt;}
.ws35{word-spacing:-1.920000pt;}
.ws27{word-spacing:-1.760000pt;}
.ws70{word-spacing:-1.600000pt;}
.ws4c{word-spacing:-1.584000pt;}
.ws73{word-spacing:-1.546667pt;}
.ws5c{word-spacing:-1.440000pt;}
.ws57{word-spacing:-1.392000pt;}
.ws65{word-spacing:-1.290667pt;}
.ws42{word-spacing:-0.997333pt;}
.ws66{word-spacing:-0.880000pt;}
.ws4a{word-spacing:-0.821333pt;}
.wse{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.762667pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws30{word-spacing:-0.693333pt;}
.ws22{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.576000pt;}
.ws7{word-spacing:-0.533333pt;}
.ws59{word-spacing:-0.528000pt;}
.ws5b{word-spacing:-0.469333pt;}
.ws46{word-spacing:-0.293333pt;}
.wsb{word-spacing:-0.144000pt;}
.ws3b{word-spacing:-0.117333pt;}
.ws77{word-spacing:-0.106667pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.048000pt;}
.ws38{word-spacing:0.058667pt;}
.ws1b{word-spacing:0.117333pt;}
.wsf{word-spacing:0.192000pt;}
.ws25{word-spacing:0.293333pt;}
.ws54{word-spacing:0.426667pt;}
.ws19{word-spacing:0.469333pt;}
.ws45{word-spacing:0.586667pt;}
.ws61{word-spacing:0.645333pt;}
.ws5a{word-spacing:0.704000pt;}
.ws56{word-spacing:0.720000pt;}
.ws53{word-spacing:0.762667pt;}
.ws11{word-spacing:0.816000pt;}
.ws34{word-spacing:0.864000pt;}
.ws5e{word-spacing:0.880000pt;}
.ws18{word-spacing:1.525333pt;}
.ws64{word-spacing:1.584000pt;}
.ws4f{word-spacing:1.600000pt;}
.ws6e{word-spacing:1.706667pt;}
.ws63{word-spacing:1.760000pt;}
.ws31{word-spacing:2.133333pt;}
.ws76{word-spacing:2.240000pt;}
.ws50{word-spacing:2.464000pt;}
.ws4{word-spacing:2.496000pt;}
.ws6a{word-spacing:2.581333pt;}
.ws10{word-spacing:2.592000pt;}
.ws43{word-spacing:2.874667pt;}
.ws17{word-spacing:3.071157pt;}
.ws1a{word-spacing:3.168000pt;}
.ws24{word-spacing:3.578667pt;}
.wsc{word-spacing:3.696000pt;}
.ws6c{word-spacing:3.893333pt;}
.ws29{word-spacing:4.048000pt;}
.wsd{word-spacing:4.128000pt;}
.ws75{word-spacing:4.213333pt;}
.ws74{word-spacing:4.266667pt;}
.ws44{word-spacing:4.282667pt;}
.ws5f{word-spacing:4.576000pt;}
.ws71{word-spacing:4.693333pt;}
.ws72{word-spacing:4.746667pt;}
.ws6b{word-spacing:4.869333pt;}
.ws2f{word-spacing:5.104000pt;}
.ws55{word-spacing:5.162667pt;}
.ws40{word-spacing:5.221333pt;}
.ws51{word-spacing:5.338667pt;}
.ws36{word-spacing:5.456000pt;}
.ws3d{word-spacing:5.472000pt;}
.ws48{word-spacing:5.573333pt;}
.ws26{word-spacing:5.690667pt;}
.ws67{word-spacing:5.808000pt;}
.ws52{word-spacing:5.984000pt;}
.ws2e{word-spacing:6.160000pt;}
.ws6{word-spacing:6.336000pt;}
.ws5{word-spacing:6.384000pt;}
.ws37{word-spacing:6.394667pt;}
.ws2d{word-spacing:6.629333pt;}
.ws4d{word-spacing:8.037333pt;}
.ws5d{word-spacing:8.330667pt;}
.ws1e{word-spacing:8.448000pt;}
.ws47{word-spacing:8.506667pt;}
.ws41{word-spacing:8.682667pt;}
.ws23{word-spacing:8.741333pt;}
.ws2c{word-spacing:8.800000pt;}
.ws3a{word-spacing:8.858667pt;}
.ws39{word-spacing:8.976000pt;}
.ws33{word-spacing:9.386667pt;}
.ws2b{word-spacing:9.562667pt;}
.ws8{word-spacing:9.600000pt;}
.ws4b{word-spacing:9.856000pt;}
.ws49{word-spacing:10.736000pt;}
.ws28{word-spacing:13.024000pt;}
.ws60{word-spacing:14.373333pt;}
.ws68{word-spacing:29.333333pt;}
._11{margin-left:-24.000000pt;}
._17{margin-left:-21.628800pt;}
._9{margin-left:-8.524800pt;}
._8{margin-left:-6.400000pt;}
._3{margin-left:-5.337380pt;}
._4{margin-left:-3.744000pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._6{width:2.588630pt;}
._b{width:3.685109pt;}
._10{width:4.857067pt;}
._c{width:5.919467pt;}
._d{width:7.433067pt;}
._12{width:8.326307pt;}
._7{width:9.264000pt;}
._e{width:10.295467pt;}
._f{width:11.268487pt;}
._15{width:12.169913pt;}
._5{width:13.104000pt;}
._13{width:14.393820pt;}
._14{width:15.340707pt;}
._18{width:17.770133pt;}
._16{width:26.332800pt;}
._a{width:29.333333pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fsb{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs8{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y29{bottom:15.985200pt;}
.y28{bottom:23.289067pt;}
.y2a{bottom:27.212533pt;}
.y2{bottom:38.177600pt;}
.y27{bottom:41.955733pt;}
.ya{bottom:47.999467pt;}
.y2b{bottom:49.145200pt;}
.y26{bottom:60.622400pt;}
.y9{bottom:62.399467pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.y54{bottom:151.181067pt;}
.y122{bottom:151.183733pt;}
.y173{bottom:151.186400pt;}
.y180{bottom:151.191733pt;}
.yc2{bottom:151.194400pt;}
.ya1{bottom:151.202400pt;}
.y143{bottom:151.207733pt;}
.ye2{bottom:151.229067pt;}
.y102{bottom:154.132800pt;}
.y194{bottom:155.651467pt;}
.y167{bottom:159.508800pt;}
.y121{bottom:165.847733pt;}
.y172{bottom:165.850400pt;}
.y17f{bottom:165.855733pt;}
.yc1{bottom:165.858400pt;}
.ya0{bottom:165.866400pt;}
.y142{bottom:165.871733pt;}
.ye1{bottom:165.893067pt;}
.y7a{bottom:167.490133pt;}
.y101{bottom:174.138133pt;}
.y193{bottom:174.318133pt;}
.y166{bottom:179.514133pt;}
.y171{bottom:180.514400pt;}
.y17e{bottom:180.519733pt;}
.yc0{bottom:180.522400pt;}
.y9f{bottom:180.530400pt;}
.y141{bottom:180.535733pt;}
.ye0{bottom:180.557067pt;}
.y79{bottom:187.495467pt;}
.y100{bottom:194.143467pt;}
.y17d{bottom:195.183733pt;}
.ybf{bottom:195.186400pt;}
.y9e{bottom:195.194400pt;}
.y140{bottom:195.199733pt;}
.ydf{bottom:195.221067pt;}
.y165{bottom:199.519467pt;}
.y192{bottom:202.318133pt;}
.y78{bottom:207.500800pt;}
.y53{bottom:207.986133pt;}
.y17c{bottom:209.847733pt;}
.ybe{bottom:209.850400pt;}
.y9d{bottom:209.858400pt;}
.y13f{bottom:209.863733pt;}
.yde{bottom:209.885067pt;}
.yff{bottom:214.148800pt;}
.y191{bottom:220.984800pt;}
.y120{bottom:223.646133pt;}
.ybd{bottom:224.514400pt;}
.y9c{bottom:224.522400pt;}
.y13e{bottom:224.527733pt;}
.ydd{bottom:224.549067pt;}
.y77{bottom:227.506133pt;}
.y52{bottom:227.991467pt;}
.yfe{bottom:234.154133pt;}
.y170{bottom:235.646133pt;}
.y9b{bottom:239.186400pt;}
.y13d{bottom:239.191733pt;}
.ydc{bottom:239.213067pt;}
.y164{bottom:239.515467pt;}
.y11f{bottom:243.651467pt;}
.y76{bottom:247.511467pt;}
.y51{bottom:247.996800pt;}
.y190{bottom:248.984800pt;}
.y9a{bottom:253.850400pt;}
.y13c{bottom:253.855733pt;}
.ydb{bottom:253.877067pt;}
.yfd{bottom:254.159467pt;}
.y16f{bottom:255.651467pt;}
.y163{bottom:259.520800pt;}
.y75{bottom:267.516800pt;}
.y50{bottom:268.002133pt;}
.y99{bottom:268.514400pt;}
.y13b{bottom:268.519733pt;}
.yda{bottom:268.541067pt;}
.yfc{bottom:274.164800pt;}
.y18f{bottom:276.984800pt;}
.y162{bottom:279.526133pt;}
.y17b{bottom:280.952800pt;}
.y13a{bottom:283.183733pt;}
.yd9{bottom:283.205067pt;}
.y11e{bottom:283.656800pt;}
.y74{bottom:287.522133pt;}
.y4f{bottom:288.007467pt;}
.yfb{bottom:294.170133pt;}
.y16e{bottom:295.656800pt;}
.y139{bottom:297.847733pt;}
.yd8{bottom:297.869067pt;}
.y161{bottom:299.531467pt;}
.y17a{bottom:300.958133pt;}
.y18e{bottom:304.984800pt;}
.yd7{bottom:312.533067pt;}
.y11d{bottom:312.984800pt;}
.yfa{bottom:314.175467pt;}
.y160{bottom:319.536800pt;}
.ybc{bottom:320.958133pt;}
.y179{bottom:320.963467pt;}
.y23{bottom:321.919467pt;}
.y18d{bottom:323.651467pt;}
.y16d{bottom:324.984800pt;}
.yd6{bottom:327.197067pt;}
.y73{bottom:327.518133pt;}
.y4e{bottom:328.003467pt;}
.yf9{bottom:334.180800pt;}
.y98{bottom:334.275467pt;}
.y12f{bottom:338.302133pt;}
.y15f{bottom:339.542133pt;}
.y22{bottom:340.591467pt;}
.ybb{bottom:340.963467pt;}
.y178{bottom:340.968800pt;}
.yd5{bottom:341.861067pt;}
.y72{bottom:347.523467pt;}
.y4d{bottom:348.008800pt;}
.y18c{bottom:351.651467pt;}
.yf8{bottom:354.186133pt;}
.y97{bottom:354.280800pt;}
.y21{bottom:355.255467pt;}
.yd4{bottom:356.525067pt;}
.y12e{bottom:358.307467pt;}
.y15e{bottom:359.547467pt;}
.yba{bottom:360.968800pt;}
.y177{bottom:360.974133pt;}
.y71{bottom:367.528800pt;}
.y4c{bottom:368.014133pt;}
.y20{bottom:369.919467pt;}
.y18b{bottom:370.318133pt;}
.yd3{bottom:371.189067pt;}
.yf7{bottom:374.191467pt;}
.y96{bottom:374.286133pt;}
.y138{bottom:375.624800pt;}
.y12d{bottom:378.312800pt;}
.y15d{bottom:379.552800pt;}
.yb9{bottom:380.974133pt;}
.y176{bottom:380.979467pt;}
.y11c{bottom:382.226133pt;}
.y1f{bottom:384.583467pt;}
.yd2{bottom:385.853067pt;}
.y70{bottom:387.534133pt;}
.y4b{bottom:388.019467pt;}
.y16c{bottom:394.182133pt;}
.yf6{bottom:394.196800pt;}
.y95{bottom:394.291467pt;}
.y137{bottom:395.630133pt;}
.y12c{bottom:398.318133pt;}
.y1e{bottom:399.247467pt;}
.y15c{bottom:399.558133pt;}
.yd1{bottom:400.517067pt;}
.yb8{bottom:400.979467pt;}
.y175{bottom:400.984800pt;}
.y11b{bottom:402.231467pt;}
.y6f{bottom:407.539467pt;}
.y4a{bottom:408.024800pt;}
.y1d{bottom:413.911467pt;}
.y16b{bottom:414.187467pt;}
.yf5{bottom:414.202133pt;}
.y94{bottom:414.296800pt;}
.yd0{bottom:415.181067pt;}
.y136{bottom:415.635467pt;}
.y15b{bottom:419.563467pt;}
.yb7{bottom:420.915467pt;}
.y11a{bottom:422.236800pt;}
.y18a{bottom:426.318133pt;}
.y6e{bottom:427.544800pt;}
.y49{bottom:428.030133pt;}
.y16a{bottom:434.192800pt;}
.yf4{bottom:434.207467pt;}
.y93{bottom:434.302133pt;}
.y135{bottom:435.640800pt;}
.y12b{bottom:438.318133pt;}
.y15a{bottom:439.568800pt;}
.yb6{bottom:440.920800pt;}
.y174{bottom:440.984800pt;}
.y119{bottom:442.242133pt;}
.y1c{bottom:443.911467pt;}
.y6d{bottom:447.550133pt;}
.y48{bottom:448.035467pt;}
.y169{bottom:454.198133pt;}
.yf3{bottom:454.212800pt;}
.y92{bottom:454.307467pt;}
.y189{bottom:454.318133pt;}
.y134{bottom:455.646133pt;}
.y12a{bottom:456.984800pt;}
.y1b{bottom:459.247467pt;}
.yb5{bottom:460.926133pt;}
.y118{bottom:462.247467pt;}
.y6c{bottom:467.555467pt;}
.y188{bottom:472.984800pt;}
.y168{bottom:474.203467pt;}
.yf2{bottom:474.218133pt;}
.y91{bottom:474.312800pt;}
.y129{bottom:475.651467pt;}
.y1a{bottom:477.919467pt;}
.y159{bottom:479.564800pt;}
.yb4{bottom:480.931467pt;}
.y117{bottom:482.252800pt;}
.y6b{bottom:487.560800pt;}
.ycf{bottom:487.635467pt;}
.y47{bottom:487.903467pt;}
.y19{bottom:493.255467pt;}
.y90{bottom:494.208800pt;}
.yf1{bottom:494.223467pt;}
.y158{bottom:499.570133pt;}
.yb3{bottom:500.936800pt;}
.y187{bottom:500.984800pt;}
.y116{bottom:502.258133pt;}
.y6a{bottom:507.566133pt;}
.yce{bottom:507.640800pt;}
.y46{bottom:507.908800pt;}
.y18{bottom:508.591467pt;}
.y128{bottom:514.199467pt;}
.y8f{bottom:514.214133pt;}
.y133{bottom:515.656800pt;}
.y157{bottom:519.575467pt;}
.y186{bottom:519.651467pt;}
.yb2{bottom:520.942133pt;}
.y115{bottom:522.263467pt;}
.y17{bottom:523.927467pt;}
.y69{bottom:527.571467pt;}
.ycd{bottom:527.646133pt;}
.y45{bottom:527.914133pt;}
.y1aa{bottom:530.231467pt;}
.y127{bottom:534.204800pt;}
.y8e{bottom:534.219467pt;}
.y16{bottom:539.263467pt;}
.y156{bottom:539.580800pt;}
.yb1{bottom:540.947467pt;}
.y114{bottom:542.268800pt;}
.y132{bottom:544.984800pt;}
.y68{bottom:547.576800pt;}
.ycc{bottom:547.635467pt;}
.y185{bottom:547.651467pt;}
.y44{bottom:547.919467pt;}
.y1a9{bottom:548.898133pt;}
.y126{bottom:554.210133pt;}
.y8d{bottom:554.224800pt;}
.y15{bottom:554.599467pt;}
.y155{bottom:559.586133pt;}
.yb0{bottom:560.952800pt;}
.y113{bottom:562.274133pt;}
.y67{bottom:567.582133pt;}
.ycb{bottom:567.640800pt;}
.y43{bottom:567.924800pt;}
.y14{bottom:569.935467pt;}
.y125{bottom:574.215467pt;}
.y8c{bottom:574.230133pt;}
.y184{bottom:575.651467pt;}
.y1a8{bottom:576.898133pt;}
.y154{bottom:579.591467pt;}
.yaf{bottom:580.958133pt;}
.y66{bottom:587.587467pt;}
.yca{bottom:587.646133pt;}
.y42{bottom:587.930133pt;}
.y124{bottom:594.220800pt;}
.y8b{bottom:594.235467pt;}
.y183{bottom:594.318133pt;}
.y153{bottom:599.596800pt;}
.yae{bottom:600.963467pt;}
.y112{bottom:602.270133pt;}
.y1a7{bottom:604.898133pt;}
.y65{bottom:607.592800pt;}
.yc9{bottom:607.651467pt;}
.y41{bottom:607.935467pt;}
.y123{bottom:614.226133pt;}
.yf0{bottom:614.240800pt;}
.y13{bottom:618.160667pt;}
.y152{bottom:619.602133pt;}
.yad{bottom:620.968800pt;}
.y111{bottom:622.275467pt;}
.y182{bottom:622.318133pt;}
.y64{bottom:627.598133pt;}
.y40{bottom:627.940800pt;}
.y1a6{bottom:632.898133pt;}
.y8a{bottom:634.231467pt;}
.yef{bottom:634.246133pt;}
.y12{bottom:636.827333pt;}
.y151{bottom:639.607467pt;}
.yac{bottom:640.974133pt;}
.y110{bottom:642.280800pt;}
.y63{bottom:647.603467pt;}
.yc8{bottom:647.651467pt;}
.y3f{bottom:647.946133pt;}
.y1a5{bottom:651.564800pt;}
.y89{bottom:654.236800pt;}
.yee{bottom:654.251467pt;}
.y11{bottom:655.494000pt;}
.y25{bottom:659.311467pt;}
.y150{bottom:659.612800pt;}
.yab{bottom:660.979467pt;}
.y181{bottom:660.984800pt;}
.y10f{bottom:662.286133pt;}
.y62{bottom:667.608800pt;}
.y3e{bottom:667.951467pt;}
.y10{bottom:674.160667pt;}
.y88{bottom:674.242133pt;}
.yed{bottom:674.256800pt;}
.y24{bottom:676.639467pt;}
.y1a4{bottom:679.564800pt;}
.yaa{bottom:680.984800pt;}
.y10e{bottom:682.291467pt;}
.y61{bottom:687.614133pt;}
.y3d{bottom:687.956800pt;}
.y87{bottom:694.247467pt;}
.yec{bottom:694.262133pt;}
.y1a3{bottom:698.231467pt;}
.y14f{bottom:699.608800pt;}
.y10d{bottom:702.296800pt;}
.y60{bottom:707.619467pt;}
.y3c{bottom:707.962133pt;}
.y131{bottom:714.238133pt;}
.y86{bottom:714.252800pt;}
.yeb{bottom:714.267467pt;}
.y14e{bottom:719.614133pt;}
.ya9{bottom:720.984800pt;}
.y10c{bottom:722.302133pt;}
.y1a2{bottom:726.231467pt;}
.y5f{bottom:727.624800pt;}
.y3b{bottom:727.967467pt;}
.y130{bottom:734.243467pt;}
.y85{bottom:734.258133pt;}
.yea{bottom:734.272800pt;}
.y14d{bottom:739.619467pt;}
.ya8{bottom:739.651467pt;}
.y10b{bottom:742.307467pt;}
.y1a1{bottom:744.898133pt;}
.y5e{bottom:747.630133pt;}
.y3a{bottom:747.972800pt;}
.yc7{bottom:754.248800pt;}
.y84{bottom:754.263467pt;}
.ye9{bottom:754.278133pt;}
.ya7{bottom:758.318133pt;}
.y14c{bottom:759.624800pt;}
.y10a{bottom:762.312800pt;}
.y1a0{bottom:763.564800pt;}
.yf{bottom:764.316133pt;}
.y5d{bottom:767.635467pt;}
.y39{bottom:767.978133pt;}
.yc6{bottom:774.254133pt;}
.y83{bottom:774.268800pt;}
.ya6{bottom:776.984800pt;}
.y14b{bottom:779.630133pt;}
.y109{bottom:782.318133pt;}
.y5c{bottom:787.640800pt;}
.y38{bottom:787.983467pt;}
.ye{bottom:788.316133pt;}
.y19f{bottom:791.564800pt;}
.yc5{bottom:794.259467pt;}
.y82{bottom:794.274133pt;}
.ya5{bottom:795.651467pt;}
.y14a{bottom:799.635467pt;}
.y5b{bottom:807.646133pt;}
.y37{bottom:807.988800pt;}
.y19e{bottom:810.231467pt;}
.yc4{bottom:814.264800pt;}
.y81{bottom:814.279467pt;}
.y149{bottom:819.640800pt;}
.y108{bottom:822.318133pt;}
.yd{bottom:823.654667pt;}
.y5a{bottom:827.651467pt;}
.y36{bottom:827.994133pt;}
.y19d{bottom:828.898133pt;}
.yc3{bottom:834.270133pt;}
.ye8{bottom:834.284800pt;}
.ya4{bottom:834.302133pt;}
.y148{bottom:839.646133pt;}
.y107{bottom:840.984800pt;}
.y35{bottom:847.999467pt;}
.y80{bottom:854.275467pt;}
.ye7{bottom:854.290133pt;}
.ya3{bottom:854.307467pt;}
.yc{bottom:854.321333pt;}
.y19c{bottom:856.898133pt;}
.y106{bottom:859.651467pt;}
.y59{bottom:867.651467pt;}
.y34{bottom:868.004800pt;}
.y7f{bottom:874.280800pt;}
.ye6{bottom:874.295467pt;}
.ya2{bottom:874.312800pt;}
.y19b{bottom:875.564800pt;}
.y105{bottom:878.318133pt;}
.yb{bottom:884.988000pt;}
.y33{bottom:888.010133pt;}
.y19a{bottom:894.231467pt;}
.y7e{bottom:894.286133pt;}
.ye5{bottom:894.300800pt;}
.y104{bottom:896.984800pt;}
.y147{bottom:899.651467pt;}
.y58{bottom:900.984800pt;}
.y32{bottom:908.015467pt;}
.y7d{bottom:914.291467pt;}
.ye4{bottom:914.306133pt;}
.y103{bottom:915.651467pt;}
.y146{bottom:918.318133pt;}
.y199{bottom:922.231467pt;}
.y31{bottom:928.020800pt;}
.y7c{bottom:934.296800pt;}
.ye3{bottom:934.311467pt;}
.y145{bottom:936.984800pt;}
.y198{bottom:940.898133pt;}
.y30{bottom:948.026133pt;}
.y7b{bottom:954.302133pt;}
.y144{bottom:955.651467pt;}
.y2f{bottom:968.031467pt;}
.y197{bottom:968.898133pt;}
.y57{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y56{bottom:994.312800pt;}
.y196{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.y2e{bottom:1008.031467pt;}
.y55{bottom:1014.318133pt;}
.y195{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y2c{bottom:1053.625200pt;}
.y2d{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h8{height:60.000000pt;}
.h5{height:61.600000pt;}
.h11{height:61.664000pt;}
.hf{height:61.728000pt;}
.h10{height:61.877333pt;}
.he{height:62.037333pt;}
.hd{height:62.112000pt;}
.ha{height:64.000000pt;}
.h12{height:72.000000pt;}
.hc{height:80.000000pt;}
.h7{height:112.000000pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.897600pt;}
.xc{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x12{left:120.944800pt;}
.x10{left:128.488133pt;}
.x2{left:138.580000pt;}
.x13{left:142.152133pt;}
.x14{left:144.144133pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.xd{left:724.913333pt;}
.x11{left:732.024533pt;}
.xe{left:732.958800pt;}
.x15{left:734.312400pt;}
}




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