
    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_be694443fcfe7649ca9f5126.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863281;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_66639de92bf30de02cc5292a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_48b9f822dbb857e204e0e74c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_ab49d6c4c580009d240c8360.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710449;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:16.610400px;}
.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:-55.944000px;}
.ws1{word-spacing:-51.515100px;}
.ws3{word-spacing:-45.003900px;}
.ws2{word-spacing:-44.604900px;}
.ws4{word-spacing:-38.865600px;}
.wsa1{word-spacing:-38.663700px;}
.ws55{word-spacing:-38.661300px;}
.ws9e{word-spacing:-38.656800px;}
.ws9f{word-spacing:-38.644500px;}
.wsa0{word-spacing:-38.640000px;}
.ws95{word-spacing:-38.598000px;}
.ws2d{word-spacing:-38.572200px;}
.ws76{word-spacing:-38.430000px;}
.ws96{word-spacing:-38.369100px;}
.ws1c{word-spacing:-38.166000px;}
.ws67{word-spacing:-38.160000px;}
.ws52{word-spacing:-38.154000px;}
.ws28{word-spacing:-38.143200px;}
.wsa3{word-spacing:-38.091300px;}
.ws85{word-spacing:-38.075400px;}
.ws1e{word-spacing:-37.944000px;}
.wsa2{word-spacing:-37.943100px;}
.ws59{word-spacing:-37.942200px;}
.ws65{word-spacing:-37.938600px;}
.ws86{word-spacing:-37.932600px;}
.ws45{word-spacing:-37.872000px;}
.ws73{word-spacing:-37.868400px;}
.ws41{word-spacing:-37.866600px;}
.ws9c{word-spacing:-37.866000px;}
.ws4e{word-spacing:-37.863000px;}
.ws7{word-spacing:-37.862400px;}
.ws69{word-spacing:-37.726200px;}
.ws9d{word-spacing:-37.722600px;}
.ws34{word-spacing:-37.440000px;}
.ws2e{word-spacing:-37.425600px;}
.ws1d{word-spacing:-37.414200px;}
.ws40{word-spacing:-37.349400px;}
.ws42{word-spacing:-37.224000px;}
.wsa4{word-spacing:-37.212600px;}
.ws6d{word-spacing:-37.201800px;}
.ws5d{word-spacing:-37.152000px;}
.ws1b{word-spacing:-36.720000px;}
.ws97{word-spacing:-36.714600px;}
.ws31{word-spacing:-36.490500px;}
.ws1a{word-spacing:-36.432000px;}
.ws29{word-spacing:-36.006000px;}
.ws22{word-spacing:-36.000000px;}
.ws43{word-spacing:-35.996400px;}
.ws3c{word-spacing:-35.993700px;}
.ws0{word-spacing:-35.679300px;}
.ws2b{word-spacing:-35.566200px;}
.ws32{word-spacing:-35.549400px;}
.ws74{word-spacing:-35.286000px;}
.ws13{word-spacing:-35.280000px;}
.ws3e{word-spacing:-35.274600px;}
.wsb{word-spacing:-34.344000px;}
.ws4f{word-spacing:-34.332600px;}
.ws7f{word-spacing:-34.272000px;}
.ws10{word-spacing:-33.840000px;}
.ws93{word-spacing:-33.624000px;}
.ws20{word-spacing:-33.548400px;}
.ws44{word-spacing:-33.126000px;}
.ws9{word-spacing:-33.120000px;}
.ws3f{word-spacing:-32.904000px;}
.ws51{word-spacing:-32.902200px;}
.ws71{word-spacing:-32.900400px;}
.ws66{word-spacing:-32.895900px;}
.ws57{word-spacing:-32.893200px;}
.ws6e{word-spacing:-32.830200px;}
.ws21{word-spacing:-32.400000px;}
.ws6f{word-spacing:-32.190000px;}
.ws8{word-spacing:-32.184000px;}
.ws12{word-spacing:-32.180400px;}
.ws84{word-spacing:-32.160000px;}
.ws89{word-spacing:-32.110200px;}
.ws4d{word-spacing:-32.094900px;}
.ws90{word-spacing:-31.966200px;}
.ws50{word-spacing:-31.680000px;}
.ws37{word-spacing:-31.470000px;}
.ws83{word-spacing:-31.455900px;}
.ws8e{word-spacing:-31.450500px;}
.ws88{word-spacing:-31.398000px;}
.wsf{word-spacing:-31.392000px;}
.ws64{word-spacing:-30.966000px;}
.ws56{word-spacing:-30.960000px;}
.wsc{word-spacing:-30.954000px;}
.ws6{word-spacing:-30.744000px;}
.ws98{word-spacing:-30.240000px;}
.ws77{word-spacing:-29.526000px;}
.ws18{word-spacing:-29.520000px;}
.ws62{word-spacing:-29.310000px;}
.ws35{word-spacing:-29.304000px;}
.wsd{word-spacing:-28.800000px;}
.ws82{word-spacing:-28.782000px;}
.ws4c{word-spacing:-28.086000px;}
.ws14{word-spacing:-28.080000px;}
.ws8b{word-spacing:-27.360000px;}
.ws9a{word-spacing:-26.430000px;}
.ws78{word-spacing:-26.415900px;}
.ws8f{word-spacing:-26.202000px;}
.ws11{word-spacing:-25.926000px;}
.wsa{word-spacing:-25.920000px;}
.ws25{word-spacing:-25.914600px;}
.ws2c{word-spacing:-25.704000px;}
.ws9b{word-spacing:-25.624800px;}
.ws4b{word-spacing:-25.206000px;}
.ws23{word-spacing:-25.200000px;}
.ws2a{word-spacing:-24.986400px;}
.ws15{word-spacing:-24.961800px;}
.ws81{word-spacing:-24.916200px;}
.ws47{word-spacing:-24.480000px;}
.ws91{word-spacing:-23.766000px;}
.ws48{word-spacing:-23.040000px;}
.ws7c{word-spacing:-23.031900px;}
.ws68{word-spacing:-22.824000px;}
.ws72{word-spacing:-22.818000px;}
.wse{word-spacing:-22.728600px;}
.ws8c{word-spacing:-22.316400px;}
.ws46{word-spacing:-22.314600px;}
.ws4a{word-spacing:-22.104000px;}
.ws79{word-spacing:-22.031100px;}
.ws54{word-spacing:-21.303000px;}
.ws2f{word-spacing:-20.880000px;}
.ws5c{word-spacing:-20.448000px;}
.ws7e{word-spacing:-20.166000px;}
.ws26{word-spacing:-20.160000px;}
.ws38{word-spacing:-19.937400px;}
.ws99{word-spacing:-19.440000px;}
.ws87{word-spacing:-19.230000px;}
.ws94{word-spacing:-19.224000px;}
.ws58{word-spacing:-19.007100px;}
.ws8a{word-spacing:-18.720000px;}
.ws75{word-spacing:-18.504000px;}
.ws70{word-spacing:-17.280000px;}
.ws36{word-spacing:-17.064000px;}
.ws7a{word-spacing:-16.566000px;}
.ws16{word-spacing:-16.344000px;}
.ws6a{word-spacing:-16.127100px;}
.ws5e{word-spacing:-15.840000px;}
.ws6b{word-spacing:-15.620400px;}
.ws60{word-spacing:-15.615000px;}
.ws5b{word-spacing:-14.382000px;}
.ws63{word-spacing:-14.184000px;}
.ws19{word-spacing:-12.966000px;}
.ws5a{word-spacing:-12.960000px;}
.ws8d{word-spacing:-12.951000px;}
.ws7d{word-spacing:-12.009600px;}
.ws7b{word-spacing:-11.808000px;}
.ws30{word-spacing:-11.526000px;}
.ws3a{word-spacing:-11.520000px;}
.ws61{word-spacing:-10.794000px;}
.ws5f{word-spacing:-10.080000px;}
.ws17{word-spacing:-8.339400px;}
.ws24{word-spacing:-7.926000px;}
.ws33{word-spacing:-5.536800px;}
.ws39{word-spacing:-4.312800px;}
.ws49{word-spacing:-3.370200px;}
.ws53{word-spacing:-0.496800px;}
.ws1f{word-spacing:0.000000px;}
.ws3d{word-spacing:3.103200px;}
.ws3b{word-spacing:3.600000px;}
.ws27{word-spacing:5.760000px;}
.ws80{word-spacing:7.206000px;}
.ws6c{word-spacing:8.952000px;}
.ws92{word-spacing:11.088000px;}
._0{margin-left:-1.140900px;}
._2{width:1.136700px;}
._1{width:17.327700px;}
._3{width:18.994500px;}
._17{width:20.094000px;}
._b{width:21.102000px;}
._8{width:22.614000px;}
._6{width:24.054000px;}
._5{width:25.287300px;}
._4{width:26.805300px;}
._9{width:28.332600px;}
._7{width:31.284600px;}
._10{width:32.286900px;}
._1d{width:33.360000px;}
._a{width:34.608600px;}
._11{width:36.150000px;}
._e{width:37.173300px;}
._1a{width:38.491800px;}
._14{width:39.894000px;}
._19{width:40.905300px;}
._1b{width:42.852900px;}
._d{width:43.998000px;}
._12{width:45.477300px;}
._1c{width:47.382000px;}
._c{width:49.451400px;}
._13{width:51.687600px;}
._15{width:53.337300px;}
._18{width:56.938500px;}
._16{width:61.206000px;}
._f{width:63.000000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.600000px;}
.fs4{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.315000px;}
.y62{bottom:124.996500px;}
.y61{bottom:145.696500px;}
.y90{bottom:146.415000px;}
.y60{bottom:166.396500px;}
.y8f{bottom:167.115000px;}
.y5f{bottom:187.096500px;}
.y8e{bottom:187.815000px;}
.y5e{bottom:207.795000px;}
.y8d{bottom:208.515000px;}
.y5d{bottom:228.496500px;}
.y8c{bottom:229.215000px;}
.y5c{bottom:249.196500px;}
.y8b{bottom:249.915000px;}
.y5b{bottom:269.896500px;}
.y8a{bottom:270.436500px;}
.y1f{bottom:288.436500px;}
.y44{bottom:289.515000px;}
.y5a{bottom:290.596500px;}
.y89{bottom:291.136500px;}
.yba{bottom:292.036500px;}
.y43{bottom:310.215000px;}
.y59{bottom:311.295000px;}
.y88{bottom:311.836500px;}
.yb9{bottom:312.736500px;}
.y1e{bottom:327.136500px;}
.y42{bottom:330.915000px;}
.y58{bottom:331.996500px;}
.y87{bottom:332.536500px;}
.yb8{bottom:333.436500px;}
.y1d{bottom:347.836500px;}
.y41{bottom:351.615000px;}
.y57{bottom:352.696500px;}
.y86{bottom:353.236500px;}
.yb7{bottom:354.136500px;}
.y1c{bottom:368.536500px;}
.y40{bottom:372.315000px;}
.y56{bottom:373.396500px;}
.y85{bottom:373.936500px;}
.yb6{bottom:374.836500px;}
.y1b{bottom:389.236500px;}
.y3f{bottom:393.015000px;}
.y55{bottom:394.096500px;}
.y84{bottom:394.636500px;}
.y1a{bottom:409.936500px;}
.yb5{bottom:413.536500px;}
.y3e{bottom:413.715000px;}
.y54{bottom:414.795000px;}
.y83{bottom:415.336500px;}
.y19{bottom:430.636500px;}
.yb4{bottom:434.236500px;}
.y3d{bottom:434.415000px;}
.y53{bottom:435.496500px;}
.y82{bottom:436.036500px;}
.y18{bottom:451.336500px;}
.yb3{bottom:454.936500px;}
.y3c{bottom:455.115000px;}
.y52{bottom:456.196500px;}
.y81{bottom:456.736500px;}
.y17{bottom:472.036500px;}
.yb2{bottom:475.636500px;}
.y3b{bottom:475.815000px;}
.y51{bottom:476.896500px;}
.y80{bottom:477.436500px;}
.y16{bottom:492.736500px;}
.y3a{bottom:496.515000px;}
.y50{bottom:497.596500px;}
.y7f{bottom:498.136500px;}
.y15{bottom:513.436500px;}
.yb1{bottom:514.336500px;}
.y39{bottom:517.215000px;}
.y4f{bottom:518.296500px;}
.y7e{bottom:518.836500px;}
.y14{bottom:534.136500px;}
.yb0{bottom:535.036500px;}
.y38{bottom:537.915000px;}
.y7d{bottom:539.536500px;}
.y13{bottom:554.836500px;}
.yaf{bottom:555.736500px;}
.y37{bottom:558.615000px;}
.y4e{bottom:559.695000px;}
.y7c{bottom:560.236500px;}
.y12{bottom:575.536500px;}
.yae{bottom:576.436500px;}
.y36{bottom:579.315000px;}
.y7b{bottom:580.936500px;}
.y11{bottom:596.236500px;}
.yad{bottom:597.136500px;}
.y35{bottom:600.015000px;}
.y7a{bottom:601.636500px;}
.y10{bottom:616.936500px;}
.yac{bottom:617.836500px;}
.y34{bottom:620.715000px;}
.y79{bottom:622.336500px;}
.yf{bottom:637.636500px;}
.y33{bottom:641.415000px;}
.y78{bottom:643.036500px;}
.yab{bottom:656.536500px;}
.ye{bottom:658.336500px;}
.y32{bottom:662.115000px;}
.y77{bottom:663.736500px;}
.yaa{bottom:677.236500px;}
.yd{bottom:679.036500px;}
.y31{bottom:682.815000px;}
.y76{bottom:684.436500px;}
.ya9{bottom:697.936500px;}
.yc{bottom:699.736500px;}
.y30{bottom:703.515000px;}
.y75{bottom:705.136500px;}
.yb{bottom:720.436500px;}
.y2f{bottom:724.215000px;}
.y74{bottom:725.836500px;}
.ya8{bottom:736.636500px;}
.ya{bottom:741.136500px;}
.y2e{bottom:744.915000px;}
.y73{bottom:746.536500px;}
.ya7{bottom:757.336500px;}
.y9{bottom:761.836500px;}
.y2d{bottom:765.615000px;}
.y72{bottom:767.236500px;}
.ya6{bottom:778.036500px;}
.y8{bottom:782.536500px;}
.y2c{bottom:786.315000px;}
.y71{bottom:787.936500px;}
.y7{bottom:803.236500px;}
.y2b{bottom:807.015000px;}
.y4d{bottom:808.096500px;}
.y70{bottom:808.636500px;}
.ya5{bottom:816.736500px;}
.y6{bottom:823.936500px;}
.y2a{bottom:827.715000px;}
.y6f{bottom:829.336500px;}
.ya4{bottom:837.436500px;}
.y29{bottom:848.415000px;}
.y4c{bottom:849.496500px;}
.y6e{bottom:850.036500px;}
.y5{bottom:862.636500px;}
.y28{bottom:869.115000px;}
.y4b{bottom:870.195000px;}
.y6d{bottom:870.736500px;}
.y9e{bottom:873.436500px;}
.ya3{bottom:876.136500px;}
.y27{bottom:889.815000px;}
.y4a{bottom:890.895000px;}
.y6c{bottom:891.436500px;}
.y9d{bottom:894.136500px;}
.ya2{bottom:896.836500px;}
.y4{bottom:905.655000px;}
.y26{bottom:910.515000px;}
.y49{bottom:911.595000px;}
.y92{bottom:912.136500px;}
.y9c{bottom:914.836500px;}
.ya1{bottom:917.536500px;}
.y25{bottom:931.215000px;}
.y48{bottom:932.295000px;}
.y6b{bottom:932.836500px;}
.y9b{bottom:935.536500px;}
.ya0{bottom:938.236500px;}
.y3{bottom:940.936500px;}
.y24{bottom:951.915000px;}
.y47{bottom:952.995000px;}
.y91{bottom:953.536500px;}
.y9a{bottom:956.236500px;}
.y9f{bottom:958.936500px;}
.y2{bottom:967.036500px;}
.y23{bottom:972.615000px;}
.y6a{bottom:974.236500px;}
.y99{bottom:976.936500px;}
.y22{bottom:993.315000px;}
.y46{bottom:994.395000px;}
.y69{bottom:994.936500px;}
.y98{bottom:997.636500px;}
.y21{bottom:1014.015000px;}
.y68{bottom:1015.636500px;}
.y97{bottom:1018.336500px;}
.y67{bottom:1036.336500px;}
.y96{bottom:1039.036500px;}
.y45{bottom:1046.236500px;}
.y20{bottom:1057.036500px;}
.y95{bottom:1059.736500px;}
.y66{bottom:1077.736500px;}
.y94{bottom:1080.436500px;}
.y65{bottom:1098.436500px;}
.y93{bottom:1101.136500px;}
.y64{bottom:1119.136500px;}
.y63{bottom:1139.836500px;}
.h2{height:36.574365px;}
.h6{height:63.175781px;}
.h5{height:63.949219px;}
.h4{height:65.326992px;}
.h3{height:74.873877px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.438500px;}
.x3{left:151.560000px;}
.x4{left:157.320000px;}
.xf{left:167.938500px;}
.x2{left:176.760000px;}
.x6{left:180.538500px;}
.x7{left:182.700000px;}
.xa{left:185.038500px;}
.xe{left:317.160000px;}
.xc{left:330.660000px;}
.x9{left:352.800000px;}
.xb{left:367.020000px;}
.xd{left:383.760000px;}
.x8{left:413.820000px;}
.x5{left:415.438500px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:14.764800pt;}
.ws5{word-spacing:-49.728000pt;}
.ws1{word-spacing:-45.791200pt;}
.ws3{word-spacing:-40.003467pt;}
.ws2{word-spacing:-39.648800pt;}
.ws4{word-spacing:-34.547200pt;}
.wsa1{word-spacing:-34.367733pt;}
.ws55{word-spacing:-34.365600pt;}
.ws9e{word-spacing:-34.361600pt;}
.ws9f{word-spacing:-34.350667pt;}
.wsa0{word-spacing:-34.346667pt;}
.ws95{word-spacing:-34.309333pt;}
.ws2d{word-spacing:-34.286400pt;}
.ws76{word-spacing:-34.160000pt;}
.ws96{word-spacing:-34.105867pt;}
.ws1c{word-spacing:-33.925333pt;}
.ws67{word-spacing:-33.920000pt;}
.ws52{word-spacing:-33.914667pt;}
.ws28{word-spacing:-33.905067pt;}
.wsa3{word-spacing:-33.858933pt;}
.ws85{word-spacing:-33.844800pt;}
.ws1e{word-spacing:-33.728000pt;}
.wsa2{word-spacing:-33.727200pt;}
.ws59{word-spacing:-33.726400pt;}
.ws65{word-spacing:-33.723200pt;}
.ws86{word-spacing:-33.717867pt;}
.ws45{word-spacing:-33.664000pt;}
.ws73{word-spacing:-33.660800pt;}
.ws41{word-spacing:-33.659200pt;}
.ws9c{word-spacing:-33.658667pt;}
.ws4e{word-spacing:-33.656000pt;}
.ws7{word-spacing:-33.655467pt;}
.ws69{word-spacing:-33.534400pt;}
.ws9d{word-spacing:-33.531200pt;}
.ws34{word-spacing:-33.280000pt;}
.ws2e{word-spacing:-33.267200pt;}
.ws1d{word-spacing:-33.257067pt;}
.ws40{word-spacing:-33.199467pt;}
.ws42{word-spacing:-33.088000pt;}
.wsa4{word-spacing:-33.077867pt;}
.ws6d{word-spacing:-33.068267pt;}
.ws5d{word-spacing:-33.024000pt;}
.ws1b{word-spacing:-32.640000pt;}
.ws97{word-spacing:-32.635200pt;}
.ws31{word-spacing:-32.436000pt;}
.ws1a{word-spacing:-32.384000pt;}
.ws29{word-spacing:-32.005333pt;}
.ws22{word-spacing:-32.000000pt;}
.ws43{word-spacing:-31.996800pt;}
.ws3c{word-spacing:-31.994400pt;}
.ws0{word-spacing:-31.714933pt;}
.ws2b{word-spacing:-31.614400pt;}
.ws32{word-spacing:-31.599467pt;}
.ws74{word-spacing:-31.365333pt;}
.ws13{word-spacing:-31.360000pt;}
.ws3e{word-spacing:-31.355200pt;}
.wsb{word-spacing:-30.528000pt;}
.ws4f{word-spacing:-30.517867pt;}
.ws7f{word-spacing:-30.464000pt;}
.ws10{word-spacing:-30.080000pt;}
.ws93{word-spacing:-29.888000pt;}
.ws20{word-spacing:-29.820800pt;}
.ws44{word-spacing:-29.445333pt;}
.ws9{word-spacing:-29.440000pt;}
.ws3f{word-spacing:-29.248000pt;}
.ws51{word-spacing:-29.246400pt;}
.ws71{word-spacing:-29.244800pt;}
.ws66{word-spacing:-29.240800pt;}
.ws57{word-spacing:-29.238400pt;}
.ws6e{word-spacing:-29.182400pt;}
.ws21{word-spacing:-28.800000pt;}
.ws6f{word-spacing:-28.613333pt;}
.ws8{word-spacing:-28.608000pt;}
.ws12{word-spacing:-28.604800pt;}
.ws84{word-spacing:-28.586667pt;}
.ws89{word-spacing:-28.542400pt;}
.ws4d{word-spacing:-28.528800pt;}
.ws90{word-spacing:-28.414400pt;}
.ws50{word-spacing:-28.160000pt;}
.ws37{word-spacing:-27.973333pt;}
.ws83{word-spacing:-27.960800pt;}
.ws8e{word-spacing:-27.956000pt;}
.ws88{word-spacing:-27.909333pt;}
.wsf{word-spacing:-27.904000pt;}
.ws64{word-spacing:-27.525333pt;}
.ws56{word-spacing:-27.520000pt;}
.wsc{word-spacing:-27.514667pt;}
.ws6{word-spacing:-27.328000pt;}
.ws98{word-spacing:-26.880000pt;}
.ws77{word-spacing:-26.245333pt;}
.ws18{word-spacing:-26.240000pt;}
.ws62{word-spacing:-26.053333pt;}
.ws35{word-spacing:-26.048000pt;}
.wsd{word-spacing:-25.600000pt;}
.ws82{word-spacing:-25.584000pt;}
.ws4c{word-spacing:-24.965333pt;}
.ws14{word-spacing:-24.960000pt;}
.ws8b{word-spacing:-24.320000pt;}
.ws9a{word-spacing:-23.493333pt;}
.ws78{word-spacing:-23.480800pt;}
.ws8f{word-spacing:-23.290667pt;}
.ws11{word-spacing:-23.045333pt;}
.wsa{word-spacing:-23.040000pt;}
.ws25{word-spacing:-23.035200pt;}
.ws2c{word-spacing:-22.848000pt;}
.ws9b{word-spacing:-22.777600pt;}
.ws4b{word-spacing:-22.405333pt;}
.ws23{word-spacing:-22.400000pt;}
.ws2a{word-spacing:-22.210133pt;}
.ws15{word-spacing:-22.188267pt;}
.ws81{word-spacing:-22.147733pt;}
.ws47{word-spacing:-21.760000pt;}
.ws91{word-spacing:-21.125333pt;}
.ws48{word-spacing:-20.480000pt;}
.ws7c{word-spacing:-20.472800pt;}
.ws68{word-spacing:-20.288000pt;}
.ws72{word-spacing:-20.282667pt;}
.wse{word-spacing:-20.203200pt;}
.ws8c{word-spacing:-19.836800pt;}
.ws46{word-spacing:-19.835200pt;}
.ws4a{word-spacing:-19.648000pt;}
.ws79{word-spacing:-19.583200pt;}
.ws54{word-spacing:-18.936000pt;}
.ws2f{word-spacing:-18.560000pt;}
.ws5c{word-spacing:-18.176000pt;}
.ws7e{word-spacing:-17.925333pt;}
.ws26{word-spacing:-17.920000pt;}
.ws38{word-spacing:-17.722133pt;}
.ws99{word-spacing:-17.280000pt;}
.ws87{word-spacing:-17.093333pt;}
.ws94{word-spacing:-17.088000pt;}
.ws58{word-spacing:-16.895200pt;}
.ws8a{word-spacing:-16.640000pt;}
.ws75{word-spacing:-16.448000pt;}
.ws70{word-spacing:-15.360000pt;}
.ws36{word-spacing:-15.168000pt;}
.ws7a{word-spacing:-14.725333pt;}
.ws16{word-spacing:-14.528000pt;}
.ws6a{word-spacing:-14.335200pt;}
.ws5e{word-spacing:-14.080000pt;}
.ws6b{word-spacing:-13.884800pt;}
.ws60{word-spacing:-13.880000pt;}
.ws5b{word-spacing:-12.784000pt;}
.ws63{word-spacing:-12.608000pt;}
.ws19{word-spacing:-11.525333pt;}
.ws5a{word-spacing:-11.520000pt;}
.ws8d{word-spacing:-11.512000pt;}
.ws7d{word-spacing:-10.675200pt;}
.ws7b{word-spacing:-10.496000pt;}
.ws30{word-spacing:-10.245333pt;}
.ws3a{word-spacing:-10.240000pt;}
.ws61{word-spacing:-9.594667pt;}
.ws5f{word-spacing:-8.960000pt;}
.ws17{word-spacing:-7.412800pt;}
.ws24{word-spacing:-7.045333pt;}
.ws33{word-spacing:-4.921600pt;}
.ws39{word-spacing:-3.833600pt;}
.ws49{word-spacing:-2.995733pt;}
.ws53{word-spacing:-0.441600pt;}
.ws1f{word-spacing:0.000000pt;}
.ws3d{word-spacing:2.758400pt;}
.ws3b{word-spacing:3.200000pt;}
.ws27{word-spacing:5.120000pt;}
.ws80{word-spacing:6.405333pt;}
.ws6c{word-spacing:7.957333pt;}
.ws92{word-spacing:9.856000pt;}
._0{margin-left:-1.014133pt;}
._2{width:1.010400pt;}
._1{width:15.402400pt;}
._3{width:16.884000pt;}
._17{width:17.861333pt;}
._b{width:18.757333pt;}
._8{width:20.101333pt;}
._6{width:21.381333pt;}
._5{width:22.477600pt;}
._4{width:23.826933pt;}
._9{width:25.184533pt;}
._7{width:27.808533pt;}
._10{width:28.699467pt;}
._1d{width:29.653333pt;}
._a{width:30.763200pt;}
._11{width:32.133333pt;}
._e{width:33.042933pt;}
._1a{width:34.214933pt;}
._14{width:35.461333pt;}
._19{width:36.360267pt;}
._1b{width:38.091467pt;}
._d{width:39.109333pt;}
._12{width:40.424267pt;}
._1c{width:42.117333pt;}
._c{width:43.956800pt;}
._13{width:45.944533pt;}
._15{width:47.410933pt;}
._18{width:50.612000pt;}
._16{width:54.405333pt;}
._f{width:56.000000pt;}
.fs0{font-size:37.866667pt;}
.fs4{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.946667pt;}
.y62{bottom:111.108000pt;}
.y61{bottom:129.508000pt;}
.y90{bottom:130.146667pt;}
.y60{bottom:147.908000pt;}
.y8f{bottom:148.546667pt;}
.y5f{bottom:166.308000pt;}
.y8e{bottom:166.946667pt;}
.y5e{bottom:184.706667pt;}
.y8d{bottom:185.346667pt;}
.y5d{bottom:203.108000pt;}
.y8c{bottom:203.746667pt;}
.y5c{bottom:221.508000pt;}
.y8b{bottom:222.146667pt;}
.y5b{bottom:239.908000pt;}
.y8a{bottom:240.388000pt;}
.y1f{bottom:256.388000pt;}
.y44{bottom:257.346667pt;}
.y5a{bottom:258.308000pt;}
.y89{bottom:258.788000pt;}
.yba{bottom:259.588000pt;}
.y43{bottom:275.746667pt;}
.y59{bottom:276.706667pt;}
.y88{bottom:277.188000pt;}
.yb9{bottom:277.988000pt;}
.y1e{bottom:290.788000pt;}
.y42{bottom:294.146667pt;}
.y58{bottom:295.108000pt;}
.y87{bottom:295.588000pt;}
.yb8{bottom:296.388000pt;}
.y1d{bottom:309.188000pt;}
.y41{bottom:312.546667pt;}
.y57{bottom:313.508000pt;}
.y86{bottom:313.988000pt;}
.yb7{bottom:314.788000pt;}
.y1c{bottom:327.588000pt;}
.y40{bottom:330.946667pt;}
.y56{bottom:331.908000pt;}
.y85{bottom:332.388000pt;}
.yb6{bottom:333.188000pt;}
.y1b{bottom:345.988000pt;}
.y3f{bottom:349.346667pt;}
.y55{bottom:350.308000pt;}
.y84{bottom:350.788000pt;}
.y1a{bottom:364.388000pt;}
.yb5{bottom:367.588000pt;}
.y3e{bottom:367.746667pt;}
.y54{bottom:368.706667pt;}
.y83{bottom:369.188000pt;}
.y19{bottom:382.788000pt;}
.yb4{bottom:385.988000pt;}
.y3d{bottom:386.146667pt;}
.y53{bottom:387.108000pt;}
.y82{bottom:387.588000pt;}
.y18{bottom:401.188000pt;}
.yb3{bottom:404.388000pt;}
.y3c{bottom:404.546667pt;}
.y52{bottom:405.508000pt;}
.y81{bottom:405.988000pt;}
.y17{bottom:419.588000pt;}
.yb2{bottom:422.788000pt;}
.y3b{bottom:422.946667pt;}
.y51{bottom:423.908000pt;}
.y80{bottom:424.388000pt;}
.y16{bottom:437.988000pt;}
.y3a{bottom:441.346667pt;}
.y50{bottom:442.308000pt;}
.y7f{bottom:442.788000pt;}
.y15{bottom:456.388000pt;}
.yb1{bottom:457.188000pt;}
.y39{bottom:459.746667pt;}
.y4f{bottom:460.708000pt;}
.y7e{bottom:461.188000pt;}
.y14{bottom:474.788000pt;}
.yb0{bottom:475.588000pt;}
.y38{bottom:478.146667pt;}
.y7d{bottom:479.588000pt;}
.y13{bottom:493.188000pt;}
.yaf{bottom:493.988000pt;}
.y37{bottom:496.546667pt;}
.y4e{bottom:497.506667pt;}
.y7c{bottom:497.988000pt;}
.y12{bottom:511.588000pt;}
.yae{bottom:512.388000pt;}
.y36{bottom:514.946667pt;}
.y7b{bottom:516.388000pt;}
.y11{bottom:529.988000pt;}
.yad{bottom:530.788000pt;}
.y35{bottom:533.346667pt;}
.y7a{bottom:534.788000pt;}
.y10{bottom:548.388000pt;}
.yac{bottom:549.188000pt;}
.y34{bottom:551.746667pt;}
.y79{bottom:553.188000pt;}
.yf{bottom:566.788000pt;}
.y33{bottom:570.146667pt;}
.y78{bottom:571.588000pt;}
.yab{bottom:583.588000pt;}
.ye{bottom:585.188000pt;}
.y32{bottom:588.546667pt;}
.y77{bottom:589.988000pt;}
.yaa{bottom:601.988000pt;}
.yd{bottom:603.588000pt;}
.y31{bottom:606.946667pt;}
.y76{bottom:608.388000pt;}
.ya9{bottom:620.388000pt;}
.yc{bottom:621.988000pt;}
.y30{bottom:625.346667pt;}
.y75{bottom:626.788000pt;}
.yb{bottom:640.388000pt;}
.y2f{bottom:643.746667pt;}
.y74{bottom:645.188000pt;}
.ya8{bottom:654.788000pt;}
.ya{bottom:658.788000pt;}
.y2e{bottom:662.146667pt;}
.y73{bottom:663.588000pt;}
.ya7{bottom:673.188000pt;}
.y9{bottom:677.188000pt;}
.y2d{bottom:680.546667pt;}
.y72{bottom:681.988000pt;}
.ya6{bottom:691.588000pt;}
.y8{bottom:695.588000pt;}
.y2c{bottom:698.946667pt;}
.y71{bottom:700.388000pt;}
.y7{bottom:713.988000pt;}
.y2b{bottom:717.346667pt;}
.y4d{bottom:718.308000pt;}
.y70{bottom:718.788000pt;}
.ya5{bottom:725.988000pt;}
.y6{bottom:732.388000pt;}
.y2a{bottom:735.746667pt;}
.y6f{bottom:737.188000pt;}
.ya4{bottom:744.388000pt;}
.y29{bottom:754.146667pt;}
.y4c{bottom:755.108000pt;}
.y6e{bottom:755.588000pt;}
.y5{bottom:766.788000pt;}
.y28{bottom:772.546667pt;}
.y4b{bottom:773.506667pt;}
.y6d{bottom:773.988000pt;}
.y9e{bottom:776.388000pt;}
.ya3{bottom:778.788000pt;}
.y27{bottom:790.946667pt;}
.y4a{bottom:791.906667pt;}
.y6c{bottom:792.388000pt;}
.y9d{bottom:794.788000pt;}
.ya2{bottom:797.188000pt;}
.y4{bottom:805.026667pt;}
.y26{bottom:809.346667pt;}
.y49{bottom:810.306667pt;}
.y92{bottom:810.788000pt;}
.y9c{bottom:813.188000pt;}
.ya1{bottom:815.588000pt;}
.y25{bottom:827.746667pt;}
.y48{bottom:828.706667pt;}
.y6b{bottom:829.188000pt;}
.y9b{bottom:831.588000pt;}
.ya0{bottom:833.988000pt;}
.y3{bottom:836.388000pt;}
.y24{bottom:846.146667pt;}
.y47{bottom:847.106667pt;}
.y91{bottom:847.588000pt;}
.y9a{bottom:849.988000pt;}
.y9f{bottom:852.388000pt;}
.y2{bottom:859.588000pt;}
.y23{bottom:864.546667pt;}
.y6a{bottom:865.988000pt;}
.y99{bottom:868.388000pt;}
.y22{bottom:882.946667pt;}
.y46{bottom:883.906667pt;}
.y69{bottom:884.388000pt;}
.y98{bottom:886.788000pt;}
.y21{bottom:901.346667pt;}
.y68{bottom:902.788000pt;}
.y97{bottom:905.188000pt;}
.y67{bottom:921.188000pt;}
.y96{bottom:923.588000pt;}
.y45{bottom:929.988000pt;}
.y20{bottom:939.588000pt;}
.y95{bottom:941.988000pt;}
.y66{bottom:957.988000pt;}
.y94{bottom:960.388000pt;}
.y65{bottom:976.388000pt;}
.y93{bottom:978.788000pt;}
.y64{bottom:994.788000pt;}
.y63{bottom:1013.188000pt;}
.h2{height:32.510547pt;}
.h6{height:56.156250pt;}
.h5{height:56.843750pt;}
.h4{height:58.068437pt;}
.h3{height:66.554557pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.278667pt;}
.x3{left:134.720000pt;}
.x4{left:139.840000pt;}
.xf{left:149.278667pt;}
.x2{left:157.120000pt;}
.x6{left:160.478667pt;}
.x7{left:162.400000pt;}
.xa{left:164.478667pt;}
.xe{left:281.920000pt;}
.xc{left:293.920000pt;}
.x9{left:313.600000pt;}
.xb{left:326.240000pt;}
.xd{left:341.120000pt;}
.x8{left:367.840000pt;}
.x5{left:369.278667pt;}
}




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