
    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_b0714b0c0fcee8076f889cc4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_05f0e7711bcdfb32739acc1b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_c89f0879b836007f06b20c37.woff')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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);}
.v1{vertical-align:-10.078560px;}
.v0{vertical-align:0.000000px;}
.ls30{letter-spacing:-0.657360px;}
.ls29{letter-spacing:-0.537840px;}
.ls1e{letter-spacing:-0.478080px;}
.ls1f{letter-spacing:-0.418320px;}
.ls1d{letter-spacing:-0.358560px;}
.ls10{letter-spacing:-0.337680px;}
.ls13{letter-spacing:-0.298800px;}
.lsa{letter-spacing:-0.289440px;}
.lsf{letter-spacing:-0.241200px;}
.ls18{letter-spacing:-0.239040px;}
.ls34{letter-spacing:-0.179280px;}
.ls17{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.059760px;}
.lse{letter-spacing:-0.048240px;}
.lsd{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.048240px;}
.ls1b{letter-spacing:0.059760px;}
.ls3{letter-spacing:0.096480px;}
.ls37{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.144720px;}
.ls6{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.192960px;}
.ls8{letter-spacing:0.239040px;}
.ls14{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.337680px;}
.ls16{letter-spacing:0.358560px;}
.ls23{letter-spacing:0.418320px;}
.ls24{letter-spacing:0.478080px;}
.ls36{letter-spacing:0.537840px;}
.ls2c{letter-spacing:0.597600px;}
.ls2a{letter-spacing:0.657360px;}
.ls2{letter-spacing:0.894240px;}
.ls5{letter-spacing:0.896400px;}
.ls2f{letter-spacing:1.015920px;}
.ls22{letter-spacing:1.613520px;}
.ls2d{letter-spacing:2.330640px;}
.ls12{letter-spacing:2.499840px;}
.ls11{letter-spacing:2.968560px;}
.ls9{letter-spacing:3.047760px;}
.ls27{letter-spacing:3.764880px;}
.ls19{letter-spacing:3.884400px;}
.ls20{letter-spacing:4.482000px;}
.ls3a{letter-spacing:4.900320px;}
.ls28{letter-spacing:5.258880px;}
.ls35{letter-spacing:5.677200px;}
.ls7{letter-spacing:5.916240px;}
.ls25{letter-spacing:6.633360px;}
.ls26{letter-spacing:7.350480px;}
.ls2e{letter-spacing:8.784720px;}
.ls1a{letter-spacing:10.278720px;}
.ls38{letter-spacing:10.876320px;}
.ls2b{letter-spacing:13.147200px;}
.ls31{letter-spacing:14.641200px;}
.ls21{letter-spacing:15.298560px;}
.ls33{letter-spacing:16.075440px;}
.ls39{letter-spacing:18.884160px;}
.ls32{letter-spacing:25.398000px;}
.ls1c{letter-spacing:27.549360px;}
.ls4{letter-spacing:345.521520px;}
.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;}
}
.ws5{word-spacing:-37.810080px;}
.wsc1{word-spacing:-13.924080px;}
.ws9{word-spacing:-13.864320px;}
.ws7{word-spacing:-13.804560px;}
.wsa{word-spacing:-13.744800px;}
.ws8{word-spacing:-13.685040px;}
.ws35{word-spacing:-13.565520px;}
.ws6{word-spacing:-13.505760px;}
.ws36{word-spacing:-13.446000px;}
.ws8e{word-spacing:-13.386240px;}
.wsae{word-spacing:-13.326480px;}
.ws34{word-spacing:-13.266720px;}
.ws33{word-spacing:-13.206960px;}
.ws32{word-spacing:-13.147200px;}
.ws3{word-spacing:-10.950480px;}
.ws1{word-spacing:-10.902240px;}
.ws2{word-spacing:-10.661040px;}
.ws0{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.564560px;}
.wsd3{word-spacing:-0.478080px;}
.wsb2{word-spacing:-0.298800px;}
.ws26{word-spacing:-0.239040px;}
.wsb{word-spacing:-0.192960px;}
.ws1a{word-spacing:-0.179280px;}
.ws12{word-spacing:-0.156240px;}
.wsd{word-spacing:-0.144720px;}
.ws15{word-spacing:-0.119520px;}
.ws3e{word-spacing:-0.059760px;}
.wse{word-spacing:-0.048240px;}
.wsc{word-spacing:0.000000px;}
.ws39{word-spacing:0.059760px;}
.ws1b{word-spacing:0.119520px;}
.ws1f{word-spacing:0.179280px;}
.ws14{word-spacing:0.239040px;}
.wsf{word-spacing:0.241200px;}
.ws10{word-spacing:0.289440px;}
.wsd4{word-spacing:0.298800px;}
.ws11{word-spacing:0.337680px;}
.ws82{word-spacing:0.358560px;}
.ws43{word-spacing:0.418320px;}
.ws13{word-spacing:0.478080px;}
.ws50{word-spacing:0.537840px;}
.ws29{word-spacing:0.597600px;}
.ws2a{word-spacing:0.657360px;}
.ws2d{word-spacing:0.717120px;}
.ws2c{word-spacing:0.956160px;}
.ws28{word-spacing:1.135440px;}
.ws7d{word-spacing:1.254960px;}
.ws60{word-spacing:1.314720px;}
.wsd1{word-spacing:1.374480px;}
.ws5c{word-spacing:1.434240px;}
.wsd5{word-spacing:1.553760px;}
.ws6a{word-spacing:1.673280px;}
.ws69{word-spacing:1.852560px;}
.ws9c{word-spacing:1.972080px;}
.ws31{word-spacing:2.031840px;}
.ws52{word-spacing:2.091600px;}
.ws44{word-spacing:2.151360px;}
.ws51{word-spacing:2.390400px;}
.ws75{word-spacing:2.569680px;}
.wsad{word-spacing:2.689200px;}
.ws70{word-spacing:2.748960px;}
.ws71{word-spacing:2.808720px;}
.ws16{word-spacing:2.868480px;}
.ws2f{word-spacing:3.107520px;}
.ws73{word-spacing:3.286800px;}
.ws93{word-spacing:3.406320px;}
.ws40{word-spacing:3.466080px;}
.ws41{word-spacing:3.525840px;}
.ws4f{word-spacing:3.585600px;}
.ws42{word-spacing:3.824640px;}
.ws4c{word-spacing:4.003920px;}
.wsa9{word-spacing:4.123440px;}
.ws3f{word-spacing:4.183200px;}
.wsc8{word-spacing:4.242960px;}
.ws47{word-spacing:4.302720px;}
.ws3d{word-spacing:4.541760px;}
.ws46{word-spacing:4.721040px;}
.wsc2{word-spacing:4.840560px;}
.ws61{word-spacing:4.900320px;}
.ws7b{word-spacing:4.960080px;}
.wsa3{word-spacing:5.019840px;}
.ws96{word-spacing:5.258880px;}
.ws7a{word-spacing:5.438160px;}
.wsb8{word-spacing:5.557680px;}
.ws22{word-spacing:5.617440px;}
.ws98{word-spacing:5.677200px;}
.ws37{word-spacing:5.736960px;}
.ws23{word-spacing:5.976000px;}
.ws8a{word-spacing:6.155280px;}
.ws38{word-spacing:6.274800px;}
.ws20{word-spacing:6.334560px;}
.ws8f{word-spacing:6.394320px;}
.ws1e{word-spacing:6.454080px;}
.ws1d{word-spacing:6.693120px;}
.ws72{word-spacing:6.872400px;}
.ws62{word-spacing:6.991920px;}
.ws84{word-spacing:7.051680px;}
.ws92{word-spacing:7.111440px;}
.ws5a{word-spacing:7.171200px;}
.ws56{word-spacing:7.410240px;}
.ws90{word-spacing:7.589520px;}
.ws5b{word-spacing:7.709040px;}
.ws8c{word-spacing:7.768800px;}
.wsd0{word-spacing:7.828560px;}
.wsb9{word-spacing:7.888320px;}
.wscd{word-spacing:8.007840px;}
.ws74{word-spacing:8.127360px;}
.ws95{word-spacing:8.306640px;}
.ws8d{word-spacing:8.426160px;}
.ws19{word-spacing:8.485920px;}
.ws85{word-spacing:8.545680px;}
.ws68{word-spacing:8.605440px;}
.ws86{word-spacing:8.844480px;}
.ws9f{word-spacing:9.023760px;}
.wsc3{word-spacing:9.143280px;}
.ws6f{word-spacing:9.262800px;}
.wscf{word-spacing:9.322560px;}
.ws7c{word-spacing:9.382320px;}
.ws97{word-spacing:9.621360px;}
.wsa6{word-spacing:9.800640px;}
.ws4a{word-spacing:9.979920px;}
.ws65{word-spacing:10.039680px;}
.ws49{word-spacing:10.099440px;}
.ws64{word-spacing:10.338480px;}
.ws66{word-spacing:10.517760px;}
.wsa2{word-spacing:10.697040px;}
.ws6d{word-spacing:10.756800px;}
.ws1c{word-spacing:10.816560px;}
.ws5f{word-spacing:11.055600px;}
.ws67{word-spacing:11.234880px;}
.ws27{word-spacing:11.414160px;}
.wsca{word-spacing:11.473920px;}
.ws5e{word-spacing:11.533680px;}
.ws59{word-spacing:11.772720px;}
.ws6e{word-spacing:11.952000px;}
.ws5d{word-spacing:12.071520px;}
.ws94{word-spacing:12.131280px;}
.ws7e{word-spacing:12.250800px;}
.ws7f{word-spacing:12.489840px;}
.ws80{word-spacing:12.669120px;}
.ws81{word-spacing:12.848400px;}
.ws17{word-spacing:12.967920px;}
.ws18{word-spacing:13.206960px;}
.wsb3{word-spacing:13.386240px;}
.ws48{word-spacing:13.565520px;}
.ws4b{word-spacing:13.685040px;}
.ws63{word-spacing:13.924080px;}
.wsab{word-spacing:14.103360px;}
.ws58{word-spacing:14.282640px;}
.wsaa{word-spacing:14.402160px;}
.wsac{word-spacing:14.641200px;}
.wsaf{word-spacing:14.820480px;}
.ws83{word-spacing:14.940000px;}
.ws4e{word-spacing:14.999760px;}
.ws6c{word-spacing:15.059520px;}
.ws2e{word-spacing:15.119280px;}
.ws6b{word-spacing:15.358320px;}
.ws4d{word-spacing:15.657120px;}
.ws2b{word-spacing:15.716880px;}
.ws8b{word-spacing:15.836400px;}
.ws87{word-spacing:16.075440px;}
.wsc6{word-spacing:16.374240px;}
.ws45{word-spacing:16.434000px;}
.ws77{word-spacing:16.792560px;}
.wsbf{word-spacing:17.509680px;}
.ws57{word-spacing:17.688960px;}
.wsb4{word-spacing:17.868240px;}
.ws30{word-spacing:17.987760px;}
.ws99{word-spacing:18.226800px;}
.wsa7{word-spacing:18.585360px;}
.wsb7{word-spacing:18.704880px;}
.wsb6{word-spacing:18.943920px;}
.wsa8{word-spacing:19.123200px;}
.wsbc{word-spacing:19.302480px;}
.wsd2{word-spacing:19.362240px;}
.wsa1{word-spacing:19.422000px;}
.wsce{word-spacing:19.661040px;}
.ws76{word-spacing:20.019600px;}
.ws79{word-spacing:21.095280px;}
.ws78{word-spacing:21.274560px;}
.wscc{word-spacing:21.394080px;}
.wsbd{word-spacing:21.453840px;}
.ws9b{word-spacing:21.513600px;}
.wsbe{word-spacing:21.991680px;}
.ws91{word-spacing:22.170960px;}
.wsc4{word-spacing:22.230720px;}
.wsbb{word-spacing:22.529520px;}
.wsc5{word-spacing:22.708800px;}
.ws3c{word-spacing:22.888080px;}
.ws3a{word-spacing:22.947840px;}
.ws3b{word-spacing:23.246640px;}
.wsa4{word-spacing:23.664960px;}
.wsa5{word-spacing:23.724720px;}
.wsb0{word-spacing:24.382080px;}
.wsb1{word-spacing:24.501600px;}
.ws9a{word-spacing:24.740640px;}
.ws25{word-spacing:25.099200px;}
.ws24{word-spacing:25.218720px;}
.wsba{word-spacing:25.637040px;}
.wsc9{word-spacing:26.174880px;}
.wsb5{word-spacing:26.892000px;}
.ws54{word-spacing:27.310320px;}
.ws53{word-spacing:27.788400px;}
.wsc0{word-spacing:27.967680px;}
.wsa0{word-spacing:30.836160px;}
.wsc7{word-spacing:33.107040px;}
.ws9d{word-spacing:33.704640px;}
.ws9e{word-spacing:33.824160px;}
.wscb{word-spacing:36.573120px;}
.ws21{word-spacing:48.106800px;}
.ws88{word-spacing:66.811680px;}
.ws89{word-spacing:67.349520px;}
.ws55{word-spacing:97.050240px;}
._2{margin-left:-2.656080px;}
._1{margin-left:-1.543680px;}
._0{width:1.591920px;}
._3{width:3.720240px;}
._4{width:5.780160px;}
._6{width:7.551360px;}
._5{width:18.465840px;}
._8{width:21.991680px;}
._7{width:25.058160px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.440000px;}
.y5{bottom:74.880000px;}
.y12b{bottom:111.600000px;}
.y180{bottom:117.180000px;}
.y7f{bottom:118.260000px;}
.y139{bottom:123.120000px;}
.y10e{bottom:123.300000px;}
.y12a{bottom:129.960000px;}
.y15d{bottom:131.760000px;}
.yea{bottom:133.200000px;}
.y7e{bottom:136.620000px;}
.y28{bottom:138.420000px;}
.yb8{bottom:139.680000px;}
.y53{bottom:139.860000px;}
.y10d{bottom:141.660000px;}
.y17f{bottom:144.360000px;}
.ya1{bottom:146.340000px;}
.y147{bottom:148.320000px;}
.y15c{bottom:150.120000px;}
.ye9{bottom:151.560000px;}
.y7d{bottom:154.800000px;}
.y27{bottom:156.960000px;}
.y52{bottom:158.220000px;}
.y10c{bottom:160.020000px;}
.y129{bottom:163.080000px;}
.ya0{bottom:164.880000px;}
.y146{bottom:166.500000px;}
.ye8{bottom:169.920000px;}
.y17e{bottom:171.720000px;}
.yc9{bottom:173.160000px;}
.y26{bottom:175.140000px;}
.y51{bottom:176.400000px;}
.y15b{bottom:177.480000px;}
.y10b{bottom:178.200000px;}
.y128{bottom:181.620000px;}
.y9f{bottom:183.060000px;}
.y145{bottom:184.860000px;}
.y7c{bottom:187.920000px;}
.ye7{bottom:188.100000px;}
.y17d{bottom:190.080000px;}
.ydb{bottom:191.520000px;}
.y25{bottom:193.500000px;}
.y50{bottom:194.760000px;}
.y10a{bottom:196.560000px;}
.y127{bottom:199.800000px;}
.y9e{bottom:201.420000px;}
.y144{bottom:203.220000px;}
.y15a{bottom:204.660000px;}
.yc8{bottom:206.280000px;}
.y7b{bottom:206.460000px;}
.yda{bottom:209.880000px;}
.y24{bottom:211.860000px;}
.y4f{bottom:213.120000px;}
.y109{bottom:214.920000px;}
.y17c{bottom:217.440000px;}
.y126{bottom:218.160000px;}
.y9d{bottom:219.780000px;}
.y143{bottom:221.400000px;}
.y7a{bottom:224.820000px;}
.yb7{bottom:227.880000px;}
.yd9{bottom:228.060000px;}
.y4e{bottom:231.480000px;}
.y108{bottom:233.100000px;}
.y17b{bottom:235.620000px;}
.y125{bottom:236.520000px;}
.y159{bottom:237.780000px;}
.y9c{bottom:237.960000px;}
.y142{bottom:239.760000px;}
.y79{bottom:243.180000px;}
.y23{bottom:244.980000px;}
.yb6{bottom:246.420000px;}
.y107{bottom:251.460000px;}
.y124{bottom:254.880000px;}
.yd8{bottom:261.180000px;}
.y78{bottom:261.360000px;}
.y17a{bottom:262.980000px;}
.y22{bottom:263.520000px;}
.y4d{bottom:264.600000px;}
.yb5{bottom:264.780000px;}
.y106{bottom:269.820000px;}
.y9b{bottom:271.260000px;}
.y141{bottom:272.880000px;}
.y123{bottom:273.060000px;}
.ye6{bottom:276.300000px;}
.yc7{bottom:279.720000px;}
.y21{bottom:281.700000px;}
.y4c{bottom:282.960000px;}
.y105{bottom:288.180000px;}
.y9a{bottom:289.620000px;}
.y179{bottom:290.340000px;}
.y122{bottom:291.420000px;}
.y77{bottom:294.480000px;}
.ye5{bottom:294.660000px;}
.ye0{bottom:297.900000px;}
.yc6{bottom:298.080000px;}
.y20{bottom:300.060000px;}
.y4b{bottom:301.320000px;}
.y104{bottom:306.360000px;}
.y99{bottom:307.980000px;}
.y121{bottom:309.780000px;}
.y76{bottom:313.020000px;}
.yc5{bottom:316.440000px;}
.y178{bottom:317.520000px;}
.y1f{bottom:318.420000px;}
.y4a{bottom:319.680000px;}
.y103{bottom:324.720000px;}
.y98{bottom:326.340000px;}
.y120{bottom:327.960000px;}
.ydf{bottom:331.200000px;}
.y75{bottom:331.380000px;}
.yc4{bottom:334.620000px;}
.y177{bottom:335.880000px;}
.y1e{bottom:336.780000px;}
.y49{bottom:338.040000px;}
.y138{bottom:339.480000px;}
.y158{bottom:341.100000px;}
.y102{bottom:343.080000px;}
.y97{bottom:344.520000px;}
.y11f{bottom:346.320000px;}
.yd7{bottom:349.560000px;}
.y74{bottom:349.740000px;}
.yc3{bottom:352.980000px;}
.y1d{bottom:354.960000px;}
.y137{bottom:358.020000px;}
.y101{bottom:361.440000px;}
.y96{bottom:362.880000px;}
.y176{bottom:363.240000px;}
.y11e{bottom:364.680000px;}
.yd6{bottom:367.920000px;}
.y48{bottom:371.160000px;}
.y1c{bottom:373.320000px;}
.y157{bottom:374.400000px;}
.y136{bottom:376.380000px;}
.y100{bottom:379.620000px;}
.y175{bottom:381.600000px;}
.y73{bottom:382.860000px;}
.y140{bottom:383.040000px;}
.yc2{bottom:386.100150px;}
.yd5{bottom:386.280150px;}
.y47{bottom:389.520150px;}
.y156{bottom:392.940150px;}
.y135{bottom:394.740000px;}
.y95{bottom:396.000000px;}
.y11d{bottom:397.800000px;}
.y72{bottom:401.220000px;}
.yc1{bottom:404.640000px;}
.y1b{bottom:406.440150px;}
.y46{bottom:407.880000px;}
.y174{bottom:408.780150px;}
.yff{bottom:412.740000px;}
.y134{bottom:412.920000px;}
.y94{bottom:414.540000px;}
.y11c{bottom:416.340000px;}
.y71{bottom:419.580000px;}
.yc0{bottom:422.820000px;}
.y1a{bottom:424.980000px;}
.y155{bottom:426.060000px;}
.y45{bottom:426.240000px;}
.y173{bottom:427.140000px;}
.yfe{bottom:431.280150px;}
.y93{bottom:432.900000px;}
.y11b{bottom:434.520150px;}
.yd4{bottom:437.760000px;}
.y70{bottom:437.940150px;}
.yb4{bottom:441.000000px;}
.ybf{bottom:441.180150px;}
.y19{bottom:443.340000px;}
.y44{bottom:444.600150px;}
.yfd{bottom:449.640000px;}
.y92{bottom:451.080000px;}
.y13f{bottom:452.700000px;}
.y11a{bottom:452.880000px;}
.y172{bottom:454.500000px;}
.y6f{bottom:456.300000px;}
.yb3{bottom:459.540000px;}
.y18{bottom:461.520150px;}
.y43{bottom:462.780150px;}
.yfc{bottom:467.820000px;}
.y91{bottom:469.440150px;}
.y119{bottom:471.240000px;}
.y171{bottom:472.680150px;}
.ye4{bottom:474.300000px;}
.y6e{bottom:474.480000px;}
.yb2{bottom:477.900000px;}
.y42{bottom:481.140000px;}
.yfb{bottom:486.180150px;}
.y90{bottom:487.800000px;}
.y118{bottom:489.600150px;}
.y6d{bottom:492.840000px;}
.y17{bottom:494.640000px;}
.ybe{bottom:496.080000px;}
.y154{bottom:499.500000px;}
.y170{bottom:500.040000px;}
.y193{bottom:503.460000px;}
.yfa{bottom:504.540000px;}
.y8f{bottom:506.160000px;}
.y13e{bottom:507.780150px;}
.yb1{bottom:511.020150px;}
.y6c{bottom:511.200000px;}
.y41{bottom:514.260000px;}
.ybd{bottom:514.440150px;}
.y153{bottom:517.680000px;}
.y16f{bottom:518.400000px;}
.y117{bottom:522.720000px;}
.yf9{bottom:522.900000px;}
.y8e{bottom:524.340000px;}
.y16{bottom:527.940150px;}
.y6b{bottom:529.380000px;}
.y40{bottom:532.800000px;}
.y192{bottom:536.760000px;}
.y13d{bottom:540.900000px;}
.yf8{bottom:541.080000px;}
.yd3{bottom:544.320000px;}
.y16e{bottom:545.760000px;}
.y6a{bottom:547.740000px;}
.y152{bottom:550.980000px;}
.y3f{bottom:551.160000px;}
.y8d{bottom:557.460000px;}
.yf7{bottom:559.440150px;}
.y15{bottom:561.240000px;}
.yd2{bottom:562.680000px;}
.ybc{bottom:565.920000px;}
.yb0{bottom:566.100150px;}
.y3e{bottom:569.340000px;}
.y191{bottom:570.060000px;}
.y16d{bottom:572.940150px;}
.y8c{bottom:576.000000px;}
.yf6{bottom:577.800000px;}
.y14{bottom:579.780150px;}
.y69{bottom:580.860150px;}
.yd1{bottom:581.040000px;}
.yaf{bottom:584.460000px;}
.y3d{bottom:587.700000px;}
.y8b{bottom:594.360150px;}
.yf5{bottom:596.160000px;}
.y13{bottom:598.140000px;}
.y68{bottom:599.400000px;}
.y16c{bottom:600.300000px;}
.yae{bottom:602.640000px;}
.y190{bottom:603.540000px;}
.y151{bottom:606.060000px;}
.y116{bottom:610.920000px;}
.yf4{bottom:614.340000px;}
.y12{bottom:616.500000px;}
.y67{bottom:617.760000px;}
.y16b{bottom:618.660000px;}
.y3c{bottom:620.820000px;}
.yad{bottom:621.000000px;}
.y150{bottom:624.240000px;}
.y8a{bottom:627.480000px;}
.y115{bottom:629.460000px;}
.yf3{bottom:632.700000px;}
.y66{bottom:635.940150px;}
.y18f{bottom:637.020150px;}
.y3b{bottom:639.360150px;}
.y14f{bottom:642.600000px;}
.y89{bottom:646.020150px;}
.y13c{bottom:647.460000px;}
.y114{bottom:647.640000px;}
.y11{bottom:649.620000px;}
.yf2{bottom:651.060000px;}
.y65{bottom:654.300000px;}
.y18e{bottom:655.200000px;}
.y3a{bottom:657.720000px;}
.y14e{bottom:660.960000px;}
.y88{bottom:664.200000px;}
.y113{bottom:666.000000px;}
.y133{bottom:669.240000px;}
.yac{bottom:672.480000px;}
.yd0{bottom:672.660000px;}
.y16a{bottom:673.200000px;}
.y39{bottom:675.900000px;}
.y14d{bottom:679.320000px;}
.y18d{bottom:682.560000px;}
.y10{bottom:682.920000px;}
.yf1{bottom:684.180000px;}
.y112{bottom:684.360150px;}
.y64{bottom:687.420000px;}
.y132{bottom:687.600000px;}
.ybb{bottom:690.840000px;}
.yab{bottom:691.020000px;}
.y38{bottom:694.260000px;}
.y87{bottom:697.320000px;}
.y169{bottom:700.560000px;}
.y18c{bottom:700.920000px;}
.yf0{bottom:702.720000px;}
.ycf{bottom:705.780150px;}
.y63{bottom:705.960000px;}
.yaa{bottom:709.200000px;}
.y14c{bottom:712.440150px;}
.y37{bottom:712.620000px;}
.y86{bottom:715.860150px;}
.yf{bottom:716.220000px;}
.y168{bottom:718.920000px;}
.y131{bottom:720.720000px;}
.yef{bottom:720.900000px;}
.yde{bottom:724.140000px;}
.y62{bottom:724.320000px;}
.ya9{bottom:727.560000px;}
.y18b{bottom:728.100000px;}
.y36{bottom:730.800000px;}
.y85{bottom:734.220000px;}
.ye{bottom:734.760000px;}
.yee{bottom:739.260000px;}
.yba{bottom:742.320000px;}
.y61{bottom:742.500000px;}
.ya8{bottom:745.920000px;}
.y167{bottom:746.100000px;}
.y18a{bottom:746.460000px;}
.y14b{bottom:749.160000px;}
.yd{bottom:752.940000px;}
.yed{bottom:757.620000px;}
.y60{bottom:760.860150px;}
.y35{bottom:763.920000px;}
.ya7{bottom:764.100000px;}
.y84{bottom:767.340000px;}
.y14a{bottom:767.520000px;}
.yc{bottom:771.300000px;}
.y166{bottom:773.460000px;}
.y189{bottom:773.820000px;}
.yec{bottom:775.800000px;}
.y5f{bottom:779.220000px;}
.y34{bottom:782.460000px;}
.y83{bottom:785.880000px;}
.y165{bottom:791.820000px;}
.yce{bottom:793.980000px;}
.yeb{bottom:794.160000px;}
.ya6{bottom:797.400000px;}
.y5e{bottom:797.580000px;}
.y33{bottom:800.820000px;}
.y188{bottom:801.180000px;}
.y82{bottom:804.060000px;}
.yb{bottom:804.420000px;}
.y13b{bottom:808.920000px;}
.ycd{bottom:812.520000px;}
.y5d{bottom:815.760000px;}
.y32{bottom:819.180000px;}
.y130{bottom:827.280000px;}
.y13a{bottom:827.460000px;}
.y187{bottom:828.360000px;}
.ycc{bottom:830.880000px;}
.y5c{bottom:834.120000px;}
.y81{bottom:837.180000px;}
.y31{bottom:837.360000px;}
.ya{bottom:840.600000px;}
.y12f{bottom:845.820000px;}
.y164{bottom:846.360000px;}
.y186{bottom:846.720000px;}
.ycb{bottom:849.060000px;}
.ydd{bottom:852.480000px;}
.y30{bottom:855.720000px;}
.y12e{bottom:864.180000px;}
.y163{bottom:864.720000px;}
.y5b{bottom:867.240000px;}
.yca{bottom:867.420000px;}
.ye3{bottom:870.660000px;}
.y149{bottom:874.080000px;}
.y12d{bottom:882.360000px;}
.ydc{bottom:885.600000px;}
.y5a{bottom:885.780000px;}
.y9{bottom:887.573880px;}
.y2f{bottom:888.840000px;}
.ye2{bottom:889.020000px;}
.y162{bottom:892.080000px;}
.y185{bottom:892.440000px;}
.y111{bottom:900.540000px;}
.y12c{bottom:900.720000px;}
.y59{bottom:903.960000px;}
.y148{bottom:907.200000px;}
.y2e{bottom:907.380000px;}
.y110{bottom:919.080000px;}
.y161{bottom:919.440000px;}
.y184{bottom:919.620000px;}
.ye1{bottom:922.140000px;}
.y58{bottom:922.320000px;}
.y2d{bottom:925.740000px;}
.ya5{bottom:937.260000px;}
.y10f{bottom:937.440000px;}
.y160{bottom:937.620000px;}
.y80{bottom:940.500000px;}
.y57{bottom:940.680000px;}
.y8{bottom:942.296940px;}
.y183{bottom:946.980000px;}
.ya4{bottom:955.620000px;}
.y2c{bottom:958.860000px;}
.y56{bottom:959.040000px;}
.y15f{bottom:964.980000px;}
.yb9{bottom:973.800000px;}
.ya3{bottom:973.980000px;}
.y182{bottom:974.340000px;}
.y55{bottom:977.220000px;}
.y15e{bottom:983.340000px;}
.y2b{bottom:992.160000px;}
.ya2{bottom:992.340000px;}
.y7{bottom:997.020000px;}
.y181{bottom:1001.520000px;}
.y54{bottom:1010.340000px;}
.y2a{bottom:1010.520000px;}
.y29{bottom:1028.880000px;}
.y4{bottom:1049.940000px;}
.y3{bottom:1085.399640px;}
.y2{bottom:1102.319820px;}
.y1{bottom:1119.240000px;}
.h2{height:39.783867px;}
.h4{height:40.968281px;}
.h1{height:49.284492px;}
.h3{height:128.852227px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:106.380000px;}
.x1{left:396.180000px;}
.x3{left:530.088840px;}
.x2{left:593.102340px;}
.x5{left:774.360000px;}
@media print{
.v1{vertical-align:-8.958720pt;}
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.584320pt;}
.ls29{letter-spacing:-0.478080pt;}
.ls1e{letter-spacing:-0.424960pt;}
.ls1f{letter-spacing:-0.371840pt;}
.ls1d{letter-spacing:-0.318720pt;}
.ls10{letter-spacing:-0.300160pt;}
.ls13{letter-spacing:-0.265600pt;}
.lsa{letter-spacing:-0.257280pt;}
.lsf{letter-spacing:-0.214400pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls34{letter-spacing:-0.159360pt;}
.ls17{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.053120pt;}
.lse{letter-spacing:-0.042880pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.042880pt;}
.ls1b{letter-spacing:0.053120pt;}
.ls3{letter-spacing:0.085760pt;}
.ls37{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.128640pt;}
.ls6{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.171520pt;}
.ls8{letter-spacing:0.212480pt;}
.ls14{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.300160pt;}
.ls16{letter-spacing:0.318720pt;}
.ls23{letter-spacing:0.371840pt;}
.ls24{letter-spacing:0.424960pt;}
.ls36{letter-spacing:0.478080pt;}
.ls2c{letter-spacing:0.531200pt;}
.ls2a{letter-spacing:0.584320pt;}
.ls2{letter-spacing:0.794880pt;}
.ls5{letter-spacing:0.796800pt;}
.ls2f{letter-spacing:0.903040pt;}
.ls22{letter-spacing:1.434240pt;}
.ls2d{letter-spacing:2.071680pt;}
.ls12{letter-spacing:2.222080pt;}
.ls11{letter-spacing:2.638720pt;}
.ls9{letter-spacing:2.709120pt;}
.ls27{letter-spacing:3.346560pt;}
.ls19{letter-spacing:3.452800pt;}
.ls20{letter-spacing:3.984000pt;}
.ls3a{letter-spacing:4.355840pt;}
.ls28{letter-spacing:4.674560pt;}
.ls35{letter-spacing:5.046400pt;}
.ls7{letter-spacing:5.258880pt;}
.ls25{letter-spacing:5.896320pt;}
.ls26{letter-spacing:6.533760pt;}
.ls2e{letter-spacing:7.808640pt;}
.ls1a{letter-spacing:9.136640pt;}
.ls38{letter-spacing:9.667840pt;}
.ls2b{letter-spacing:11.686400pt;}
.ls31{letter-spacing:13.014400pt;}
.ls21{letter-spacing:13.598720pt;}
.ls33{letter-spacing:14.289280pt;}
.ls39{letter-spacing:16.785920pt;}
.ls32{letter-spacing:22.576000pt;}
.ls1c{letter-spacing:24.488320pt;}
.ls4{letter-spacing:307.130240pt;}
.ws5{word-spacing:-33.608960pt;}
.wsc1{word-spacing:-12.376960pt;}
.ws9{word-spacing:-12.323840pt;}
.ws7{word-spacing:-12.270720pt;}
.wsa{word-spacing:-12.217600pt;}
.ws8{word-spacing:-12.164480pt;}
.ws35{word-spacing:-12.058240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws36{word-spacing:-11.952000pt;}
.ws8e{word-spacing:-11.898880pt;}
.wsae{word-spacing:-11.845760pt;}
.ws34{word-spacing:-11.792640pt;}
.ws33{word-spacing:-11.739520pt;}
.ws32{word-spacing:-11.686400pt;}
.ws3{word-spacing:-9.733760pt;}
.ws1{word-spacing:-9.690880pt;}
.ws2{word-spacing:-9.476480pt;}
.ws0{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.390720pt;}
.wsd3{word-spacing:-0.424960pt;}
.wsb2{word-spacing:-0.265600pt;}
.ws26{word-spacing:-0.212480pt;}
.wsb{word-spacing:-0.171520pt;}
.ws1a{word-spacing:-0.159360pt;}
.ws12{word-spacing:-0.138880pt;}
.wsd{word-spacing:-0.128640pt;}
.ws15{word-spacing:-0.106240pt;}
.ws3e{word-spacing:-0.053120pt;}
.wse{word-spacing:-0.042880pt;}
.wsc{word-spacing:0.000000pt;}
.ws39{word-spacing:0.053120pt;}
.ws1b{word-spacing:0.106240pt;}
.ws1f{word-spacing:0.159360pt;}
.ws14{word-spacing:0.212480pt;}
.wsf{word-spacing:0.214400pt;}
.ws10{word-spacing:0.257280pt;}
.wsd4{word-spacing:0.265600pt;}
.ws11{word-spacing:0.300160pt;}
.ws82{word-spacing:0.318720pt;}
.ws43{word-spacing:0.371840pt;}
.ws13{word-spacing:0.424960pt;}
.ws50{word-spacing:0.478080pt;}
.ws29{word-spacing:0.531200pt;}
.ws2a{word-spacing:0.584320pt;}
.ws2d{word-spacing:0.637440pt;}
.ws2c{word-spacing:0.849920pt;}
.ws28{word-spacing:1.009280pt;}
.ws7d{word-spacing:1.115520pt;}
.ws60{word-spacing:1.168640pt;}
.wsd1{word-spacing:1.221760pt;}
.ws5c{word-spacing:1.274880pt;}
.wsd5{word-spacing:1.381120pt;}
.ws6a{word-spacing:1.487360pt;}
.ws69{word-spacing:1.646720pt;}
.ws9c{word-spacing:1.752960pt;}
.ws31{word-spacing:1.806080pt;}
.ws52{word-spacing:1.859200pt;}
.ws44{word-spacing:1.912320pt;}
.ws51{word-spacing:2.124800pt;}
.ws75{word-spacing:2.284160pt;}
.wsad{word-spacing:2.390400pt;}
.ws70{word-spacing:2.443520pt;}
.ws71{word-spacing:2.496640pt;}
.ws16{word-spacing:2.549760pt;}
.ws2f{word-spacing:2.762240pt;}
.ws73{word-spacing:2.921600pt;}
.ws93{word-spacing:3.027840pt;}
.ws40{word-spacing:3.080960pt;}
.ws41{word-spacing:3.134080pt;}
.ws4f{word-spacing:3.187200pt;}
.ws42{word-spacing:3.399680pt;}
.ws4c{word-spacing:3.559040pt;}
.wsa9{word-spacing:3.665280pt;}
.ws3f{word-spacing:3.718400pt;}
.wsc8{word-spacing:3.771520pt;}
.ws47{word-spacing:3.824640pt;}
.ws3d{word-spacing:4.037120pt;}
.ws46{word-spacing:4.196480pt;}
.wsc2{word-spacing:4.302720pt;}
.ws61{word-spacing:4.355840pt;}
.ws7b{word-spacing:4.408960pt;}
.wsa3{word-spacing:4.462080pt;}
.ws96{word-spacing:4.674560pt;}
.ws7a{word-spacing:4.833920pt;}
.wsb8{word-spacing:4.940160pt;}
.ws22{word-spacing:4.993280pt;}
.ws98{word-spacing:5.046400pt;}
.ws37{word-spacing:5.099520pt;}
.ws23{word-spacing:5.312000pt;}
.ws8a{word-spacing:5.471360pt;}
.ws38{word-spacing:5.577600pt;}
.ws20{word-spacing:5.630720pt;}
.ws8f{word-spacing:5.683840pt;}
.ws1e{word-spacing:5.736960pt;}
.ws1d{word-spacing:5.949440pt;}
.ws72{word-spacing:6.108800pt;}
.ws62{word-spacing:6.215040pt;}
.ws84{word-spacing:6.268160pt;}
.ws92{word-spacing:6.321280pt;}
.ws5a{word-spacing:6.374400pt;}
.ws56{word-spacing:6.586880pt;}
.ws90{word-spacing:6.746240pt;}
.ws5b{word-spacing:6.852480pt;}
.ws8c{word-spacing:6.905600pt;}
.wsd0{word-spacing:6.958720pt;}
.wsb9{word-spacing:7.011840pt;}
.wscd{word-spacing:7.118080pt;}
.ws74{word-spacing:7.224320pt;}
.ws95{word-spacing:7.383680pt;}
.ws8d{word-spacing:7.489920pt;}
.ws19{word-spacing:7.543040pt;}
.ws85{word-spacing:7.596160pt;}
.ws68{word-spacing:7.649280pt;}
.ws86{word-spacing:7.861760pt;}
.ws9f{word-spacing:8.021120pt;}
.wsc3{word-spacing:8.127360pt;}
.ws6f{word-spacing:8.233600pt;}
.wscf{word-spacing:8.286720pt;}
.ws7c{word-spacing:8.339840pt;}
.ws97{word-spacing:8.552320pt;}
.wsa6{word-spacing:8.711680pt;}
.ws4a{word-spacing:8.871040pt;}
.ws65{word-spacing:8.924160pt;}
.ws49{word-spacing:8.977280pt;}
.ws64{word-spacing:9.189760pt;}
.ws66{word-spacing:9.349120pt;}
.wsa2{word-spacing:9.508480pt;}
.ws6d{word-spacing:9.561600pt;}
.ws1c{word-spacing:9.614720pt;}
.ws5f{word-spacing:9.827200pt;}
.ws67{word-spacing:9.986560pt;}
.ws27{word-spacing:10.145920pt;}
.wsca{word-spacing:10.199040pt;}
.ws5e{word-spacing:10.252160pt;}
.ws59{word-spacing:10.464640pt;}
.ws6e{word-spacing:10.624000pt;}
.ws5d{word-spacing:10.730240pt;}
.ws94{word-spacing:10.783360pt;}
.ws7e{word-spacing:10.889600pt;}
.ws7f{word-spacing:11.102080pt;}
.ws80{word-spacing:11.261440pt;}
.ws81{word-spacing:11.420800pt;}
.ws17{word-spacing:11.527040pt;}
.ws18{word-spacing:11.739520pt;}
.wsb3{word-spacing:11.898880pt;}
.ws48{word-spacing:12.058240pt;}
.ws4b{word-spacing:12.164480pt;}
.ws63{word-spacing:12.376960pt;}
.wsab{word-spacing:12.536320pt;}
.ws58{word-spacing:12.695680pt;}
.wsaa{word-spacing:12.801920pt;}
.wsac{word-spacing:13.014400pt;}
.wsaf{word-spacing:13.173760pt;}
.ws83{word-spacing:13.280000pt;}
.ws4e{word-spacing:13.333120pt;}
.ws6c{word-spacing:13.386240pt;}
.ws2e{word-spacing:13.439360pt;}
.ws6b{word-spacing:13.651840pt;}
.ws4d{word-spacing:13.917440pt;}
.ws2b{word-spacing:13.970560pt;}
.ws8b{word-spacing:14.076800pt;}
.ws87{word-spacing:14.289280pt;}
.wsc6{word-spacing:14.554880pt;}
.ws45{word-spacing:14.608000pt;}
.ws77{word-spacing:14.926720pt;}
.wsbf{word-spacing:15.564160pt;}
.ws57{word-spacing:15.723520pt;}
.wsb4{word-spacing:15.882880pt;}
.ws30{word-spacing:15.989120pt;}
.ws99{word-spacing:16.201600pt;}
.wsa7{word-spacing:16.520320pt;}
.wsb7{word-spacing:16.626560pt;}
.wsb6{word-spacing:16.839040pt;}
.wsa8{word-spacing:16.998400pt;}
.wsbc{word-spacing:17.157760pt;}
.wsd2{word-spacing:17.210880pt;}
.wsa1{word-spacing:17.264000pt;}
.wsce{word-spacing:17.476480pt;}
.ws76{word-spacing:17.795200pt;}
.ws79{word-spacing:18.751360pt;}
.ws78{word-spacing:18.910720pt;}
.wscc{word-spacing:19.016960pt;}
.wsbd{word-spacing:19.070080pt;}
.ws9b{word-spacing:19.123200pt;}
.wsbe{word-spacing:19.548160pt;}
.ws91{word-spacing:19.707520pt;}
.wsc4{word-spacing:19.760640pt;}
.wsbb{word-spacing:20.026240pt;}
.wsc5{word-spacing:20.185600pt;}
.ws3c{word-spacing:20.344960pt;}
.ws3a{word-spacing:20.398080pt;}
.ws3b{word-spacing:20.663680pt;}
.wsa4{word-spacing:21.035520pt;}
.wsa5{word-spacing:21.088640pt;}
.wsb0{word-spacing:21.672960pt;}
.wsb1{word-spacing:21.779200pt;}
.ws9a{word-spacing:21.991680pt;}
.ws25{word-spacing:22.310400pt;}
.ws24{word-spacing:22.416640pt;}
.wsba{word-spacing:22.788480pt;}
.wsc9{word-spacing:23.266560pt;}
.wsb5{word-spacing:23.904000pt;}
.ws54{word-spacing:24.275840pt;}
.ws53{word-spacing:24.700800pt;}
.wsc0{word-spacing:24.860160pt;}
.wsa0{word-spacing:27.409920pt;}
.wsc7{word-spacing:29.428480pt;}
.ws9d{word-spacing:29.959680pt;}
.ws9e{word-spacing:30.065920pt;}
.wscb{word-spacing:32.509440pt;}
.ws21{word-spacing:42.761600pt;}
.ws88{word-spacing:59.388160pt;}
.ws89{word-spacing:59.866240pt;}
.ws55{word-spacing:86.266880pt;}
._2{margin-left:-2.360960pt;}
._1{margin-left:-1.372160pt;}
._0{width:1.415040pt;}
._3{width:3.306880pt;}
._4{width:5.137920pt;}
._6{width:6.712320pt;}
._5{width:16.414080pt;}
._8{width:19.548160pt;}
._7{width:22.273920pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.280000pt;}
.y5{bottom:66.560000pt;}
.y12b{bottom:99.200000pt;}
.y180{bottom:104.160000pt;}
.y7f{bottom:105.120000pt;}
.y139{bottom:109.440000pt;}
.y10e{bottom:109.600000pt;}
.y12a{bottom:115.520000pt;}
.y15d{bottom:117.120000pt;}
.yea{bottom:118.400000pt;}
.y7e{bottom:121.440000pt;}
.y28{bottom:123.040000pt;}
.yb8{bottom:124.160000pt;}
.y53{bottom:124.320000pt;}
.y10d{bottom:125.920000pt;}
.y17f{bottom:128.320000pt;}
.ya1{bottom:130.080000pt;}
.y147{bottom:131.840000pt;}
.y15c{bottom:133.440000pt;}
.ye9{bottom:134.720000pt;}
.y7d{bottom:137.600000pt;}
.y27{bottom:139.520000pt;}
.y52{bottom:140.640000pt;}
.y10c{bottom:142.240000pt;}
.y129{bottom:144.960000pt;}
.ya0{bottom:146.560000pt;}
.y146{bottom:148.000000pt;}
.ye8{bottom:151.040000pt;}
.y17e{bottom:152.640000pt;}
.yc9{bottom:153.920000pt;}
.y26{bottom:155.680000pt;}
.y51{bottom:156.800000pt;}
.y15b{bottom:157.760000pt;}
.y10b{bottom:158.400000pt;}
.y128{bottom:161.440000pt;}
.y9f{bottom:162.720000pt;}
.y145{bottom:164.320000pt;}
.y7c{bottom:167.040000pt;}
.ye7{bottom:167.200000pt;}
.y17d{bottom:168.960000pt;}
.ydb{bottom:170.240000pt;}
.y25{bottom:172.000000pt;}
.y50{bottom:173.120000pt;}
.y10a{bottom:174.720000pt;}
.y127{bottom:177.600000pt;}
.y9e{bottom:179.040000pt;}
.y144{bottom:180.640000pt;}
.y15a{bottom:181.920000pt;}
.yc8{bottom:183.360000pt;}
.y7b{bottom:183.520000pt;}
.yda{bottom:186.560000pt;}
.y24{bottom:188.320000pt;}
.y4f{bottom:189.440000pt;}
.y109{bottom:191.040000pt;}
.y17c{bottom:193.280000pt;}
.y126{bottom:193.920000pt;}
.y9d{bottom:195.360000pt;}
.y143{bottom:196.800000pt;}
.y7a{bottom:199.840000pt;}
.yb7{bottom:202.560000pt;}
.yd9{bottom:202.720000pt;}
.y4e{bottom:205.760000pt;}
.y108{bottom:207.200000pt;}
.y17b{bottom:209.440000pt;}
.y125{bottom:210.240000pt;}
.y159{bottom:211.360000pt;}
.y9c{bottom:211.520000pt;}
.y142{bottom:213.120000pt;}
.y79{bottom:216.160000pt;}
.y23{bottom:217.760000pt;}
.yb6{bottom:219.040000pt;}
.y107{bottom:223.520000pt;}
.y124{bottom:226.560000pt;}
.yd8{bottom:232.160000pt;}
.y78{bottom:232.320000pt;}
.y17a{bottom:233.760000pt;}
.y22{bottom:234.240000pt;}
.y4d{bottom:235.200000pt;}
.yb5{bottom:235.360000pt;}
.y106{bottom:239.840000pt;}
.y9b{bottom:241.120000pt;}
.y141{bottom:242.560000pt;}
.y123{bottom:242.720000pt;}
.ye6{bottom:245.600000pt;}
.yc7{bottom:248.640000pt;}
.y21{bottom:250.400000pt;}
.y4c{bottom:251.520000pt;}
.y105{bottom:256.160000pt;}
.y9a{bottom:257.440000pt;}
.y179{bottom:258.080000pt;}
.y122{bottom:259.040000pt;}
.y77{bottom:261.760000pt;}
.ye5{bottom:261.920000pt;}
.ye0{bottom:264.800000pt;}
.yc6{bottom:264.960000pt;}
.y20{bottom:266.720000pt;}
.y4b{bottom:267.840000pt;}
.y104{bottom:272.320000pt;}
.y99{bottom:273.760000pt;}
.y121{bottom:275.360000pt;}
.y76{bottom:278.240000pt;}
.yc5{bottom:281.280000pt;}
.y178{bottom:282.240000pt;}
.y1f{bottom:283.040000pt;}
.y4a{bottom:284.160000pt;}
.y103{bottom:288.640000pt;}
.y98{bottom:290.080000pt;}
.y120{bottom:291.520000pt;}
.ydf{bottom:294.400000pt;}
.y75{bottom:294.560000pt;}
.yc4{bottom:297.440000pt;}
.y177{bottom:298.560000pt;}
.y1e{bottom:299.360000pt;}
.y49{bottom:300.480000pt;}
.y138{bottom:301.760000pt;}
.y158{bottom:303.200000pt;}
.y102{bottom:304.960000pt;}
.y97{bottom:306.240000pt;}
.y11f{bottom:307.840000pt;}
.yd7{bottom:310.720000pt;}
.y74{bottom:310.880000pt;}
.yc3{bottom:313.760000pt;}
.y1d{bottom:315.520000pt;}
.y137{bottom:318.240000pt;}
.y101{bottom:321.280000pt;}
.y96{bottom:322.560000pt;}
.y176{bottom:322.880000pt;}
.y11e{bottom:324.160000pt;}
.yd6{bottom:327.040000pt;}
.y48{bottom:329.920000pt;}
.y1c{bottom:331.840000pt;}
.y157{bottom:332.800000pt;}
.y136{bottom:334.560000pt;}
.y100{bottom:337.440000pt;}
.y175{bottom:339.200000pt;}
.y73{bottom:340.320000pt;}
.y140{bottom:340.480000pt;}
.yc2{bottom:343.200133pt;}
.yd5{bottom:343.360133pt;}
.y47{bottom:346.240133pt;}
.y156{bottom:349.280133pt;}
.y135{bottom:350.880000pt;}
.y95{bottom:352.000000pt;}
.y11d{bottom:353.600000pt;}
.y72{bottom:356.640000pt;}
.yc1{bottom:359.680000pt;}
.y1b{bottom:361.280133pt;}
.y46{bottom:362.560000pt;}
.y174{bottom:363.360133pt;}
.yff{bottom:366.880000pt;}
.y134{bottom:367.040000pt;}
.y94{bottom:368.480000pt;}
.y11c{bottom:370.080000pt;}
.y71{bottom:372.960000pt;}
.yc0{bottom:375.840000pt;}
.y1a{bottom:377.760000pt;}
.y155{bottom:378.720000pt;}
.y45{bottom:378.880000pt;}
.y173{bottom:379.680000pt;}
.yfe{bottom:383.360133pt;}
.y93{bottom:384.800000pt;}
.y11b{bottom:386.240133pt;}
.yd4{bottom:389.120000pt;}
.y70{bottom:389.280133pt;}
.yb4{bottom:392.000000pt;}
.ybf{bottom:392.160133pt;}
.y19{bottom:394.080000pt;}
.y44{bottom:395.200133pt;}
.yfd{bottom:399.680000pt;}
.y92{bottom:400.960000pt;}
.y13f{bottom:402.400000pt;}
.y11a{bottom:402.560000pt;}
.y172{bottom:404.000000pt;}
.y6f{bottom:405.600000pt;}
.yb3{bottom:408.480000pt;}
.y18{bottom:410.240133pt;}
.y43{bottom:411.360133pt;}
.yfc{bottom:415.840000pt;}
.y91{bottom:417.280133pt;}
.y119{bottom:418.880000pt;}
.y171{bottom:420.160133pt;}
.ye4{bottom:421.600000pt;}
.y6e{bottom:421.760000pt;}
.yb2{bottom:424.800000pt;}
.y42{bottom:427.680000pt;}
.yfb{bottom:432.160133pt;}
.y90{bottom:433.600000pt;}
.y118{bottom:435.200133pt;}
.y6d{bottom:438.080000pt;}
.y17{bottom:439.680000pt;}
.ybe{bottom:440.960000pt;}
.y154{bottom:444.000000pt;}
.y170{bottom:444.480000pt;}
.y193{bottom:447.520000pt;}
.yfa{bottom:448.480000pt;}
.y8f{bottom:449.920000pt;}
.y13e{bottom:451.360133pt;}
.yb1{bottom:454.240133pt;}
.y6c{bottom:454.400000pt;}
.y41{bottom:457.120000pt;}
.ybd{bottom:457.280133pt;}
.y153{bottom:460.160000pt;}
.y16f{bottom:460.800000pt;}
.y117{bottom:464.640000pt;}
.yf9{bottom:464.800000pt;}
.y8e{bottom:466.080000pt;}
.y16{bottom:469.280133pt;}
.y6b{bottom:470.560000pt;}
.y40{bottom:473.600000pt;}
.y192{bottom:477.120000pt;}
.y13d{bottom:480.800000pt;}
.yf8{bottom:480.960000pt;}
.yd3{bottom:483.840000pt;}
.y16e{bottom:485.120000pt;}
.y6a{bottom:486.880000pt;}
.y152{bottom:489.760000pt;}
.y3f{bottom:489.920000pt;}
.y8d{bottom:495.520000pt;}
.yf7{bottom:497.280133pt;}
.y15{bottom:498.880000pt;}
.yd2{bottom:500.160000pt;}
.ybc{bottom:503.040000pt;}
.yb0{bottom:503.200133pt;}
.y3e{bottom:506.080000pt;}
.y191{bottom:506.720000pt;}
.y16d{bottom:509.280133pt;}
.y8c{bottom:512.000000pt;}
.yf6{bottom:513.600000pt;}
.y14{bottom:515.360133pt;}
.y69{bottom:516.320133pt;}
.yd1{bottom:516.480000pt;}
.yaf{bottom:519.520000pt;}
.y3d{bottom:522.400000pt;}
.y8b{bottom:528.320133pt;}
.yf5{bottom:529.920000pt;}
.y13{bottom:531.680000pt;}
.y68{bottom:532.800000pt;}
.y16c{bottom:533.600000pt;}
.yae{bottom:535.680000pt;}
.y190{bottom:536.480000pt;}
.y151{bottom:538.720000pt;}
.y116{bottom:543.040000pt;}
.yf4{bottom:546.080000pt;}
.y12{bottom:548.000000pt;}
.y67{bottom:549.120000pt;}
.y16b{bottom:549.920000pt;}
.y3c{bottom:551.840000pt;}
.yad{bottom:552.000000pt;}
.y150{bottom:554.880000pt;}
.y8a{bottom:557.760000pt;}
.y115{bottom:559.520000pt;}
.yf3{bottom:562.400000pt;}
.y66{bottom:565.280133pt;}
.y18f{bottom:566.240133pt;}
.y3b{bottom:568.320133pt;}
.y14f{bottom:571.200000pt;}
.y89{bottom:574.240133pt;}
.y13c{bottom:575.520000pt;}
.y114{bottom:575.680000pt;}
.y11{bottom:577.440000pt;}
.yf2{bottom:578.720000pt;}
.y65{bottom:581.600000pt;}
.y18e{bottom:582.400000pt;}
.y3a{bottom:584.640000pt;}
.y14e{bottom:587.520000pt;}
.y88{bottom:590.400000pt;}
.y113{bottom:592.000000pt;}
.y133{bottom:594.880000pt;}
.yac{bottom:597.760000pt;}
.yd0{bottom:597.920000pt;}
.y16a{bottom:598.400000pt;}
.y39{bottom:600.800000pt;}
.y14d{bottom:603.840000pt;}
.y18d{bottom:606.720000pt;}
.y10{bottom:607.040000pt;}
.yf1{bottom:608.160000pt;}
.y112{bottom:608.320133pt;}
.y64{bottom:611.040000pt;}
.y132{bottom:611.200000pt;}
.ybb{bottom:614.080000pt;}
.yab{bottom:614.240000pt;}
.y38{bottom:617.120000pt;}
.y87{bottom:619.840000pt;}
.y169{bottom:622.720000pt;}
.y18c{bottom:623.040000pt;}
.yf0{bottom:624.640000pt;}
.ycf{bottom:627.360133pt;}
.y63{bottom:627.520000pt;}
.yaa{bottom:630.400000pt;}
.y14c{bottom:633.280133pt;}
.y37{bottom:633.440000pt;}
.y86{bottom:636.320133pt;}
.yf{bottom:636.640000pt;}
.y168{bottom:639.040000pt;}
.y131{bottom:640.640000pt;}
.yef{bottom:640.800000pt;}
.yde{bottom:643.680000pt;}
.y62{bottom:643.840000pt;}
.ya9{bottom:646.720000pt;}
.y18b{bottom:647.200000pt;}
.y36{bottom:649.600000pt;}
.y85{bottom:652.640000pt;}
.ye{bottom:653.120000pt;}
.yee{bottom:657.120000pt;}
.yba{bottom:659.840000pt;}
.y61{bottom:660.000000pt;}
.ya8{bottom:663.040000pt;}
.y167{bottom:663.200000pt;}
.y18a{bottom:663.520000pt;}
.y14b{bottom:665.920000pt;}
.yd{bottom:669.280000pt;}
.yed{bottom:673.440000pt;}
.y60{bottom:676.320133pt;}
.y35{bottom:679.040000pt;}
.ya7{bottom:679.200000pt;}
.y84{bottom:682.080000pt;}
.y14a{bottom:682.240000pt;}
.yc{bottom:685.600000pt;}
.y166{bottom:687.520000pt;}
.y189{bottom:687.840000pt;}
.yec{bottom:689.600000pt;}
.y5f{bottom:692.640000pt;}
.y34{bottom:695.520000pt;}
.y83{bottom:698.560000pt;}
.y165{bottom:703.840000pt;}
.yce{bottom:705.760000pt;}
.yeb{bottom:705.920000pt;}
.ya6{bottom:708.800000pt;}
.y5e{bottom:708.960000pt;}
.y33{bottom:711.840000pt;}
.y188{bottom:712.160000pt;}
.y82{bottom:714.720000pt;}
.yb{bottom:715.040000pt;}
.y13b{bottom:719.040000pt;}
.ycd{bottom:722.240000pt;}
.y5d{bottom:725.120000pt;}
.y32{bottom:728.160000pt;}
.y130{bottom:735.360000pt;}
.y13a{bottom:735.520000pt;}
.y187{bottom:736.320000pt;}
.ycc{bottom:738.560000pt;}
.y5c{bottom:741.440000pt;}
.y81{bottom:744.160000pt;}
.y31{bottom:744.320000pt;}
.ya{bottom:747.200000pt;}
.y12f{bottom:751.840000pt;}
.y164{bottom:752.320000pt;}
.y186{bottom:752.640000pt;}
.ycb{bottom:754.720000pt;}
.ydd{bottom:757.760000pt;}
.y30{bottom:760.640000pt;}
.y12e{bottom:768.160000pt;}
.y163{bottom:768.640000pt;}
.y5b{bottom:770.880000pt;}
.yca{bottom:771.040000pt;}
.ye3{bottom:773.920000pt;}
.y149{bottom:776.960000pt;}
.y12d{bottom:784.320000pt;}
.ydc{bottom:787.200000pt;}
.y5a{bottom:787.360000pt;}
.y9{bottom:788.954560pt;}
.y2f{bottom:790.080000pt;}
.ye2{bottom:790.240000pt;}
.y162{bottom:792.960000pt;}
.y185{bottom:793.280000pt;}
.y111{bottom:800.480000pt;}
.y12c{bottom:800.640000pt;}
.y59{bottom:803.520000pt;}
.y148{bottom:806.400000pt;}
.y2e{bottom:806.560000pt;}
.y110{bottom:816.960000pt;}
.y161{bottom:817.280000pt;}
.y184{bottom:817.440000pt;}
.ye1{bottom:819.680000pt;}
.y58{bottom:819.840000pt;}
.y2d{bottom:822.880000pt;}
.ya5{bottom:833.120000pt;}
.y10f{bottom:833.280000pt;}
.y160{bottom:833.440000pt;}
.y80{bottom:836.000000pt;}
.y57{bottom:836.160000pt;}
.y8{bottom:837.597280pt;}
.y183{bottom:841.760000pt;}
.ya4{bottom:849.440000pt;}
.y2c{bottom:852.320000pt;}
.y56{bottom:852.480000pt;}
.y15f{bottom:857.760000pt;}
.yb9{bottom:865.600000pt;}
.ya3{bottom:865.760000pt;}
.y182{bottom:866.080000pt;}
.y55{bottom:868.640000pt;}
.y15e{bottom:874.080000pt;}
.y2b{bottom:881.920000pt;}
.ya2{bottom:882.080000pt;}
.y7{bottom:886.240000pt;}
.y181{bottom:890.240000pt;}
.y54{bottom:898.080000pt;}
.y2a{bottom:898.240000pt;}
.y29{bottom:914.560000pt;}
.y4{bottom:933.280000pt;}
.y3{bottom:964.799680pt;}
.y2{bottom:979.839840pt;}
.y1{bottom:994.880000pt;}
.h2{height:35.363437pt;}
.h4{height:36.416250pt;}
.h1{height:43.808438pt;}
.h3{height:114.535313pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.560000pt;}
.x1{left:352.160000pt;}
.x3{left:471.190080pt;}
.x2{left:527.202080pt;}
.x5{left:688.320000pt;}
}




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