
    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_1c36e5943d22ecb77512e2b4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_bbf7b07dead2674c5c610c80.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_29a5facfa59ee8508c3fda35.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958630;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_43a1207d1d34a848299db3e8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130859;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_acf2040e6137dd4094afa079.woff')format("woff");}.ff5{font-family:ff5;line-height:1.131348;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_cbeb6e260fee158cc42502a7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.133301;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_f84d7fb5f2e8a857bb9bdaf8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040527;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_9b0bab7a7b8fe61e69164fb9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.021131;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2debe59e73295c6f8b0320b8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7ab161d4d7331f4cc4cb215.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5e9b55581c543744efd75050.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2fe76a04fd9fdf54a37d485e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.961048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6f7f7fd40d45633d84a5c131.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_316235a7f72b77d17e8fd090.woff')format("woff");}.ffe{font-family:ffe;line-height:0.958556;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.lsb{letter-spacing:-0.756000px;}
.ls4{letter-spacing:-0.691200px;}
.ls9{letter-spacing:-0.648000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.960000px;}
.ls6{letter-spacing:1.080000px;}
.ls8{letter-spacing:9.840000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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:-17.928000px;}
.ws4f{word-spacing:-16.434000px;}
.ws2f{word-spacing:-15.780000px;}
.ws7{word-spacing:-15.660000px;}
.ws1e{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.880000px;}
.ws6{word-spacing:-14.700000px;}
.ws58{word-spacing:-13.986000px;}
.ws60{word-spacing:-13.824000px;}
.ws50{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.230000px;}
.ws57{word-spacing:-12.636000px;}
.ws8{word-spacing:-12.366000px;}
.ws9{word-spacing:-12.150000px;}
.wsa{word-spacing:-10.992000px;}
.ws1{word-spacing:-10.896000px;}
.ws1d{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.ws30{word-spacing:-8.675040px;}
.ws3d{word-spacing:-2.580000px;}
.ws42{word-spacing:-2.106000px;}
.ws24{word-spacing:-2.040000px;}
.ws39{word-spacing:-1.680000px;}
.ws3a{word-spacing:-1.620000px;}
.ws3e{word-spacing:-1.260000px;}
.ws3b{word-spacing:-1.200000px;}
.ws31{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.ws1a{word-spacing:-0.960000px;}
.ws48{word-spacing:-0.918000px;}
.ws49{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.594000px;}
.ws33{word-spacing:-0.480000px;}
.wsd{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.172800px;}
.ws2d{word-spacing:-0.120000px;}
.ws45{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:0.054000px;}
.ws3f{word-spacing:0.420000px;}
.ws11{word-spacing:0.540000px;}
.ws56{word-spacing:0.648000px;}
.wse{word-spacing:0.691200px;}
.ws59{word-spacing:0.756000px;}
.ws12{word-spacing:0.810000px;}
.ws5a{word-spacing:1.134000px;}
.ws19{word-spacing:1.200000px;}
.ws35{word-spacing:1.500000px;}
.ws18{word-spacing:1.800000px;}
.ws36{word-spacing:1.860000px;}
.ws52{word-spacing:1.920000px;}
.ws53{word-spacing:1.980000px;}
.ws40{word-spacing:2.040000px;}
.ws34{word-spacing:2.100000px;}
.ws44{word-spacing:2.400000px;}
.ws10{word-spacing:2.430000px;}
.ws62{word-spacing:2.700000px;}
.ws5b{word-spacing:2.808000px;}
.ws29{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.ws61{word-spacing:2.970000px;}
.ws23{word-spacing:3.060000px;}
.ws17{word-spacing:3.840000px;}
.ws1b{word-spacing:4.200000px;}
.ws5e{word-spacing:4.374000px;}
.ws55{word-spacing:4.380000px;}
.ws54{word-spacing:4.440000px;}
.ws51{word-spacing:4.500000px;}
.ws41{word-spacing:4.740000px;}
.ws5d{word-spacing:4.914000px;}
.ws43{word-spacing:4.920000px;}
.ws22{word-spacing:4.980000px;}
.ws20{word-spacing:5.460000px;}
.ws14{word-spacing:5.508000px;}
.ws4b{word-spacing:5.760000px;}
.ws4c{word-spacing:5.820000px;}
.ws46{word-spacing:6.180000px;}
.ws15{word-spacing:6.534000px;}
.ws1c{word-spacing:6.840000px;}
.ws3c{word-spacing:6.900000px;}
.ws2b{word-spacing:7.020000px;}
.ws2c{word-spacing:7.080000px;}
.ws4a{word-spacing:7.140000px;}
.ws5f{word-spacing:7.182000px;}
.ws47{word-spacing:7.200000px;}
.ws37{word-spacing:7.380000px;}
.ws5c{word-spacing:7.938000px;}
.ws64{word-spacing:8.370000px;}
.ws27{word-spacing:8.940000px;}
.ws26{word-spacing:9.000000px;}
.ws2a{word-spacing:10.500000px;}
.ws4d{word-spacing:11.400000px;}
.ws4e{word-spacing:11.520000px;}
.ws28{word-spacing:14.640000px;}
.ws38{word-spacing:18.000000px;}
.ws63{word-spacing:21.600000px;}
.ws32{word-spacing:23.100000px;}
._14{margin-left:-12.232800px;}
._e{margin-left:-11.140800px;}
._5{margin-left:-9.435600px;}
._18{margin-left:-8.310600px;}
._12{margin-left:-7.176000px;}
._6{margin-left:-5.924400px;}
._2{margin-left:-4.386000px;}
._3{margin-left:-2.427600px;}
._1{margin-left:-1.387200px;}
._0{width:1.356600px;}
._8{width:2.813400px;}
._9{width:4.411800px;}
._7{width:5.724000px;}
._a{width:6.738000px;}
._b{width:8.658000px;}
._10{width:9.876000px;}
._d{width:10.968000px;}
._f{width:12.522000px;}
._13{width:13.764000px;}
._c{width:16.548000px;}
._19{width:17.881800px;}
._1a{width:20.775600px;}
._15{width:21.906000px;}
._11{width:24.927600px;}
._4{width:36.369600px;}
._17{width:42.746400px;}
._16{width:43.857600px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.040050px;}
.yc1{bottom:112.790850px;}
.y91{bottom:113.060850px;}
.y75{bottom:113.078700px;}
.y68{bottom:113.078850px;}
.yb{bottom:117.205050px;}
.y2b{bottom:117.212700px;}
.ya{bottom:131.601450px;}
.yc0{bottom:133.796850px;}
.y90{bottom:134.066850px;}
.y74{bottom:134.078700px;}
.y67{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y9{bottom:145.997850px;}
.ybf{bottom:154.802850px;}
.y8f{bottom:155.072850px;}
.y73{bottom:155.078700px;}
.y66{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.y8{bottom:160.397850px;}
.ybe{bottom:175.808850px;}
.y72{bottom:176.078700px;}
.y65{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.ybd{bottom:196.814850px;}
.y71{bottom:197.078700px;}
.y64{bottom:197.078850px;}
.y27{bottom:201.212700px;}
.y36{bottom:203.442900px;}
.y8e{bottom:211.441050px;}
.ybc{bottom:217.820850px;}
.y7b{bottom:218.078700px;}
.y63{bottom:218.078850px;}
.y35{bottom:221.438400px;}
.y26{bottom:222.212700px;}
.ybb{bottom:238.826850px;}
.y7a{bottom:239.078700px;}
.y6e{bottom:239.078850px;}
.y34{bottom:239.433900px;}
.y25{bottom:243.212700px;}
.y70{bottom:246.091950px;}
.y62{bottom:253.441050px;}
.y33{bottom:257.429400px;}
.yba{bottom:259.832850px;}
.y79{bottom:260.078700px;}
.y6d{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y6f{bottom:265.896450px;}
.y7e{bottom:272.506950px;}
.y32{bottom:275.424900px;}
.yb9{bottom:280.838850px;}
.y78{bottom:281.078700px;}
.y6c{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y8d{bottom:286.529400px;}
.y31{bottom:293.420400px;}
.yb8{bottom:301.844850px;}
.y77{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y30{bottom:311.415900px;}
.yb7{bottom:322.850850px;}
.y8c{bottom:323.072850px;}
.y60{bottom:323.078850px;}
.y7f{bottom:324.455400px;}
.y21{bottom:327.212700px;}
.yb6{bottom:343.856850px;}
.y8b{bottom:344.072850px;}
.y5f{bottom:344.078850px;}
.y2f{bottom:346.421400px;}
.y20{bottom:348.212700px;}
.y7d{bottom:349.264500px;}
.y76{bottom:351.387750px;}
.y2e{bottom:364.421400px;}
.yb5{bottom:364.862850px;}
.y8a{bottom:365.072850px;}
.y5e{bottom:365.078850px;}
.y7c{bottom:369.069000px;}
.y1f{bottom:369.212700px;}
.y2d{bottom:382.421400px;}
.yb4{bottom:385.868850px;}
.y5d{bottom:386.078850px;}
.y1e{bottom:390.212700px;}
.y2c{bottom:400.421400px;}
.yb3{bottom:406.874850px;}
.y5c{bottom:407.078850px;}
.y1d{bottom:411.212700px;}
.y89{bottom:412.529400px;}
.yb2{bottom:427.880850px;}
.y5b{bottom:428.078850px;}
.y1c{bottom:432.212700px;}
.yb1{bottom:448.886850px;}
.y5a{bottom:449.078850px;}
.y1b{bottom:453.212700px;}
.yb0{bottom:469.892850px;}
.y59{bottom:470.078850px;}
.y88{bottom:475.529400px;}
.y1a{bottom:487.448400px;}
.yaf{bottom:490.898850px;}
.y6b{bottom:491.078850px;}
.y58{bottom:505.441050px;}
.yae{bottom:511.904850px;}
.y87{bottom:512.066850px;}
.y6a{bottom:512.078850px;}
.yad{bottom:532.910850px;}
.y86{bottom:533.072850px;}
.y69{bottom:533.078850px;}
.yac{bottom:553.916850px;}
.y57{bottom:554.078850px;}
.y19{bottom:572.227950px;}
.yab{bottom:574.922850px;}
.y56{bottom:575.078850px;}
.y85{bottom:580.529400px;}
.yaa{bottom:595.928850px;}
.y55{bottom:596.078850px;}
.y18{bottom:613.242900px;}
.ya9{bottom:616.934850px;}
.y54{bottom:617.078850px;}
.y17{bottom:633.047400px;}
.ya8{bottom:637.940850px;}
.y53{bottom:638.078850px;}
.y84{bottom:643.529400px;}
.y16{bottom:652.851900px;}
.ya7{bottom:658.946850px;}
.y52{bottom:659.078850px;}
.y15{bottom:672.656400px;}
.ya6{bottom:679.952850px;}
.y51{bottom:680.078850px;}
.y14{bottom:692.460900px;}
.ya5{bottom:700.958850px;}
.y50{bottom:701.078850px;}
.y83{bottom:706.529400px;}
.y13{bottom:712.265400px;}
.ya4{bottom:721.964850px;}
.y4f{bottom:722.078850px;}
.y12{bottom:732.069900px;}
.ya3{bottom:742.970850px;}
.y4e{bottom:743.078850px;}
.y11{bottom:751.874400px;}
.ya2{bottom:763.976850px;}
.y4d{bottom:764.078850px;}
.y82{bottom:769.937100px;}
.y10{bottom:771.678900px;}
.ya1{bottom:784.982850px;}
.y4c{bottom:785.078850px;}
.yf{bottom:791.483400px;}
.y81{bottom:799.441050px;}
.ya0{bottom:805.988850px;}
.y4b{bottom:806.078850px;}
.ye{bottom:811.287900px;}
.y9f{bottom:826.994850px;}
.y4a{bottom:827.078850px;}
.yd{bottom:842.385300px;}
.y9e{bottom:848.000850px;}
.y49{bottom:848.078850px;}
.y9d{bottom:869.006850px;}
.y48{bottom:869.078850px;}
.y9c{bottom:890.012850px;}
.y47{bottom:890.078850px;}
.y9b{bottom:911.018850px;}
.y46{bottom:911.078850px;}
.y7{bottom:921.666900px;}
.y9a{bottom:932.024850px;}
.y45{bottom:932.078850px;}
.y6{bottom:939.666900px;}
.y99{bottom:953.030850px;}
.y44{bottom:953.078850px;}
.y5{bottom:957.666900px;}
.y80{bottom:967.441050px;}
.y98{bottom:974.036850px;}
.y43{bottom:974.078850px;}
.y4{bottom:992.674800px;}
.y97{bottom:995.042850px;}
.y42{bottom:995.078850px;}
.y3{bottom:1012.474800px;}
.y96{bottom:1016.048850px;}
.y41{bottom:1016.078850px;}
.y95{bottom:1037.054850px;}
.y40{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y94{bottom:1058.060850px;}
.y3f{bottom:1058.078850px;}
.y93{bottom:1079.066850px;}
.y3e{bottom:1079.078850px;}
.y92{bottom:1100.072850px;}
.y3d{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.y3c{bottom:1121.078850px;}
.y38{bottom:1159.189500px;}
.y37{bottom:1178.689500px;}
.y3b{bottom:1178.692050px;}
.h2{height:38.507812px;}
.h6{height:39.044531px;}
.h7{height:43.004883px;}
.h5{height:43.265625px;}
.hd{height:43.321289px;}
.he{height:43.382812px;}
.h9{height:48.673828px;}
.h12{height:48.697828px;}
.hc{height:48.805664px;}
.h8{height:49.628906px;}
.h11{height:50.176758px;}
.hb{height:54.082031px;}
.h10{height:54.591797px;}
.hf{height:54.738281px;}
.h4{height:59.490234px;}
.ha{height:59.554688px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xc{left:107.071650px;}
.xd{left:108.285450px;}
.x7{left:119.878950px;}
.x8{left:122.032500px;}
.x9{left:124.102950px;}
.x5{left:300.189000px;}
.x6{left:317.199000px;}
.x4{left:396.050700px;}
.xb{left:645.900000px;}
.xa{left:678.792000px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.lsb{letter-spacing:-0.672000pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.853333pt;}
.ls6{letter-spacing:0.960000pt;}
.ls8{letter-spacing:8.746667pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws5{word-spacing:-15.936000pt;}
.ws4f{word-spacing:-14.608000pt;}
.ws2f{word-spacing:-14.026667pt;}
.ws7{word-spacing:-13.920000pt;}
.ws1e{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.226667pt;}
.ws6{word-spacing:-13.066667pt;}
.ws58{word-spacing:-12.432000pt;}
.ws60{word-spacing:-12.288000pt;}
.ws50{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.760000pt;}
.ws57{word-spacing:-11.232000pt;}
.ws8{word-spacing:-10.992000pt;}
.ws9{word-spacing:-10.800000pt;}
.wsa{word-spacing:-9.770667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws1d{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.ws30{word-spacing:-7.711147pt;}
.ws3d{word-spacing:-2.293333pt;}
.ws42{word-spacing:-1.872000pt;}
.ws24{word-spacing:-1.813333pt;}
.ws39{word-spacing:-1.493333pt;}
.ws3a{word-spacing:-1.440000pt;}
.ws3e{word-spacing:-1.120000pt;}
.ws3b{word-spacing:-1.066667pt;}
.ws31{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws1a{word-spacing:-0.853333pt;}
.ws48{word-spacing:-0.816000pt;}
.ws49{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.528000pt;}
.ws33{word-spacing:-0.426667pt;}
.wsd{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.153600pt;}
.ws2d{word-spacing:-0.106667pt;}
.ws45{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:0.048000pt;}
.ws3f{word-spacing:0.373333pt;}
.ws11{word-spacing:0.480000pt;}
.ws56{word-spacing:0.576000pt;}
.wse{word-spacing:0.614400pt;}
.ws59{word-spacing:0.672000pt;}
.ws12{word-spacing:0.720000pt;}
.ws5a{word-spacing:1.008000pt;}
.ws19{word-spacing:1.066667pt;}
.ws35{word-spacing:1.333333pt;}
.ws18{word-spacing:1.600000pt;}
.ws36{word-spacing:1.653333pt;}
.ws52{word-spacing:1.706667pt;}
.ws53{word-spacing:1.760000pt;}
.ws40{word-spacing:1.813333pt;}
.ws34{word-spacing:1.866667pt;}
.ws44{word-spacing:2.133333pt;}
.ws10{word-spacing:2.160000pt;}
.ws62{word-spacing:2.400000pt;}
.ws5b{word-spacing:2.496000pt;}
.ws29{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws61{word-spacing:2.640000pt;}
.ws23{word-spacing:2.720000pt;}
.ws17{word-spacing:3.413333pt;}
.ws1b{word-spacing:3.733333pt;}
.ws5e{word-spacing:3.888000pt;}
.ws55{word-spacing:3.893333pt;}
.ws54{word-spacing:3.946667pt;}
.ws51{word-spacing:4.000000pt;}
.ws41{word-spacing:4.213333pt;}
.ws5d{word-spacing:4.368000pt;}
.ws43{word-spacing:4.373333pt;}
.ws22{word-spacing:4.426667pt;}
.ws20{word-spacing:4.853333pt;}
.ws14{word-spacing:4.896000pt;}
.ws4b{word-spacing:5.120000pt;}
.ws4c{word-spacing:5.173333pt;}
.ws46{word-spacing:5.493333pt;}
.ws15{word-spacing:5.808000pt;}
.ws1c{word-spacing:6.080000pt;}
.ws3c{word-spacing:6.133333pt;}
.ws2b{word-spacing:6.240000pt;}
.ws2c{word-spacing:6.293333pt;}
.ws4a{word-spacing:6.346667pt;}
.ws5f{word-spacing:6.384000pt;}
.ws47{word-spacing:6.400000pt;}
.ws37{word-spacing:6.560000pt;}
.ws5c{word-spacing:7.056000pt;}
.ws64{word-spacing:7.440000pt;}
.ws27{word-spacing:7.946667pt;}
.ws26{word-spacing:8.000000pt;}
.ws2a{word-spacing:9.333333pt;}
.ws4d{word-spacing:10.133333pt;}
.ws4e{word-spacing:10.240000pt;}
.ws28{word-spacing:13.013333pt;}
.ws38{word-spacing:16.000000pt;}
.ws63{word-spacing:19.200000pt;}
.ws32{word-spacing:20.533333pt;}
._14{margin-left:-10.873600pt;}
._e{margin-left:-9.902933pt;}
._5{margin-left:-8.387200pt;}
._18{margin-left:-7.387200pt;}
._12{margin-left:-6.378667pt;}
._6{margin-left:-5.266133pt;}
._2{margin-left:-3.898667pt;}
._3{margin-left:-2.157867pt;}
._1{margin-left:-1.233067pt;}
._0{width:1.205867pt;}
._8{width:2.500800pt;}
._9{width:3.921600pt;}
._7{width:5.088000pt;}
._a{width:5.989333pt;}
._b{width:7.696000pt;}
._10{width:8.778667pt;}
._d{width:9.749333pt;}
._f{width:11.130667pt;}
._13{width:12.234667pt;}
._c{width:14.709333pt;}
._19{width:15.894933pt;}
._1a{width:18.467200pt;}
._15{width:19.472000pt;}
._11{width:22.157867pt;}
._4{width:32.328533pt;}
._17{width:37.996800pt;}
._16{width:38.984533pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.702267pt;}
.yc1{bottom:100.258533pt;}
.y91{bottom:100.498533pt;}
.y75{bottom:100.514400pt;}
.y68{bottom:100.514533pt;}
.yb{bottom:104.182267pt;}
.y2b{bottom:104.189067pt;}
.ya{bottom:116.979067pt;}
.yc0{bottom:118.930533pt;}
.y90{bottom:119.170533pt;}
.y74{bottom:119.181067pt;}
.y67{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y9{bottom:129.775867pt;}
.ybf{bottom:137.602533pt;}
.y8f{bottom:137.842533pt;}
.y73{bottom:137.847733pt;}
.y66{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.y8{bottom:142.575867pt;}
.ybe{bottom:156.274533pt;}
.y72{bottom:156.514400pt;}
.y65{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.ybd{bottom:174.946533pt;}
.y71{bottom:175.181067pt;}
.y64{bottom:175.181200pt;}
.y27{bottom:178.855733pt;}
.y36{bottom:180.838133pt;}
.y8e{bottom:187.947600pt;}
.ybc{bottom:193.618533pt;}
.y7b{bottom:193.847733pt;}
.y63{bottom:193.847867pt;}
.y35{bottom:196.834133pt;}
.y26{bottom:197.522400pt;}
.ybb{bottom:212.290533pt;}
.y7a{bottom:212.514400pt;}
.y6e{bottom:212.514533pt;}
.y34{bottom:212.830133pt;}
.y25{bottom:216.189067pt;}
.y70{bottom:218.748400pt;}
.y62{bottom:225.280933pt;}
.y33{bottom:228.826133pt;}
.yba{bottom:230.962533pt;}
.y79{bottom:231.181067pt;}
.y6d{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y6f{bottom:236.352400pt;}
.y7e{bottom:242.228400pt;}
.y32{bottom:244.822133pt;}
.yb9{bottom:249.634533pt;}
.y78{bottom:249.847733pt;}
.y6c{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y8d{bottom:254.692800pt;}
.y31{bottom:260.818133pt;}
.yb8{bottom:268.306533pt;}
.y77{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y30{bottom:276.814133pt;}
.yb7{bottom:286.978533pt;}
.y8c{bottom:287.175867pt;}
.y60{bottom:287.181200pt;}
.y7f{bottom:288.404800pt;}
.y21{bottom:290.855733pt;}
.yb6{bottom:305.650533pt;}
.y8b{bottom:305.842533pt;}
.y5f{bottom:305.847867pt;}
.y2f{bottom:307.930133pt;}
.y20{bottom:309.522400pt;}
.y7d{bottom:310.457333pt;}
.y76{bottom:312.344667pt;}
.y2e{bottom:323.930133pt;}
.yb5{bottom:324.322533pt;}
.y8a{bottom:324.509200pt;}
.y5e{bottom:324.514533pt;}
.y7c{bottom:328.061333pt;}
.y1f{bottom:328.189067pt;}
.y2d{bottom:339.930133pt;}
.yb4{bottom:342.994533pt;}
.y5d{bottom:343.181200pt;}
.y1e{bottom:346.855733pt;}
.y2c{bottom:355.930133pt;}
.yb3{bottom:361.666533pt;}
.y5c{bottom:361.847867pt;}
.y1d{bottom:365.522400pt;}
.y89{bottom:366.692800pt;}
.yb2{bottom:380.338533pt;}
.y5b{bottom:380.514533pt;}
.y1c{bottom:384.189067pt;}
.yb1{bottom:399.010533pt;}
.y5a{bottom:399.181200pt;}
.y1b{bottom:402.855733pt;}
.yb0{bottom:417.682533pt;}
.y59{bottom:417.847867pt;}
.y88{bottom:422.692800pt;}
.y1a{bottom:433.287467pt;}
.yaf{bottom:436.354533pt;}
.y6b{bottom:436.514533pt;}
.y58{bottom:449.280933pt;}
.yae{bottom:455.026533pt;}
.y87{bottom:455.170533pt;}
.y6a{bottom:455.181200pt;}
.yad{bottom:473.698533pt;}
.y86{bottom:473.842533pt;}
.y69{bottom:473.847867pt;}
.yac{bottom:492.370533pt;}
.y57{bottom:492.514533pt;}
.y19{bottom:508.647067pt;}
.yab{bottom:511.042533pt;}
.y56{bottom:511.181200pt;}
.y85{bottom:516.026133pt;}
.yaa{bottom:529.714533pt;}
.y55{bottom:529.847867pt;}
.y18{bottom:545.104800pt;}
.ya9{bottom:548.386533pt;}
.y54{bottom:548.514533pt;}
.y17{bottom:562.708800pt;}
.ya8{bottom:567.058533pt;}
.y53{bottom:567.181200pt;}
.y84{bottom:572.026133pt;}
.y16{bottom:580.312800pt;}
.ya7{bottom:585.730533pt;}
.y52{bottom:585.847867pt;}
.y15{bottom:597.916800pt;}
.ya6{bottom:604.402533pt;}
.y51{bottom:604.514533pt;}
.y14{bottom:615.520800pt;}
.ya5{bottom:623.074533pt;}
.y50{bottom:623.181200pt;}
.y83{bottom:628.026133pt;}
.y13{bottom:633.124800pt;}
.ya4{bottom:641.746533pt;}
.y4f{bottom:641.847867pt;}
.y12{bottom:650.728800pt;}
.ya3{bottom:660.418533pt;}
.y4e{bottom:660.514533pt;}
.y11{bottom:668.332800pt;}
.ya2{bottom:679.090533pt;}
.y4d{bottom:679.181200pt;}
.y82{bottom:684.388533pt;}
.y10{bottom:685.936800pt;}
.ya1{bottom:697.762533pt;}
.y4c{bottom:697.847867pt;}
.yf{bottom:703.540800pt;}
.y81{bottom:710.614267pt;}
.ya0{bottom:716.434533pt;}
.y4b{bottom:716.514533pt;}
.ye{bottom:721.144800pt;}
.y9f{bottom:735.106533pt;}
.y4a{bottom:735.181200pt;}
.yd{bottom:748.786933pt;}
.y9e{bottom:753.778533pt;}
.y49{bottom:753.847867pt;}
.y9d{bottom:772.450533pt;}
.y48{bottom:772.514533pt;}
.y9c{bottom:791.122533pt;}
.y47{bottom:791.181200pt;}
.y9b{bottom:809.794533pt;}
.y46{bottom:809.847867pt;}
.y7{bottom:819.259467pt;}
.y9a{bottom:828.466533pt;}
.y45{bottom:828.514533pt;}
.y6{bottom:835.259467pt;}
.y99{bottom:847.138533pt;}
.y44{bottom:847.181200pt;}
.y5{bottom:851.259467pt;}
.y80{bottom:859.947600pt;}
.y98{bottom:865.810533pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:882.377600pt;}
.y97{bottom:884.482533pt;}
.y42{bottom:884.514533pt;}
.y3{bottom:899.977600pt;}
.y96{bottom:903.154533pt;}
.y41{bottom:903.181200pt;}
.y95{bottom:921.826533pt;}
.y40{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y94{bottom:940.498533pt;}
.y3f{bottom:940.514533pt;}
.y93{bottom:959.170533pt;}
.y3e{bottom:959.181200pt;}
.y92{bottom:977.842533pt;}
.y3d{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.y3c{bottom:996.514533pt;}
.y38{bottom:1030.390667pt;}
.y37{bottom:1047.724000pt;}
.y3b{bottom:1047.726267pt;}
.h2{height:34.229167pt;}
.h6{height:34.706250pt;}
.h7{height:38.226562pt;}
.h5{height:38.458333pt;}
.hd{height:38.507812pt;}
.he{height:38.562500pt;}
.h9{height:43.265625pt;}
.h12{height:43.286958pt;}
.hc{height:43.382812pt;}
.h8{height:44.114583pt;}
.h11{height:44.601562pt;}
.hb{height:48.072917pt;}
.h10{height:48.526042pt;}
.hf{height:48.656250pt;}
.h4{height:52.880208pt;}
.ha{height:52.937500pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xc{left:95.174800pt;}
.xd{left:96.253733pt;}
.x7{left:106.559067pt;}
.x8{left:108.473333pt;}
.x9{left:110.313733pt;}
.x5{left:266.834667pt;}
.x6{left:281.954667pt;}
.x4{left:352.045067pt;}
.xb{left:574.133333pt;}
.xa{left:603.370667pt;}
.x1{left:717.405733pt;}
}




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