
    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_aaf6164a0b77c307f7d0a861.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_26c3ea24a7759193381b6eba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_2400a2b440c6c0555d762e1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_8059e47866c0d53eb8582de2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_d57524cc2132f71993f92c74.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_3b29aaca707003b300400f60.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_a74660a4d8ec1e1a25138835.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_fb13e28773b7fbea6117419b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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);}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.242160px;}
.v2{vertical-align:42.480000px;}
.lsb{letter-spacing:-0.758160px;}
.ls56{letter-spacing:-0.728640px;}
.ls6{letter-spacing:-0.673920px;}
.ls49{letter-spacing:-0.662400px;}
.ls9{letter-spacing:-0.596160px;}
.ls50{letter-spacing:-0.576000px;}
.ls4c{letter-spacing:-0.463680px;}
.ls12{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.336960px;}
.ls31{letter-spacing:-0.298800px;}
.ls11{letter-spacing:-0.288000px;}
.ls47{letter-spacing:-0.264960px;}
.ls34{letter-spacing:-0.239040px;}
.ls7{letter-spacing:-0.216000px;}
.ls4d{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.144000px;}
.ls4a{letter-spacing:-0.132480px;}
.ls35{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.084240px;}
.ls19{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.066240px;}
.ls32{letter-spacing:-0.059760px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.066240px;}
.ls46{letter-spacing:0.084240px;}
.ls14{letter-spacing:0.112608px;}
.ls2{letter-spacing:0.120240px;}
.ls17{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.179280px;}
.ls48{letter-spacing:0.198720px;}
.ls3{letter-spacing:0.240480px;}
.ls4b{letter-spacing:0.264960px;}
.ls18{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.336960px;}
.ls30{letter-spacing:0.358560px;}
.ls37{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.421200px;}
.lsf{letter-spacing:0.504000px;}
.ls54{letter-spacing:1.440000px;}
.ls53{letter-spacing:2.160000px;}
.lse{letter-spacing:3.749760px;}
.ls51{letter-spacing:4.320000px;}
.ls38{letter-spacing:5.760000px;}
.ls55{letter-spacing:6.480000px;}
.ls52{letter-spacing:8.640000px;}
.ls4f{letter-spacing:11.520000px;}
.ls4e{letter-spacing:13.680000px;}
.lsd{letter-spacing:15.840000px;}
.ls2f{letter-spacing:16.932240px;}
.lsc{letter-spacing:21.228480px;}
.ls36{letter-spacing:26.282880px;}
.ls26{letter-spacing:53.425440px;}
.ls2c{letter-spacing:69.321600px;}
.ls1e{letter-spacing:99.560160px;}
.ls1a{letter-spacing:100.277280px;}
.ls27{letter-spacing:122.567760px;}
.ls24{letter-spacing:129.081600px;}
.ls1f{letter-spacing:130.515840px;}
.ls2a{letter-spacing:160.754400px;}
.ls21{letter-spacing:175.156560px;}
.ls2d{letter-spacing:187.347600px;}
.ls29{letter-spacing:194.578560px;}
.ls2b{letter-spacing:209.697840px;}
.ls1d{letter-spacing:224.817120px;}
.ls20{letter-spacing:237.067920px;}
.ls1b{letter-spacing:314.815680px;}
.ls2e{letter-spacing:340.034400px;}
.ls25{letter-spacing:363.042000px;}
.ls23{letter-spacing:405.553680px;}
.ls22{letter-spacing:417.065040px;}
.ls28{letter-spacing:432.146880px;}
.ls3e{letter-spacing:484.678080px;}
.ls3a{letter-spacing:498.389760px;}
.ls43{letter-spacing:499.118400px;}
.ls3b{letter-spacing:501.238080px;}
.ls3f{letter-spacing:510.644160px;}
.ls39{letter-spacing:535.086720px;}
.ls44{letter-spacing:563.172480px;}
.ls40{letter-spacing:584.064576px;}
.ls41{letter-spacing:590.529600px;}
.ls3c{letter-spacing:603.512640px;}
.ls45{letter-spacing:604.943424px;}
.ls42{letter-spacing:636.632640px;}
.ls3d{letter-spacing:653.192640px;}
.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;}
}
.ws0{word-spacing:-27.174240px;}
.wsd{word-spacing:-21.396960px;}
.ws65{word-spacing:-21.144240px;}
.ws3{word-spacing:-21.060000px;}
.ws17{word-spacing:-20.975760px;}
.ws1{word-spacing:-20.723040px;}
.ws2{word-spacing:-20.386080px;}
.wse{word-spacing:-20.301840px;}
.ws3f{word-spacing:-18.288000px;}
.ws1c{word-spacing:-18.144000px;}
.ws1a{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.784000px;}
.ws1d{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.568000px;}
.ws86{word-spacing:-16.891200px;}
.ws88{word-spacing:-16.692480px;}
.ws85{word-spacing:-16.560000px;}
.ws84{word-spacing:-15.831360px;}
.ws87{word-spacing:-15.301440px;}
.ws69{word-spacing:-15.235200px;}
.ws66{word-spacing:-15.168960px;}
.ws3e{word-spacing:-15.036480px;}
.ws3d{word-spacing:-14.970240px;}
.ws3c{word-spacing:-14.904000px;}
.ws68{word-spacing:-14.837760px;}
.ws6b{word-spacing:-14.771520px;}
.ws6a{word-spacing:-14.506560px;}
.ws67{word-spacing:-14.307840px;}
.ws55{word-spacing:-13.864320px;}
.ws5b{word-spacing:-13.804560px;}
.ws56{word-spacing:-13.685040px;}
.ws57{word-spacing:-13.505760px;}
.ws59{word-spacing:-13.446000px;}
.ws5c{word-spacing:-13.386240px;}
.ws58{word-spacing:-13.266720px;}
.ws5a{word-spacing:-13.206960px;}
.ws38{word-spacing:-4.464000px;}
.ws39{word-spacing:-4.320000px;}
.ws7c{word-spacing:-4.032000px;}
.ws1e{word-spacing:-3.600000px;}
.ws25{word-spacing:-3.312000px;}
.ws47{word-spacing:-2.880000px;}
.ws28{word-spacing:-2.592000px;}
.ws35{word-spacing:-2.304000px;}
.ws34{word-spacing:-2.160000px;}
.ws51{word-spacing:-1.872000px;}
.ws53{word-spacing:-1.584000px;}
.ws29{word-spacing:-1.440000px;}
.ws14{word-spacing:-1.347840px;}
.ws11{word-spacing:-1.263600px;}
.ws52{word-spacing:-1.152000px;}
.ws8a{word-spacing:-1.059840px;}
.ws76{word-spacing:-0.927360px;}
.ws4e{word-spacing:-0.864000px;}
.ws8c{word-spacing:-0.861120px;}
.ws89{word-spacing:-0.728640px;}
.ws6{word-spacing:-0.721440px;}
.wsa{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.596160px;}
.ws13{word-spacing:-0.589680px;}
.ws8{word-spacing:-0.505440px;}
.ws6d{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.480960px;}
.ws37{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.336960px;}
.wsf{word-spacing:-0.331200px;}
.ws61{word-spacing:-0.298800px;}
.ws6c{word-spacing:-0.252720px;}
.ws5d{word-spacing:-0.179280px;}
.ws79{word-spacing:-0.168480px;}
.ws9{word-spacing:-0.144000px;}
.ws41{word-spacing:-0.132480px;}
.ws62{word-spacing:-0.119520px;}
.ws4{word-spacing:0.000000px;}
.ws63{word-spacing:0.059760px;}
.ws43{word-spacing:0.072000px;}
.ws5{word-spacing:0.120240px;}
.wsb{word-spacing:0.168480px;}
.ws40{word-spacing:0.198720px;}
.ws42{word-spacing:0.216000px;}
.ws5f{word-spacing:0.239040px;}
.ws78{word-spacing:0.264960px;}
.ws2c{word-spacing:0.288000px;}
.ws77{word-spacing:0.397440px;}
.ws60{word-spacing:0.418320px;}
.ws8b{word-spacing:0.463680px;}
.ws5e{word-spacing:0.478080px;}
.wsc{word-spacing:0.540000px;}
.ws4f{word-spacing:0.576000px;}
.ws10{word-spacing:0.596160px;}
.ws20{word-spacing:0.720000px;}
.ws8d{word-spacing:0.728640px;}
.ws48{word-spacing:0.864000px;}
.ws1f{word-spacing:1.008000px;}
.ws64{word-spacing:1.135440px;}
.ws82{word-spacing:1.296000px;}
.ws46{word-spacing:1.440000px;}
.ws4a{word-spacing:1.728000px;}
.ws2e{word-spacing:2.160000px;}
.ws7a{word-spacing:2.448000px;}
.ws2f{word-spacing:2.880000px;}
.ws81{word-spacing:3.168000px;}
.ws70{word-spacing:3.456000px;}
.ws21{word-spacing:3.600000px;}
.ws54{word-spacing:3.888000px;}
.ws26{word-spacing:4.320000px;}
.ws27{word-spacing:4.608000px;}
.ws4c{word-spacing:5.040000px;}
.ws4d{word-spacing:5.328000px;}
.ws6e{word-spacing:5.616000px;}
.ws22{word-spacing:5.760000px;}
.ws2d{word-spacing:6.048000px;}
.ws83{word-spacing:6.480000px;}
.ws6f{word-spacing:6.768000px;}
.ws7e{word-spacing:7.200000px;}
.ws7d{word-spacing:7.488000px;}
.ws30{word-spacing:7.776000px;}
.ws31{word-spacing:7.920000px;}
.ws45{word-spacing:8.496000px;}
.ws7f{word-spacing:8.640000px;}
.ws44{word-spacing:8.928000px;}
.ws4b{word-spacing:9.360000px;}
.ws75{word-spacing:10.080000px;}
.ws74{word-spacing:10.368000px;}
.ws32{word-spacing:10.656000px;}
.ws33{word-spacing:10.800000px;}
.ws24{word-spacing:11.520000px;}
.ws36{word-spacing:12.240000px;}
.ws49{word-spacing:13.680000px;}
.ws2b{word-spacing:14.400000px;}
.ws50{word-spacing:14.688000px;}
.ws2a{word-spacing:15.696000px;}
.ws23{word-spacing:15.840000px;}
.ws71{word-spacing:16.416000px;}
.ws72{word-spacing:16.560000px;}
.ws73{word-spacing:16.848000px;}
.ws3b{word-spacing:19.440000px;}
.ws3a{word-spacing:19.728000px;}
.ws7b{word-spacing:21.600000px;}
.ws15{word-spacing:61.410960px;}
.ws16{word-spacing:62.843040px;}
._6{margin-left:-4.051584px;}
._f{margin-left:-2.952000px;}
._0{margin-left:-1.106208px;}
._1{width:1.008000px;}
._b{width:2.024640px;}
._10{width:4.680000px;}
._9{width:5.858208px;}
._a{width:8.712000px;}
._8{width:10.878624px;}
._7{width:12.384000px;}
._c{width:13.752000px;}
._d{width:224.757360px;}
._11{width:260.488800px;}
._4{width:293.608800px;}
._e{width:452.406960px;}
._3{width:527.760000px;}
._5{width:842.905440px;}
._2{width:1342.800000px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(91,155,213);}
.fc0{color:rgb(30,76,119);}
.fs8{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:4.500000px;}
.y26{bottom:4.680000px;}
.y8e{bottom:15.480000px;}
.y9e{bottom:27.720000px;}
.y28{bottom:28.619850px;}
.y2d{bottom:28.620000px;}
.yc0{bottom:30.600000px;}
.y98{bottom:48.780000px;}
.y32{bottom:52.920000px;}
.y18{bottom:54.719280px;}
.y17{bottom:73.614240px;}
.y91{bottom:90.900000px;}
.y16{bottom:93.420000px;}
.y13d{bottom:115.238880px;}
.y8b{bottom:120.240000px;}
.y13{bottom:123.480000px;}
.yfd{bottom:124.560000px;}
.y66{bottom:132.120000px;}
.y13c{bottom:137.015280px;}
.ybc{bottom:137.520000px;}
.yd6{bottom:141.840000px;}
.y115{bottom:149.400000px;}
.y65{bottom:154.440000px;}
.yfc{bottom:158.940000px;}
.y13b{bottom:158.973840px;}
.ye4{bottom:161.460000px;}
.y12{bottom:163.260000px;}
.ybb{bottom:171.900000px;}
.yd5{bottom:176.220000px;}
.ye3{bottom:183.780000px;}
.y64{bottom:184.680000px;}
.y114{bottom:186.660000px;}
.y8a{bottom:188.820000px;}
.y13a{bottom:189.758880px;}
.yfb{bottom:193.140000px;}
.y11{bottom:206.100000px;}
.yba{bottom:206.280000px;}
.y113{bottom:208.980000px;}
.yd4{bottom:210.600000px;}
.y139{bottom:211.535280px;}
.y5b{bottom:215.280000px;}
.yfa{bottom:215.640000px;}
.y89{bottom:223.200000px;}
.ye2{bottom:228.420000px;}
.y112{bottom:231.300000px;}
.y138{bottom:233.311680px;}
.yf9{bottom:237.960000px;}
.y10{bottom:240.480000px;}
.yd3{bottom:244.800000px;}
.y5a{bottom:249.660000px;}
.y111{bottom:253.620000px;}
.y137{bottom:255.270240px;}
.y88{bottom:257.580000px;}
.yf8{bottom:260.280000px;}
.yb9{bottom:262.800000px;}
.yd2{bottom:267.300000px;}
.y59{bottom:271.980000px;}
.yf{bottom:275.768820px;}
.y136{bottom:277.046640px;}
.y87{bottom:279.900000px;}
.yf7{bottom:282.600000px;}
.ye1{bottom:285.120000px;}
.yb8{bottom:285.300000px;}
.y110{bottom:288.000000px;}
.yd1{bottom:289.620000px;}
.y58{bottom:294.300000px;}
.y135{bottom:298.823040px;}
.y86{bottom:302.220000px;}
.yf6{bottom:304.920000px;}
.ye0{bottom:307.440000px;}
.y10f{bottom:310.320000px;}
.yd0{bottom:311.940000px;}
.ye{bottom:313.740000px;}
.y57{bottom:316.620000px;}
.yb7{bottom:320.400000px;}
.y134{bottom:320.599440px;}
.y85{bottom:324.540000px;}
.yf5{bottom:327.240000px;}
.ydf{bottom:329.760000px;}
.y10e{bottom:332.640000px;}
.ycf{bottom:334.260000px;}
.y56{bottom:338.940000px;}
.y133{bottom:342.375840px;}
.y84{bottom:346.860000px;}
.yf4{bottom:349.560000px;}
.yde{bottom:352.080000px;}
.y10d{bottom:354.960000px;}
.yd{bottom:356.400000px;}
.yb6{bottom:357.660000px;}
.y132{bottom:364.334400px;}
.y83{bottom:369.180000px;}
.yce{bottom:369.366660px;}
.yf3{bottom:371.880000px;}
.y55{bottom:373.320000px;}
.ydd{bottom:374.580000px;}
.yb5{bottom:381.420000px;}
.y10c{bottom:389.340000px;}
.y82{bottom:391.500000px;}
.yf2{bottom:394.200000px;}
.ycd{bottom:395.460000px;}
.y54{bottom:395.640000px;}
.y131{bottom:396.195840px;}
.ydc{bottom:408.780000px;}
.yb4{bottom:409.860000px;}
.y10b{bottom:411.660000px;}
.yc{bottom:413.100000px;}
.yf1{bottom:416.520000px;}
.y53{bottom:417.960000px;}
.y130{bottom:419.412960px;}
.y35{bottom:424.088820px;}
.y81{bottom:426.781800px;}
.yb2{bottom:429.480000px;}
.ycc{bottom:432.720000px;}
.y10a{bottom:433.980000px;}
.yb3{bottom:436.140000px;}
.yf0{bottom:439.020000px;}
.y52{bottom:440.280000px;}
.y12f{bottom:442.630080px;}
.ydb{bottom:443.160000px;}
.yb1{bottom:446.580000px;}
.y80{bottom:452.706660px;}
.ycb{bottom:460.980000px;}
.y34{bottom:462.060000px;}
.y51{bottom:462.780000px;}
.yda{bottom:465.480000px;}
.y12e{bottom:465.665040px;}
.y109{bottom:468.360000px;}
.yb{bottom:469.800000px;}
.yaf{bottom:472.320000px;}
.yef{bottom:473.220000px;}
.y7f{bottom:478.800000px;}
.yb0{bottom:478.974600px;}
.y31{bottom:481.680000px;}
.y50{bottom:485.100000px;}
.yd9{bottom:487.800000px;}
.y108{bottom:490.680000px;}
.yca{bottom:491.580000px;}
.y12d{bottom:496.797840px;}
.yae{bottom:500.040000px;}
.yee{bottom:507.600000px;}
.y33{bottom:510.480000px;}
.y107{bottom:513.000000px;}
.ya{bottom:514.440000px;}
.y7e{bottom:516.060000px;}
.yd8{bottom:518.220000px;}
.y12c{bottom:518.574240px;}
.y4f{bottom:519.300000px;}
.yc9{bottom:522.000000px;}
.yed{bottom:529.920000px;}
.y106{bottom:535.320000px;}
.yac{bottom:536.220000px;}
.y12b{bottom:540.350640px;}
.y4e{bottom:541.800000px;}
.yad{bottom:542.880000px;}
.y7d{bottom:550.440000px;}
.yc8{bottom:552.600000px;}
.yab{bottom:553.500000px;}
.y30{bottom:554.220000px;}
.y105{bottom:557.640000px;}
.yec{bottom:560.160000px;}
.y4d{bottom:564.120000px;}
.y12a{bottom:571.135680px;}
.y9{bottom:571.140000px;}
.ya9{bottom:579.060000px;}
.yc7{bottom:583.020000px;}
.y7c{bottom:584.640000px;}
.yaa{bottom:585.720000px;}
.y4c{bottom:586.440000px;}
.y104{bottom:592.928820px;}
.y129{bottom:593.094240px;}
.ya8{bottom:596.340000px;}
.y2f{bottom:602.460000px;}
.y7b{bottom:607.140000px;}
.y4b{bottom:608.760000px;}
.yc6{bottom:613.620000px;}
.ya6{bottom:621.900000px;}
.y128{bottom:623.879280px;}
.y2e{bottom:626.580000px;}
.ya7{bottom:628.554600px;}
.y7a{bottom:629.460000px;}
.y103{bottom:630.900000px;}
.y4a{bottom:631.080000px;}
.y8{bottom:633.780000px;}
.yc5{bottom:644.220000px;}
.y127{bottom:645.655680px;}
.ya5{bottom:649.620000px;}
.y2c{bottom:650.880000px;}
.y79{bottom:651.780000px;}
.y49{bottom:653.400000px;}
.y126{bottom:667.432080px;}
.y102{bottom:667.624320px;}
.y78{bottom:674.100000px;}
.yc4{bottom:674.640000px;}
.y48{bottom:675.720000px;}
.ya3{bottom:685.800000px;}
.y101{bottom:687.960000px;}
.y7{bottom:688.320000px;}
.ya4{bottom:692.460000px;}
.y77{bottom:696.420000px;}
.y47{bottom:698.040000px;}
.y125{bottom:698.217120px;}
.y2b{bottom:699.120000px;}
.ya2{bottom:703.080000px;}
.yc3{bottom:705.240000px;}
.y63{bottom:710.305920px;}
.y100{bottom:717.300000px;}
.y76{bottom:718.740000px;}
.y124{bottom:720.175680px;}
.y46{bottom:720.360000px;}
.y2a{bottom:723.240000px;}
.ya0{bottom:728.820000px;}
.y62{bottom:731.900160px;}
.ya1{bottom:735.474600px;}
.yc2{bottom:735.660000px;}
.y75{bottom:741.060000px;}
.y6{bottom:741.240000px;}
.y123{bottom:741.952080px;}
.y27{bottom:747.360000px;}
.y61{bottom:753.676560px;}
.y45{bottom:754.740000px;}
.ybf{bottom:755.460000px;}
.y9f{bottom:756.540000px;}
.yc1{bottom:762.840000px;}
.y74{bottom:763.380000px;}
.y122{bottom:772.737120px;}
.ybe{bottom:774.540000px;}
.y60{bottom:775.452960px;}
.y44{bottom:777.060000px;}
.y5{bottom:792.720000px;}
.y121{bottom:794.513520px;}
.y25{bottom:795.600000px;}
.y5f{bottom:797.229360px;}
.y73{bottom:797.760000px;}
.y43{bottom:799.380000px;}
.y9d{bottom:809.820000px;}
.y120{bottom:816.289920px;}
.y5e{bottom:818.823600px;}
.y72{bottom:820.080000px;}
.y42{bottom:821.700000px;}
.y9b{bottom:835.560000px;}
.y24{bottom:837.360000px;}
.y5d{bottom:840.600000px;}
.y9c{bottom:842.214600px;}
.y41{bottom:844.020000px;}
.y11f{bottom:847.257120px;}
.y71{bottom:854.460000px;}
.y4{bottom:858.431340px;}
.y9a{bottom:863.280000px;}
.y40{bottom:866.520000px;}
.y11e{bottom:869.033520px;}
.y23{bottom:871.740000px;}
.y70{bottom:876.780000px;}
.ybd{bottom:888.840000px;}
.y22{bottom:894.974580px;}
.y3{bottom:897.840000px;}
.y6f{bottom:899.100000px;}
.y97{bottom:899.460000px;}
.y11d{bottom:899.818560px;}
.y3f{bottom:900.720000px;}
.y99{bottom:906.114600px;}
.y21{bottom:921.067920px;}
.y6e{bottom:921.420000px;}
.y11c{bottom:921.594960px;}
.y3e{bottom:923.040000px;}
.y147{bottom:926.830800px;}
.y96{bottom:927.180000px;}
.y11b{bottom:943.553520px;}
.y6d{bottom:943.740000px;}
.y3d{bottom:945.360000px;}
.y20{bottom:946.992780px;}
.y146{bottom:948.607200px;}
.yeb{bottom:949.140000px;}
.y90{bottom:963.360000px;}
.y3c{bottom:967.860000px;}
.y95{bottom:970.003800px;}
.y145{bottom:970.383600px;}
.y1f{bottom:973.086120px;}
.y11a{bottom:974.338560px;}
.y6c{bottom:978.120000px;}
.yea{bottom:983.520000px;}
.y3b{bottom:990.180000px;}
.y94{bottom:991.069200px;}
.y119{bottom:996.114960px;}
.y6b{bottom:1000.440000px;}
.y144{bottom:1001.168640px;}
.ye9{bottom:1005.840000px;}
.y1e{bottom:1006.740000px;}
.y93{bottom:1012.134600px;}
.y8f{bottom:1012.140000px;}
.y3a{bottom:1012.500000px;}
.y2{bottom:1018.620000px;}
.y6a{bottom:1022.760000px;}
.y143{bottom:1022.945040px;}
.y118{bottom:1026.900000px;}
.ye8{bottom:1028.160000px;}
.y1d{bottom:1032.686640px;}
.y92{bottom:1033.200000px;}
.y39{bottom:1034.820000px;}
.yff{bottom:1036.800000px;}
.y142{bottom:1044.903600px;}
.y69{bottom:1045.080000px;}
.ye7{bottom:1050.480000px;}
.y38{bottom:1057.140000px;}
.y1c{bottom:1058.779980px;}
.y117{bottom:1060.928100px;}
.y68{bottom:1067.400000px;}
.y8d{bottom:1069.380000px;}
.yfe{bottom:1071.180000px;}
.ye6{bottom:1072.800000px;}
.y141{bottom:1075.688640px;}
.y37{bottom:1079.460000px;}
.y1b{bottom:1084.873320px;}
.ye5{bottom:1095.120000px;}
.y140{bottom:1097.465040px;}
.y116{bottom:1098.899280px;}
.y36{bottom:1101.780000px;}
.y67{bottom:1102.680000px;}
.y1{bottom:1104.480000px;}
.yd7{bottom:1105.560000px;}
.y1a{bottom:1110.966660px;}
.y8c{bottom:1117.440000px;}
.y13f{bottom:1119.241440px;}
.y19{bottom:1137.060000px;}
.y5c{bottom:1139.940000px;}
.y13e{bottom:1141.200000px;}
.y15{bottom:1171.980000px;}
.y14{bottom:1192.320000px;}
.hf{height:24.118500px;}
.he{height:24.120000px;}
.hc{height:24.300000px;}
.h16{height:29.881500px;}
.h18{height:41.405977px;}
.h17{height:41.551875px;}
.h1c{height:42.120000px;}
.h1a{height:42.894141px;}
.ha{height:45.895781px;}
.h9{height:46.025156px;}
.h1f{height:46.057500px;}
.h20{height:46.260000px;}
.h14{height:47.545312px;}
.hd{height:48.240000px;}
.h10{height:48.241500px;}
.h21{height:48.796875px;}
.h15{height:49.923664px;}
.h13{height:49.992188px;}
.h8{height:50.027344px;}
.h12{height:57.092344px;}
.h7{height:58.531992px;}
.h1b{height:63.180000px;}
.h11{height:72.540000px;}
.h6{height:73.195312px;}
.h4{height:83.604375px;}
.h1d{height:83.885977px;}
.h1e{height:85.374141px;}
.hb{height:88.774152px;}
.h2{height:99.773438px;}
.h5{height:100.054688px;}
.h19{height:105.300000px;}
.h3{height:150.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:66.420000px;}
.w5{width:91.078500px;}
.w6{width:146.340000px;}
.w7{width:160.560000px;}
.w9{width:169.201500px;}
.w8{width:201.420000px;}
.w2{width:265.500000px;}
.w3{width:403.920000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x2e{left:9.180000px;}
.x25{left:10.620000px;}
.x34{left:12.060000px;}
.x30{left:13.500000px;}
.x20{left:19.260000px;}
.x32{left:21.060000px;}
.x29{left:24.120000px;}
.x10{left:95.580000px;}
.x13{left:103.680000px;}
.x1{left:106.200000px;}
.x1f{left:114.840000px;}
.x2{left:122.220000px;}
.x3a{left:123.289920px;}
.x3{left:126.000000px;}
.x9{left:128.700000px;}
.x15{left:133.200000px;}
.x17{left:143.460000px;}
.x6{left:156.780000px;}
.x19{left:160.198920px;}
.x1b{left:174.240000px;}
.x1a{left:187.197840px;}
.xe{left:208.800000px;}
.xf{left:233.820000px;}
.xb{left:251.640000px;}
.x1c{left:266.040000px;}
.xc{left:270.551880px;}
.x2c{left:273.780000px;}
.xa{left:307.440000px;}
.x8{left:335.340000px;}
.xd{left:338.040000px;}
.x4{left:344.325780px;}
.x5{left:353.340000px;}
.x12{left:361.080000px;}
.x18{left:367.380000px;}
.x14{left:369.180000px;}
.x1d{left:413.100000px;}
.x7{left:446.400000px;}
.x36{left:515.520000px;}
.x1e{left:574.380000px;}
.x26{left:582.300000px;}
.x35{left:583.920000px;}
.x22{left:586.285380px;}
.x24{left:590.413320px;}
.x2d{left:592.020000px;}
.x2a{left:594.900000px;}
.x21{left:596.340000px;}
.x31{left:606.600000px;}
.x23{left:608.067900px;}
.x33{left:610.020000px;}
.x16{left:635.580000px;}
.x2b{left:643.679100px;}
.x27{left:645.481260px;}
.x2f{left:646.749720px;}
.x28{left:648.540000px;}
.x37{left:678.600000px;}
.x38{left:746.100000px;}
.x39{left:757.080000px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.881920pt;}
.v2{vertical-align:37.760000pt;}
.lsb{letter-spacing:-0.673920pt;}
.ls56{letter-spacing:-0.647680pt;}
.ls6{letter-spacing:-0.599040pt;}
.ls49{letter-spacing:-0.588800pt;}
.ls9{letter-spacing:-0.529920pt;}
.ls50{letter-spacing:-0.512000pt;}
.ls4c{letter-spacing:-0.412160pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.299520pt;}
.ls31{letter-spacing:-0.265600pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls47{letter-spacing:-0.235520pt;}
.ls34{letter-spacing:-0.212480pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls4d{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls4a{letter-spacing:-0.117760pt;}
.ls35{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.074880pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.058880pt;}
.ls32{letter-spacing:-0.053120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.058880pt;}
.ls46{letter-spacing:0.074880pt;}
.ls14{letter-spacing:0.100096pt;}
.ls2{letter-spacing:0.106880pt;}
.ls17{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.159360pt;}
.ls48{letter-spacing:0.176640pt;}
.ls3{letter-spacing:0.213760pt;}
.ls4b{letter-spacing:0.235520pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.299520pt;}
.ls30{letter-spacing:0.318720pt;}
.ls37{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.374400pt;}
.lsf{letter-spacing:0.448000pt;}
.ls54{letter-spacing:1.280000pt;}
.ls53{letter-spacing:1.920000pt;}
.lse{letter-spacing:3.333120pt;}
.ls51{letter-spacing:3.840000pt;}
.ls38{letter-spacing:5.120000pt;}
.ls55{letter-spacing:5.760000pt;}
.ls52{letter-spacing:7.680000pt;}
.ls4f{letter-spacing:10.240000pt;}
.ls4e{letter-spacing:12.160000pt;}
.lsd{letter-spacing:14.080000pt;}
.ls2f{letter-spacing:15.050880pt;}
.lsc{letter-spacing:18.869760pt;}
.ls36{letter-spacing:23.362560pt;}
.ls26{letter-spacing:47.489280pt;}
.ls2c{letter-spacing:61.619200pt;}
.ls1e{letter-spacing:88.497920pt;}
.ls1a{letter-spacing:89.135360pt;}
.ls27{letter-spacing:108.949120pt;}
.ls24{letter-spacing:114.739200pt;}
.ls1f{letter-spacing:116.014080pt;}
.ls2a{letter-spacing:142.892800pt;}
.ls21{letter-spacing:155.694720pt;}
.ls2d{letter-spacing:166.531200pt;}
.ls29{letter-spacing:172.958720pt;}
.ls2b{letter-spacing:186.398080pt;}
.ls1d{letter-spacing:199.837440pt;}
.ls20{letter-spacing:210.727040pt;}
.ls1b{letter-spacing:279.836160pt;}
.ls2e{letter-spacing:302.252800pt;}
.ls25{letter-spacing:322.704000pt;}
.ls23{letter-spacing:360.492160pt;}
.ls22{letter-spacing:370.724480pt;}
.ls28{letter-spacing:384.130560pt;}
.ls3e{letter-spacing:430.824960pt;}
.ls3a{letter-spacing:443.013120pt;}
.ls43{letter-spacing:443.660800pt;}
.ls3b{letter-spacing:445.544960pt;}
.ls3f{letter-spacing:453.905920pt;}
.ls39{letter-spacing:475.632640pt;}
.ls44{letter-spacing:500.597760pt;}
.ls40{letter-spacing:519.168512pt;}
.ls41{letter-spacing:524.915200pt;}
.ls3c{letter-spacing:536.455680pt;}
.ls45{letter-spacing:537.727488pt;}
.ls42{letter-spacing:565.895680pt;}
.ls3d{letter-spacing:580.615680pt;}
.ws0{word-spacing:-24.154880pt;}
.wsd{word-spacing:-19.019520pt;}
.ws65{word-spacing:-18.794880pt;}
.ws3{word-spacing:-18.720000pt;}
.ws17{word-spacing:-18.645120pt;}
.ws1{word-spacing:-18.420480pt;}
.ws2{word-spacing:-18.120960pt;}
.wse{word-spacing:-18.046080pt;}
.ws3f{word-spacing:-16.256000pt;}
.ws1c{word-spacing:-16.128000pt;}
.ws1a{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws1d{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.616000pt;}
.ws86{word-spacing:-15.014400pt;}
.ws88{word-spacing:-14.837760pt;}
.ws85{word-spacing:-14.720000pt;}
.ws84{word-spacing:-14.072320pt;}
.ws87{word-spacing:-13.601280pt;}
.ws69{word-spacing:-13.542400pt;}
.ws66{word-spacing:-13.483520pt;}
.ws3e{word-spacing:-13.365760pt;}
.ws3d{word-spacing:-13.306880pt;}
.ws3c{word-spacing:-13.248000pt;}
.ws68{word-spacing:-13.189120pt;}
.ws6b{word-spacing:-13.130240pt;}
.ws6a{word-spacing:-12.894720pt;}
.ws67{word-spacing:-12.718080pt;}
.ws55{word-spacing:-12.323840pt;}
.ws5b{word-spacing:-12.270720pt;}
.ws56{word-spacing:-12.164480pt;}
.ws57{word-spacing:-12.005120pt;}
.ws59{word-spacing:-11.952000pt;}
.ws5c{word-spacing:-11.898880pt;}
.ws58{word-spacing:-11.792640pt;}
.ws5a{word-spacing:-11.739520pt;}
.ws38{word-spacing:-3.968000pt;}
.ws39{word-spacing:-3.840000pt;}
.ws7c{word-spacing:-3.584000pt;}
.ws1e{word-spacing:-3.200000pt;}
.ws25{word-spacing:-2.944000pt;}
.ws47{word-spacing:-2.560000pt;}
.ws28{word-spacing:-2.304000pt;}
.ws35{word-spacing:-2.048000pt;}
.ws34{word-spacing:-1.920000pt;}
.ws51{word-spacing:-1.664000pt;}
.ws53{word-spacing:-1.408000pt;}
.ws29{word-spacing:-1.280000pt;}
.ws14{word-spacing:-1.198080pt;}
.ws11{word-spacing:-1.123200pt;}
.ws52{word-spacing:-1.024000pt;}
.ws8a{word-spacing:-0.942080pt;}
.ws76{word-spacing:-0.824320pt;}
.ws4e{word-spacing:-0.768000pt;}
.ws8c{word-spacing:-0.765440pt;}
.ws89{word-spacing:-0.647680pt;}
.ws6{word-spacing:-0.641280pt;}
.wsa{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.529920pt;}
.ws13{word-spacing:-0.524160pt;}
.ws8{word-spacing:-0.449280pt;}
.ws6d{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.427520pt;}
.ws37{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.299520pt;}
.wsf{word-spacing:-0.294400pt;}
.ws61{word-spacing:-0.265600pt;}
.ws6c{word-spacing:-0.224640pt;}
.ws5d{word-spacing:-0.159360pt;}
.ws79{word-spacing:-0.149760pt;}
.ws9{word-spacing:-0.128000pt;}
.ws41{word-spacing:-0.117760pt;}
.ws62{word-spacing:-0.106240pt;}
.ws4{word-spacing:0.000000pt;}
.ws63{word-spacing:0.053120pt;}
.ws43{word-spacing:0.064000pt;}
.ws5{word-spacing:0.106880pt;}
.wsb{word-spacing:0.149760pt;}
.ws40{word-spacing:0.176640pt;}
.ws42{word-spacing:0.192000pt;}
.ws5f{word-spacing:0.212480pt;}
.ws78{word-spacing:0.235520pt;}
.ws2c{word-spacing:0.256000pt;}
.ws77{word-spacing:0.353280pt;}
.ws60{word-spacing:0.371840pt;}
.ws8b{word-spacing:0.412160pt;}
.ws5e{word-spacing:0.424960pt;}
.wsc{word-spacing:0.480000pt;}
.ws4f{word-spacing:0.512000pt;}
.ws10{word-spacing:0.529920pt;}
.ws20{word-spacing:0.640000pt;}
.ws8d{word-spacing:0.647680pt;}
.ws48{word-spacing:0.768000pt;}
.ws1f{word-spacing:0.896000pt;}
.ws64{word-spacing:1.009280pt;}
.ws82{word-spacing:1.152000pt;}
.ws46{word-spacing:1.280000pt;}
.ws4a{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.920000pt;}
.ws7a{word-spacing:2.176000pt;}
.ws2f{word-spacing:2.560000pt;}
.ws81{word-spacing:2.816000pt;}
.ws70{word-spacing:3.072000pt;}
.ws21{word-spacing:3.200000pt;}
.ws54{word-spacing:3.456000pt;}
.ws26{word-spacing:3.840000pt;}
.ws27{word-spacing:4.096000pt;}
.ws4c{word-spacing:4.480000pt;}
.ws4d{word-spacing:4.736000pt;}
.ws6e{word-spacing:4.992000pt;}
.ws22{word-spacing:5.120000pt;}
.ws2d{word-spacing:5.376000pt;}
.ws83{word-spacing:5.760000pt;}
.ws6f{word-spacing:6.016000pt;}
.ws7e{word-spacing:6.400000pt;}
.ws7d{word-spacing:6.656000pt;}
.ws30{word-spacing:6.912000pt;}
.ws31{word-spacing:7.040000pt;}
.ws45{word-spacing:7.552000pt;}
.ws7f{word-spacing:7.680000pt;}
.ws44{word-spacing:7.936000pt;}
.ws4b{word-spacing:8.320000pt;}
.ws75{word-spacing:8.960000pt;}
.ws74{word-spacing:9.216000pt;}
.ws32{word-spacing:9.472000pt;}
.ws33{word-spacing:9.600000pt;}
.ws24{word-spacing:10.240000pt;}
.ws36{word-spacing:10.880000pt;}
.ws49{word-spacing:12.160000pt;}
.ws2b{word-spacing:12.800000pt;}
.ws50{word-spacing:13.056000pt;}
.ws2a{word-spacing:13.952000pt;}
.ws23{word-spacing:14.080000pt;}
.ws71{word-spacing:14.592000pt;}
.ws72{word-spacing:14.720000pt;}
.ws73{word-spacing:14.976000pt;}
.ws3b{word-spacing:17.280000pt;}
.ws3a{word-spacing:17.536000pt;}
.ws7b{word-spacing:19.200000pt;}
.ws15{word-spacing:54.587520pt;}
.ws16{word-spacing:55.860480pt;}
._6{margin-left:-3.601408pt;}
._f{margin-left:-2.624000pt;}
._0{margin-left:-0.983296pt;}
._1{width:0.896000pt;}
._b{width:1.799680pt;}
._10{width:4.160000pt;}
._9{width:5.207296pt;}
._a{width:7.744000pt;}
._8{width:9.669888pt;}
._7{width:11.008000pt;}
._c{width:12.224000pt;}
._d{width:199.784320pt;}
._11{width:231.545600pt;}
._4{width:260.985600pt;}
._e{width:402.139520pt;}
._3{width:469.120000pt;}
._5{width:749.249280pt;}
._2{width:1193.600000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:4.000000pt;}
.y26{bottom:4.160000pt;}
.y8e{bottom:13.760000pt;}
.y9e{bottom:24.640000pt;}
.y28{bottom:25.439867pt;}
.y2d{bottom:25.440000pt;}
.yc0{bottom:27.200000pt;}
.y98{bottom:43.360000pt;}
.y32{bottom:47.040000pt;}
.y18{bottom:48.639360pt;}
.y17{bottom:65.434880pt;}
.y91{bottom:80.800000pt;}
.y16{bottom:83.040000pt;}
.y13d{bottom:102.434560pt;}
.y8b{bottom:106.880000pt;}
.y13{bottom:109.760000pt;}
.yfd{bottom:110.720000pt;}
.y66{bottom:117.440000pt;}
.y13c{bottom:121.791360pt;}
.ybc{bottom:122.240000pt;}
.yd6{bottom:126.080000pt;}
.y115{bottom:132.800000pt;}
.y65{bottom:137.280000pt;}
.yfc{bottom:141.280000pt;}
.y13b{bottom:141.310080pt;}
.ye4{bottom:143.520000pt;}
.y12{bottom:145.120000pt;}
.ybb{bottom:152.800000pt;}
.yd5{bottom:156.640000pt;}
.ye3{bottom:163.360000pt;}
.y64{bottom:164.160000pt;}
.y114{bottom:165.920000pt;}
.y8a{bottom:167.840000pt;}
.y13a{bottom:168.674560pt;}
.yfb{bottom:171.680000pt;}
.y11{bottom:183.200000pt;}
.yba{bottom:183.360000pt;}
.y113{bottom:185.760000pt;}
.yd4{bottom:187.200000pt;}
.y139{bottom:188.031360pt;}
.y5b{bottom:191.360000pt;}
.yfa{bottom:191.680000pt;}
.y89{bottom:198.400000pt;}
.ye2{bottom:203.040000pt;}
.y112{bottom:205.600000pt;}
.y138{bottom:207.388160pt;}
.yf9{bottom:211.520000pt;}
.y10{bottom:213.760000pt;}
.yd3{bottom:217.600000pt;}
.y5a{bottom:221.920000pt;}
.y111{bottom:225.440000pt;}
.y137{bottom:226.906880pt;}
.y88{bottom:228.960000pt;}
.yf8{bottom:231.360000pt;}
.yb9{bottom:233.600000pt;}
.yd2{bottom:237.600000pt;}
.y59{bottom:241.760000pt;}
.yf{bottom:245.127840pt;}
.y136{bottom:246.263680pt;}
.y87{bottom:248.800000pt;}
.yf7{bottom:251.200000pt;}
.ye1{bottom:253.440000pt;}
.yb8{bottom:253.600000pt;}
.y110{bottom:256.000000pt;}
.yd1{bottom:257.440000pt;}
.y58{bottom:261.600000pt;}
.y135{bottom:265.620480pt;}
.y86{bottom:268.640000pt;}
.yf6{bottom:271.040000pt;}
.ye0{bottom:273.280000pt;}
.y10f{bottom:275.840000pt;}
.yd0{bottom:277.280000pt;}
.ye{bottom:278.880000pt;}
.y57{bottom:281.440000pt;}
.yb7{bottom:284.800000pt;}
.y134{bottom:284.977280pt;}
.y85{bottom:288.480000pt;}
.yf5{bottom:290.880000pt;}
.ydf{bottom:293.120000pt;}
.y10e{bottom:295.680000pt;}
.ycf{bottom:297.120000pt;}
.y56{bottom:301.280000pt;}
.y133{bottom:304.334080pt;}
.y84{bottom:308.320000pt;}
.yf4{bottom:310.720000pt;}
.yde{bottom:312.960000pt;}
.y10d{bottom:315.520000pt;}
.yd{bottom:316.800000pt;}
.yb6{bottom:317.920000pt;}
.y132{bottom:323.852800pt;}
.y83{bottom:328.160000pt;}
.yce{bottom:328.325920pt;}
.yf3{bottom:330.560000pt;}
.y55{bottom:331.840000pt;}
.ydd{bottom:332.960000pt;}
.yb5{bottom:339.040000pt;}
.y10c{bottom:346.080000pt;}
.y82{bottom:348.000000pt;}
.yf2{bottom:350.400000pt;}
.ycd{bottom:351.520000pt;}
.y54{bottom:351.680000pt;}
.y131{bottom:352.174080pt;}
.ydc{bottom:363.360000pt;}
.yb4{bottom:364.320000pt;}
.y10b{bottom:365.920000pt;}
.yc{bottom:367.200000pt;}
.yf1{bottom:370.240000pt;}
.y53{bottom:371.520000pt;}
.y130{bottom:372.811520pt;}
.y35{bottom:376.967840pt;}
.y81{bottom:379.361600pt;}
.yb2{bottom:381.760000pt;}
.ycc{bottom:384.640000pt;}
.y10a{bottom:385.760000pt;}
.yb3{bottom:387.680000pt;}
.yf0{bottom:390.240000pt;}
.y52{bottom:391.360000pt;}
.y12f{bottom:393.448960pt;}
.ydb{bottom:393.920000pt;}
.yb1{bottom:396.960000pt;}
.y80{bottom:402.405920pt;}
.ycb{bottom:409.760000pt;}
.y34{bottom:410.720000pt;}
.y51{bottom:411.360000pt;}
.yda{bottom:413.760000pt;}
.y12e{bottom:413.924480pt;}
.y109{bottom:416.320000pt;}
.yb{bottom:417.600000pt;}
.yaf{bottom:419.840000pt;}
.yef{bottom:420.640000pt;}
.y7f{bottom:425.600000pt;}
.yb0{bottom:425.755200pt;}
.y31{bottom:428.160000pt;}
.y50{bottom:431.200000pt;}
.yd9{bottom:433.600000pt;}
.y108{bottom:436.160000pt;}
.yca{bottom:436.960000pt;}
.y12d{bottom:441.598080pt;}
.yae{bottom:444.480000pt;}
.yee{bottom:451.200000pt;}
.y33{bottom:453.760000pt;}
.y107{bottom:456.000000pt;}
.ya{bottom:457.280000pt;}
.y7e{bottom:458.720000pt;}
.yd8{bottom:460.640000pt;}
.y12c{bottom:460.954880pt;}
.y4f{bottom:461.600000pt;}
.yc9{bottom:464.000000pt;}
.yed{bottom:471.040000pt;}
.y106{bottom:475.840000pt;}
.yac{bottom:476.640000pt;}
.y12b{bottom:480.311680pt;}
.y4e{bottom:481.600000pt;}
.yad{bottom:482.560000pt;}
.y7d{bottom:489.280000pt;}
.yc8{bottom:491.200000pt;}
.yab{bottom:492.000000pt;}
.y30{bottom:492.640000pt;}
.y105{bottom:495.680000pt;}
.yec{bottom:497.920000pt;}
.y4d{bottom:501.440000pt;}
.y12a{bottom:507.676160pt;}
.y9{bottom:507.680000pt;}
.ya9{bottom:514.720000pt;}
.yc7{bottom:518.240000pt;}
.y7c{bottom:519.680000pt;}
.yaa{bottom:520.640000pt;}
.y4c{bottom:521.280000pt;}
.y104{bottom:527.047840pt;}
.y129{bottom:527.194880pt;}
.ya8{bottom:530.080000pt;}
.y2f{bottom:535.520000pt;}
.y7b{bottom:539.680000pt;}
.y4b{bottom:541.120000pt;}
.yc6{bottom:545.440000pt;}
.ya6{bottom:552.800000pt;}
.y128{bottom:554.559360pt;}
.y2e{bottom:556.960000pt;}
.ya7{bottom:558.715200pt;}
.y7a{bottom:559.520000pt;}
.y103{bottom:560.800000pt;}
.y4a{bottom:560.960000pt;}
.y8{bottom:563.360000pt;}
.yc5{bottom:572.640000pt;}
.y127{bottom:573.916160pt;}
.ya5{bottom:577.440000pt;}
.y2c{bottom:578.560000pt;}
.y79{bottom:579.360000pt;}
.y49{bottom:580.800000pt;}
.y126{bottom:593.272960pt;}
.y102{bottom:593.443840pt;}
.y78{bottom:599.200000pt;}
.yc4{bottom:599.680000pt;}
.y48{bottom:600.640000pt;}
.ya3{bottom:609.600000pt;}
.y101{bottom:611.520000pt;}
.y7{bottom:611.840000pt;}
.ya4{bottom:615.520000pt;}
.y77{bottom:619.040000pt;}
.y47{bottom:620.480000pt;}
.y125{bottom:620.637440pt;}
.y2b{bottom:621.440000pt;}
.ya2{bottom:624.960000pt;}
.yc3{bottom:626.880000pt;}
.y63{bottom:631.383040pt;}
.y100{bottom:637.600000pt;}
.y76{bottom:638.880000pt;}
.y124{bottom:640.156160pt;}
.y46{bottom:640.320000pt;}
.y2a{bottom:642.880000pt;}
.ya0{bottom:647.840000pt;}
.y62{bottom:650.577920pt;}
.ya1{bottom:653.755200pt;}
.yc2{bottom:653.920000pt;}
.y75{bottom:658.720000pt;}
.y6{bottom:658.880000pt;}
.y123{bottom:659.512960pt;}
.y27{bottom:664.320000pt;}
.y61{bottom:669.934720pt;}
.y45{bottom:670.880000pt;}
.ybf{bottom:671.520000pt;}
.y9f{bottom:672.480000pt;}
.yc1{bottom:678.080000pt;}
.y74{bottom:678.560000pt;}
.y122{bottom:686.877440pt;}
.ybe{bottom:688.480000pt;}
.y60{bottom:689.291520pt;}
.y44{bottom:690.720000pt;}
.y5{bottom:704.640000pt;}
.y121{bottom:706.234240pt;}
.y25{bottom:707.200000pt;}
.y5f{bottom:708.648320pt;}
.y73{bottom:709.120000pt;}
.y43{bottom:710.560000pt;}
.y9d{bottom:719.840000pt;}
.y120{bottom:725.591040pt;}
.y5e{bottom:727.843200pt;}
.y72{bottom:728.960000pt;}
.y42{bottom:730.400000pt;}
.y9b{bottom:742.720000pt;}
.y24{bottom:744.320000pt;}
.y5d{bottom:747.200000pt;}
.y9c{bottom:748.635200pt;}
.y41{bottom:750.240000pt;}
.y11f{bottom:753.117440pt;}
.y71{bottom:759.520000pt;}
.y4{bottom:763.050080pt;}
.y9a{bottom:767.360000pt;}
.y40{bottom:770.240000pt;}
.y11e{bottom:772.474240pt;}
.y23{bottom:774.880000pt;}
.y70{bottom:779.360000pt;}
.ybd{bottom:790.080000pt;}
.y22{bottom:795.532960pt;}
.y3{bottom:798.080000pt;}
.y6f{bottom:799.200000pt;}
.y97{bottom:799.520000pt;}
.y11d{bottom:799.838720pt;}
.y3f{bottom:800.640000pt;}
.y99{bottom:805.435200pt;}
.y21{bottom:818.727040pt;}
.y6e{bottom:819.040000pt;}
.y11c{bottom:819.195520pt;}
.y3e{bottom:820.480000pt;}
.y147{bottom:823.849600pt;}
.y96{bottom:824.160000pt;}
.y11b{bottom:838.714240pt;}
.y6d{bottom:838.880000pt;}
.y3d{bottom:840.320000pt;}
.y20{bottom:841.771360pt;}
.y146{bottom:843.206400pt;}
.yeb{bottom:843.680000pt;}
.y90{bottom:856.320000pt;}
.y3c{bottom:860.320000pt;}
.y95{bottom:862.225600pt;}
.y145{bottom:862.563200pt;}
.y1f{bottom:864.965440pt;}
.y11a{bottom:866.078720pt;}
.y6c{bottom:869.440000pt;}
.yea{bottom:874.240000pt;}
.y3b{bottom:880.160000pt;}
.y94{bottom:880.950400pt;}
.y119{bottom:885.435520pt;}
.y6b{bottom:889.280000pt;}
.y144{bottom:889.927680pt;}
.ye9{bottom:894.080000pt;}
.y1e{bottom:894.880000pt;}
.y93{bottom:899.675200pt;}
.y8f{bottom:899.680000pt;}
.y3a{bottom:900.000000pt;}
.y2{bottom:905.440000pt;}
.y6a{bottom:909.120000pt;}
.y143{bottom:909.284480pt;}
.y118{bottom:912.800000pt;}
.ye8{bottom:913.920000pt;}
.y1d{bottom:917.943680pt;}
.y92{bottom:918.400000pt;}
.y39{bottom:919.840000pt;}
.yff{bottom:921.600000pt;}
.y142{bottom:928.803200pt;}
.y69{bottom:928.960000pt;}
.ye7{bottom:933.760000pt;}
.y38{bottom:939.680000pt;}
.y1c{bottom:941.137760pt;}
.y117{bottom:943.047200pt;}
.y68{bottom:948.800000pt;}
.y8d{bottom:950.560000pt;}
.yfe{bottom:952.160000pt;}
.ye6{bottom:953.600000pt;}
.y141{bottom:956.167680pt;}
.y37{bottom:959.520000pt;}
.y1b{bottom:964.331840pt;}
.ye5{bottom:973.440000pt;}
.y140{bottom:975.524480pt;}
.y116{bottom:976.799360pt;}
.y36{bottom:979.360000pt;}
.y67{bottom:980.160000pt;}
.y1{bottom:981.760000pt;}
.yd7{bottom:982.720000pt;}
.y1a{bottom:987.525920pt;}
.y8c{bottom:993.280000pt;}
.y13f{bottom:994.881280pt;}
.y19{bottom:1010.720000pt;}
.y5c{bottom:1013.280000pt;}
.y13e{bottom:1014.400000pt;}
.y15{bottom:1041.760000pt;}
.y14{bottom:1059.840000pt;}
.hf{height:21.438667pt;}
.he{height:21.440000pt;}
.hc{height:21.600000pt;}
.h16{height:26.561333pt;}
.h18{height:36.805312pt;}
.h17{height:36.935000pt;}
.h1c{height:37.440000pt;}
.h1a{height:38.128125pt;}
.ha{height:40.796250pt;}
.h9{height:40.911250pt;}
.h1f{height:40.940000pt;}
.h20{height:41.120000pt;}
.h14{height:42.262500pt;}
.hd{height:42.880000pt;}
.h10{height:42.881333pt;}
.h21{height:43.375000pt;}
.h15{height:44.376590pt;}
.h13{height:44.437500pt;}
.h8{height:44.468750pt;}
.h12{height:50.748750pt;}
.h7{height:52.028437pt;}
.h1b{height:56.160000pt;}
.h11{height:64.480000pt;}
.h6{height:65.062500pt;}
.h4{height:74.315000pt;}
.h1d{height:74.565312pt;}
.h1e{height:75.888125pt;}
.hb{height:78.910357pt;}
.h2{height:88.687500pt;}
.h5{height:88.937500pt;}
.h19{height:93.600000pt;}
.h3{height:133.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:59.040000pt;}
.w5{width:80.958667pt;}
.w6{width:130.080000pt;}
.w7{width:142.720000pt;}
.w9{width:150.401333pt;}
.w8{width:179.040000pt;}
.w2{width:236.000000pt;}
.w3{width:359.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x2e{left:8.160000pt;}
.x25{left:9.440000pt;}
.x34{left:10.720000pt;}
.x30{left:12.000000pt;}
.x20{left:17.120000pt;}
.x32{left:18.720000pt;}
.x29{left:21.440000pt;}
.x10{left:84.960000pt;}
.x13{left:92.160000pt;}
.x1{left:94.400000pt;}
.x1f{left:102.080000pt;}
.x2{left:108.640000pt;}
.x3a{left:109.591040pt;}
.x3{left:112.000000pt;}
.x9{left:114.400000pt;}
.x15{left:118.400000pt;}
.x17{left:127.520000pt;}
.x6{left:139.360000pt;}
.x19{left:142.399040pt;}
.x1b{left:154.880000pt;}
.x1a{left:166.398080pt;}
.xe{left:185.600000pt;}
.xf{left:207.840000pt;}
.xb{left:223.680000pt;}
.x1c{left:236.480000pt;}
.xc{left:240.490560pt;}
.x2c{left:243.360000pt;}
.xa{left:273.280000pt;}
.x8{left:298.080000pt;}
.xd{left:300.480000pt;}
.x4{left:306.067360pt;}
.x5{left:314.080000pt;}
.x12{left:320.960000pt;}
.x18{left:326.560000pt;}
.x14{left:328.160000pt;}
.x1d{left:367.200000pt;}
.x7{left:396.800000pt;}
.x36{left:458.240000pt;}
.x1e{left:510.560000pt;}
.x26{left:517.600000pt;}
.x35{left:519.040000pt;}
.x22{left:521.142560pt;}
.x24{left:524.811840pt;}
.x2d{left:526.240000pt;}
.x2a{left:528.800000pt;}
.x21{left:530.080000pt;}
.x31{left:539.200000pt;}
.x23{left:540.504800pt;}
.x33{left:542.240000pt;}
.x16{left:564.960000pt;}
.x2b{left:572.159200pt;}
.x27{left:573.761120pt;}
.x2f{left:574.888640pt;}
.x28{left:576.480000pt;}
.x37{left:603.200000pt;}
.x38{left:663.200000pt;}
.x39{left:672.960000pt;}
}




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