
    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_806554df666930fb7419e152.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_412df7ebe92618f86ee9fa13.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_1048cb68477d9a8df928767a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_a07f62f86c14bbc5ab637c56.woff')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_643f48ec69620cd8b63d6fd2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.728321px;}
.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;}
}
.wsf{word-spacing:-18.327288px;}
.ws74{word-spacing:-3.338185px;}
.ws29{word-spacing:-2.814548px;}
.ws2f{word-spacing:-2.618184px;}
.ws61{word-spacing:-2.094547px;}
.ws38{word-spacing:-1.832729px;}
.ws31{word-spacing:-1.178183px;}
.ws32{word-spacing:-1.112728px;}
.ws3b{word-spacing:-0.785455px;}
.ws39{word-spacing:-0.761102px;}
.ws37{word-spacing:-0.720001px;}
.ws9d{word-spacing:-0.589091px;}
.ws3c{word-spacing:-0.301829px;}
.ws26{word-spacing:0.000000px;}
.ws48{word-spacing:0.261818px;}
.ws4b{word-spacing:0.392728px;}
.ws33{word-spacing:0.458182px;}
.ws84{word-spacing:0.589091px;}
.ws9c{word-spacing:0.785455px;}
.ws98{word-spacing:0.850910px;}
.ws4d{word-spacing:0.874171px;}
.ws2d{word-spacing:0.916364px;}
.ws71{word-spacing:0.981819px;}
.ws8f{word-spacing:1.112728px;}
.ws49{word-spacing:1.243637px;}
.ws4f{word-spacing:1.309092px;}
.ws68{word-spacing:1.440001px;}
.ws3a{word-spacing:1.458908px;}
.ws6b{word-spacing:1.570910px;}
.ws30{word-spacing:1.636365px;}
.ws25{word-spacing:1.767274px;}
.ws69{word-spacing:1.787891px;}
.wse{word-spacing:1.832729px;}
.ws47{word-spacing:1.898183px;}
.ws58{word-spacing:2.290911px;}
.ws6e{word-spacing:2.356366px;}
.ws97{word-spacing:2.421820px;}
.ws41{word-spacing:2.487275px;}
.ws4c{word-spacing:2.640908px;}
.ws42{word-spacing:2.814548px;}
.ws2a{word-spacing:2.880002px;}
.ws50{word-spacing:2.896093px;}
.ws6d{word-spacing:2.911696px;}
.ws99{word-spacing:3.010912px;}
.ws1f{word-spacing:3.403639px;}
.ws1d{word-spacing:3.465940px;}
.ws53{word-spacing:3.468820px;}
.ws17{word-spacing:3.469094px;}
.ws54{word-spacing:3.469541px;}
.ws1e{word-spacing:3.472417px;}
.wsb{word-spacing:3.796367px;}
.ws70{word-spacing:3.861821px;}
.ws1{word-spacing:3.873474px;}
.ws72{word-spacing:3.927276px;}
.ws2{word-spacing:3.959551px;}
.ws85{word-spacing:3.992731px;}
.ws34{word-spacing:4.254549px;}
.ws27{word-spacing:4.385458px;}
.ws24{word-spacing:4.647277px;}
.ws6a{word-spacing:4.778186px;}
.ws1a{word-spacing:4.843640px;}
.ws28{word-spacing:4.891176px;}
.ws76{word-spacing:4.909095px;}
.ws40{word-spacing:4.974550px;}
.ws10{word-spacing:5.040004px;}
.ws45{word-spacing:5.170913px;}
.ws2e{word-spacing:5.367277px;}
.ws6f{word-spacing:5.432732px;}
.ws62{word-spacing:5.629096px;}
.ws11{word-spacing:5.890914px;}
.ws8a{word-spacing:5.956369px;}
.ws89{word-spacing:5.993310px;}
.ws86{word-spacing:5.994970px;}
.ws87{word-spacing:5.996557px;}
.ws88{word-spacing:5.997209px;}
.ws73{word-spacing:6.081076px;}
.ws55{word-spacing:6.150978px;}
.ws4e{word-spacing:6.152732px;}
.ws36{word-spacing:6.414551px;}
.ws44{word-spacing:6.676369px;}
.ws18{word-spacing:7.069097px;}
.ws2c{word-spacing:7.134551px;}
.ws9{word-spacing:7.200006px;}
.ws60{word-spacing:7.330915px;}
.ws1b{word-spacing:7.592734px;}
.ws1c{word-spacing:7.625353px;}
.ws64{word-spacing:7.658188px;}
.ws75{word-spacing:7.854552px;}
.ws15{word-spacing:7.920007px;}
.ws83{word-spacing:7.965902px;}
.wsc{word-spacing:7.985461px;}
.ws35{word-spacing:8.116370px;}
.ws3e{word-spacing:8.378189px;}
.ws46{word-spacing:8.574553px;}
.ws4a{word-spacing:8.640007px;}
.ws51{word-spacing:8.705462px;}
.ws3d{word-spacing:9.818190px;}
.ws14{word-spacing:9.949099px;}
.ws3f{word-spacing:10.014554px;}
.ws66{word-spacing:10.080008px;}
.ws43{word-spacing:10.341827px;}
.ws63{word-spacing:10.407281px;}
.ws23{word-spacing:10.538191px;}
.ws52{word-spacing:10.603645px;}
.ws2b{word-spacing:10.669100px;}
.ws65{word-spacing:10.734554px;}
.ws0{word-spacing:10.785825px;}
.ws67{word-spacing:10.865464px;}
.wsa{word-spacing:10.996373px;}
.wsd{word-spacing:11.127282px;}
.ws19{word-spacing:11.192737px;}
.ws12{word-spacing:11.847283px;}
.ws6c{word-spacing:12.109101px;}
.ws78{word-spacing:12.174556px;}
.ws16{word-spacing:12.632738px;}
.ws8{word-spacing:12.698192px;}
.ws21{word-spacing:13.090920px;}
.ws5e{word-spacing:13.156375px;}
.ws77{word-spacing:13.229016px;}
.ws20{word-spacing:13.352738px;}
.ws79{word-spacing:13.549102px;}
.ws22{word-spacing:14.072739px;}
.ws6{word-spacing:14.858194px;}
.ws9e{word-spacing:14.923649px;}
.ws5d{word-spacing:14.989103px;}
.ws59{word-spacing:15.053897px;}
.ws5b{word-spacing:15.054558px;}
.ws7{word-spacing:15.400724px;}
.ws5f{word-spacing:15.512740px;}
.ws5a{word-spacing:15.514171px;}
.ws13{word-spacing:16.363650px;}
.ws57{word-spacing:17.083651px;}
.ws5c{word-spacing:17.742317px;}
.ws5{word-spacing:19.767289px;}
.ws4{word-spacing:19.831738px;}
.ws3{word-spacing:19.832744px;}
.ws56{word-spacing:22.320019px;}
.ws7b{word-spacing:25.265476px;}
.ws7a{word-spacing:25.349024px;}
.ws7c{word-spacing:30.894571px;}
.ws7e{word-spacing:60.676414px;}
.ws81{word-spacing:61.134596px;}
.ws82{word-spacing:61.200051px;}
.ws7f{word-spacing:68.661875px;}
.ws7d{word-spacing:76.058245px;}
.ws80{word-spacing:85.025525px;}
.ws90{word-spacing:260.773409px;}
.ws93{word-spacing:280.606153px;}
.ws96{word-spacing:313.529816px;}
.ws95{word-spacing:320.729822px;}
.ws8d{word-spacing:326.424373px;}
.ws92{word-spacing:351.624394px;}
.ws91{word-spacing:356.991671px;}
.ws94{word-spacing:371.915320px;}
.ws8b{word-spacing:384.024421px;}
.ws8c{word-spacing:385.857149px;}
.ws9b{word-spacing:389.784425px;}
.ws8e{word-spacing:393.384428px;}
.ws9a{word-spacing:394.824430px;}
._2{margin-left:-11.281725px;}
._2c{margin-left:-8.334512px;}
._5{margin-left:-7.058330px;}
._10{margin-left:-5.367277px;}
._0{margin-left:-3.843225px;}
._4{margin-left:-2.238007px;}
._c{margin-left:-1.231087px;}
._6{width:1.767274px;}
._1{width:3.719250px;}
._1a{width:16.210963px;}
._17{width:18.196379px;}
._16{width:19.508490px;}
._19{width:20.970574px;}
._11{width:23.196030px;}
._f{width:24.408520px;}
._1b{width:25.801663px;}
._b{width:27.328897px;}
._18{width:28.472751px;}
._13{width:30.201132px;}
._e{width:31.483663px;}
._a{width:33.316391px;}
._14{width:34.572580px;}
._8{width:36.000030px;}
._1d{width:38.880032px;}
._22{width:40.179898px;}
._d{width:42.872763px;}
._7{width:44.763005px;}
._21{width:48.894586px;}
._15{width:50.739866px;}
._12{width:54.261863px;}
._23{width:55.321688px;}
._24{width:59.420226px;}
._9{width:63.294598px;}
._29{width:72.090616px;}
._1c{width:75.363346px;}
._20{width:78.623525px;}
._25{width:111.874462px;}
._2a{width:135.961755px;}
._27{width:171.032870px;}
._2b{width:175.692697px;}
._3{width:191.233289px;}
._1e{width:226.789618px;}
._1f{width:229.261618px;}
._28{width:389.019803px;}
._26{width:399.078979px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y22{bottom:145.890000px;}
.y6c{bottom:235.254000px;}
.y4b{bottom:237.346500px;}
.yb3{bottom:243.444000px;}
.y21{bottom:248.742000px;}
.y4a{bottom:257.670000px;}
.yb2{bottom:263.767500px;}
.y6b{bottom:265.740000px;}
.y20{bottom:269.065500px;}
.y49{bottom:277.993500px;}
.yb1{bottom:284.091000px;}
.y1f{bottom:289.389000px;}
.y6a{bottom:300.709500px;}
.yb0{bottom:304.414500px;}
.y48{bottom:308.479500px;}
.y1e{bottom:309.712500px;}
.y69{bottom:321.033000px;}
.yaf{bottom:324.739500px;}
.y47{bottom:328.803000px;}
.y1d{bottom:330.036000px;}
.y68{bottom:341.356500px;}
.yae{bottom:345.063000px;}
.y46{bottom:349.128000px;}
.y1c{bottom:350.361000px;}
.y67{bottom:361.680000px;}
.yad{bottom:365.386500px;}
.y87{bottom:365.584500px;}
.y45{bottom:369.451500px;}
.y1b{bottom:370.684500px;}
.yac{bottom:385.710000px;}
.y44{bottom:389.775000px;}
.y1a{bottom:391.008000px;}
.y66{bottom:396.649500px;}
.yab{bottom:406.033500px;}
.y86{bottom:406.810500px;}
.y43{bottom:420.261000px;}
.y19{bottom:421.494000px;}
.yaa{bottom:426.358500px;}
.y65{bottom:427.135500px;}
.y42{bottom:440.584500px;}
.y18{bottom:441.817500px;}
.ya9{bottom:446.682000px;}
.y41{bottom:460.908000px;}
.y64{bottom:462.103500px;}
.y17{bottom:462.141000px;}
.ya7{bottom:467.005500px;}
.y40{bottom:481.231500px;}
.y63{bottom:482.427000px;}
.y16{bottom:482.464500px;}
.ya6{bottom:487.329000px;}
.y3f{bottom:501.556500px;}
.y62{bottom:502.752000px;}
.y15{bottom:502.789500px;}
.ya5{bottom:507.652500px;}
.y85{bottom:523.075500px;}
.ya4{bottom:527.977500px;}
.y3e{bottom:532.041000px;}
.y14{bottom:533.274000px;}
.y61{bottom:537.720000px;}
.y84{bottom:543.399000px;}
.ya3{bottom:548.301000px;}
.y13{bottom:553.599000px;}
.y3d{bottom:562.527000px;}
.ybc{bottom:566.467500px;}
.y60{bottom:568.206000px;}
.ya2{bottom:568.624500px;}
.y83{bottom:573.885000px;}
.y12{bottom:573.922500px;}
.y3c{bottom:582.850500px;}
.ybb{bottom:586.791000px;}
.ya1{bottom:588.948000px;}
.y82{bottom:594.208500px;}
.y11{bottom:594.246000px;}
.y5f{bottom:598.692000px;}
.y3b{bottom:603.175500px;}
.yba{bottom:607.114500px;}
.ya0{bottom:609.271500px;}
.y81{bottom:614.532000px;}
.y10{bottom:614.569500px;}
.y3a{bottom:623.499000px;}
.yb9{bottom:627.438000px;}
.y5e{bottom:629.178000px;}
.y9f{bottom:629.596500px;}
.y80{bottom:634.855500px;}
.yf{bottom:634.893000px;}
.y39{bottom:643.822500px;}
.yb8{bottom:647.761500px;}
.y9e{bottom:649.920000px;}
.y7f{bottom:655.180500px;}
.ye{bottom:655.218000px;}
.y5d{bottom:664.146000px;}
.yb7{bottom:668.086500px;}
.y9d{bottom:670.243500px;}
.y38{bottom:674.308500px;}
.y7e{bottom:675.504000px;}
.y5c{bottom:684.469500px;}
.yd{bottom:685.702500px;}
.yb6{bottom:688.410000px;}
.y9c{bottom:690.567000px;}
.y37{bottom:694.632000px;}
.y7d{bottom:695.827500px;}
.y5b{bottom:704.793000px;}
.yc{bottom:706.027500px;}
.yb5{bottom:708.733500px;}
.y9b{bottom:710.890500px;}
.y36{bottom:714.955500px;}
.y5a{bottom:725.118000px;}
.y7c{bottom:726.313500px;}
.yb{bottom:726.351000px;}
.y9a{bottom:731.215500px;}
.y35{bottom:735.279000px;}
.y59{bottom:745.441500px;}
.y7b{bottom:746.637000px;}
.ya{bottom:746.674500px;}
.y99{bottom:751.539000px;}
.y34{bottom:755.602500px;}
.y58{bottom:765.765000px;}
.y7a{bottom:766.960500px;}
.y9{bottom:766.998000px;}
.ya8{bottom:771.862500px;}
.y33{bottom:775.927500px;}
.y79{bottom:787.284000px;}
.y8{bottom:787.321500px;}
.y98{bottom:792.186000px;}
.y32{bottom:796.251000px;}
.y7{bottom:807.646500px;}
.y97{bottom:812.509500px;}
.y31{bottom:816.574500px;}
.y78{bottom:822.253500px;}
.y6{bottom:827.970000px;}
.y96{bottom:832.833000px;}
.yb4{bottom:832.834500px;}
.y57{bottom:836.898000px;}
.y30{bottom:847.060500px;}
.y5{bottom:848.293500px;}
.y77{bottom:852.739500px;}
.y95{bottom:853.158000px;}
.y56{bottom:857.221500px;}
.y2f{bottom:867.384000px;}
.y94{bottom:873.481500px;}
.y55{bottom:877.546500px;}
.y76{bottom:883.224000px;}
.y2e{bottom:887.707500px;}
.y93{bottom:893.805000px;}
.y54{bottom:897.870000px;}
.y2d{bottom:908.031000px;}
.y75{bottom:913.710000px;}
.y92{bottom:914.128500px;}
.y53{bottom:918.193500px;}
.y2c{bottom:928.356000px;}
.y91{bottom:934.452000px;}
.y52{bottom:938.517000px;}
.y74{bottom:944.196000px;}
.y4{bottom:945.802500px;}
.y2b{bottom:948.679500px;}
.y90{bottom:954.777000px;}
.y73{bottom:964.519500px;}
.y2a{bottom:969.003000px;}
.y3{bottom:972.702000px;}
.y8f{bottom:975.100500px;}
.y72{bottom:984.843000px;}
.y51{bottom:989.326500px;}
.y8e{bottom:995.424000px;}
.y29{bottom:999.489000px;}
.y71{bottom:1005.168000px;}
.y50{bottom:1009.650000px;}
.y8d{bottom:1015.747500px;}
.y28{bottom:1019.812500px;}
.y2{bottom:1024.146000px;}
.y70{bottom:1025.491500px;}
.y4f{bottom:1029.975000px;}
.y8c{bottom:1036.071000px;}
.y27{bottom:1040.136000px;}
.y6f{bottom:1045.815000px;}
.y4e{bottom:1050.298500px;}
.y8b{bottom:1056.396000px;}
.y26{bottom:1060.459500px;}
.y1{bottom:1061.506500px;}
.y6e{bottom:1066.138500px;}
.y4d{bottom:1070.622000px;}
.y8a{bottom:1076.719500px;}
.y25{bottom:1080.784500px;}
.y4c{bottom:1090.945500px;}
.y89{bottom:1097.043000px;}
.y6d{bottom:1101.108000px;}
.y24{bottom:1111.269000px;}
.y88{bottom:1117.366500px;}
.y23{bottom:1131.594000px;}
.h5{height:45.818220px;}
.h4{height:49.090950px;}
.h3{height:61.459121px;}
.h2{height:88.766100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:119.437500px;}
.x5{left:121.171500px;}
.x8{left:141.757500px;}
.x11{left:146.307000px;}
.xa{left:160.117500px;}
.x9{left:162.670500px;}
.x3{left:180.969000px;}
.x1{left:184.234500px;}
.xc{left:253.314000px;}
.xb{left:255.228000px;}
.x2{left:322.512000px;}
.x4{left:365.781000px;}
.xd{left:388.692000px;}
.x10{left:438.274500px;}
.x7{left:442.366500px;}
.xe{left:522.154500px;}
.xf{left:655.618500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.091841pt;}
.wsf{word-spacing:-16.290923pt;}
.ws74{word-spacing:-2.967275pt;}
.ws29{word-spacing:-2.501820pt;}
.ws2f{word-spacing:-2.327275pt;}
.ws61{word-spacing:-1.861820pt;}
.ws38{word-spacing:-1.629092pt;}
.ws31{word-spacing:-1.047274pt;}
.ws32{word-spacing:-0.989092pt;}
.ws3b{word-spacing:-0.698182pt;}
.ws39{word-spacing:-0.676535pt;}
.ws37{word-spacing:-0.640001pt;}
.ws9d{word-spacing:-0.523637pt;}
.ws3c{word-spacing:-0.268292pt;}
.ws26{word-spacing:0.000000pt;}
.ws48{word-spacing:0.232727pt;}
.ws4b{word-spacing:0.349091pt;}
.ws33{word-spacing:0.407273pt;}
.ws84{word-spacing:0.523637pt;}
.ws9c{word-spacing:0.698182pt;}
.ws98{word-spacing:0.756364pt;}
.ws4d{word-spacing:0.777041pt;}
.ws2d{word-spacing:0.814546pt;}
.ws71{word-spacing:0.872728pt;}
.ws8f{word-spacing:0.989092pt;}
.ws49{word-spacing:1.105455pt;}
.ws4f{word-spacing:1.163637pt;}
.ws68{word-spacing:1.280001pt;}
.ws3a{word-spacing:1.296807pt;}
.ws6b{word-spacing:1.396365pt;}
.ws30{word-spacing:1.454547pt;}
.ws25{word-spacing:1.570910pt;}
.ws69{word-spacing:1.589236pt;}
.wse{word-spacing:1.629092pt;}
.ws47{word-spacing:1.687274pt;}
.ws58{word-spacing:2.036365pt;}
.ws6e{word-spacing:2.094547pt;}
.ws97{word-spacing:2.152729pt;}
.ws41{word-spacing:2.210911pt;}
.ws4c{word-spacing:2.347474pt;}
.ws42{word-spacing:2.501820pt;}
.ws2a{word-spacing:2.560002pt;}
.ws50{word-spacing:2.574305pt;}
.ws6d{word-spacing:2.588174pt;}
.ws99{word-spacing:2.676366pt;}
.ws1f{word-spacing:3.025457pt;}
.ws1d{word-spacing:3.080836pt;}
.ws53{word-spacing:3.083395pt;}
.ws17{word-spacing:3.083639pt;}
.ws54{word-spacing:3.084036pt;}
.ws1e{word-spacing:3.086593pt;}
.wsb{word-spacing:3.374548pt;}
.ws70{word-spacing:3.432730pt;}
.ws1{word-spacing:3.443088pt;}
.ws72{word-spacing:3.490912pt;}
.ws2{word-spacing:3.519601pt;}
.ws85{word-spacing:3.549094pt;}
.ws34{word-spacing:3.781821pt;}
.ws27{word-spacing:3.898185pt;}
.ws24{word-spacing:4.130913pt;}
.ws6a{word-spacing:4.247276pt;}
.ws1a{word-spacing:4.305458pt;}
.ws28{word-spacing:4.347712pt;}
.ws76{word-spacing:4.363640pt;}
.ws40{word-spacing:4.421822pt;}
.ws10{word-spacing:4.480004pt;}
.ws45{word-spacing:4.596367pt;}
.ws2e{word-spacing:4.770913pt;}
.ws6f{word-spacing:4.829095pt;}
.ws62{word-spacing:5.003641pt;}
.ws11{word-spacing:5.236368pt;}
.ws8a{word-spacing:5.294550pt;}
.ws89{word-spacing:5.327387pt;}
.ws86{word-spacing:5.328862pt;}
.ws87{word-spacing:5.330273pt;}
.ws88{word-spacing:5.330852pt;}
.ws73{word-spacing:5.405401pt;}
.ws55{word-spacing:5.467536pt;}
.ws4e{word-spacing:5.469095pt;}
.ws36{word-spacing:5.701823pt;}
.ws44{word-spacing:5.934550pt;}
.ws18{word-spacing:6.283642pt;}
.ws2c{word-spacing:6.341823pt;}
.ws9{word-spacing:6.400005pt;}
.ws60{word-spacing:6.516369pt;}
.ws1b{word-spacing:6.749097pt;}
.ws1c{word-spacing:6.778091pt;}
.ws64{word-spacing:6.807278pt;}
.ws75{word-spacing:6.981824pt;}
.ws15{word-spacing:7.040006pt;}
.ws83{word-spacing:7.080802pt;}
.wsc{word-spacing:7.098188pt;}
.ws35{word-spacing:7.214551pt;}
.ws3e{word-spacing:7.447279pt;}
.ws46{word-spacing:7.621825pt;}
.ws4a{word-spacing:7.680006pt;}
.ws51{word-spacing:7.738188pt;}
.ws3d{word-spacing:8.727280pt;}
.ws14{word-spacing:8.843644pt;}
.ws3f{word-spacing:8.901826pt;}
.ws66{word-spacing:8.960007pt;}
.ws43{word-spacing:9.192735pt;}
.ws63{word-spacing:9.250917pt;}
.ws23{word-spacing:9.367281pt;}
.ws52{word-spacing:9.425462pt;}
.ws2b{word-spacing:9.483644pt;}
.ws65{word-spacing:9.541826pt;}
.ws0{word-spacing:9.587400pt;}
.ws67{word-spacing:9.658190pt;}
.wsa{word-spacing:9.774554pt;}
.wsd{word-spacing:9.890917pt;}
.ws19{word-spacing:9.949099pt;}
.ws12{word-spacing:10.530918pt;}
.ws6c{word-spacing:10.763645pt;}
.ws78{word-spacing:10.821827pt;}
.ws16{word-spacing:11.229100pt;}
.ws8{word-spacing:11.287282pt;}
.ws21{word-spacing:11.636373pt;}
.ws5e{word-spacing:11.694555pt;}
.ws77{word-spacing:11.759125pt;}
.ws20{word-spacing:11.869101pt;}
.ws79{word-spacing:12.043646pt;}
.ws22{word-spacing:12.509101pt;}
.ws6{word-spacing:13.207284pt;}
.ws9e{word-spacing:13.265466pt;}
.ws5d{word-spacing:13.323647pt;}
.ws59{word-spacing:13.381242pt;}
.ws5b{word-spacing:13.381829pt;}
.ws7{word-spacing:13.689533pt;}
.ws5f{word-spacing:13.789102pt;}
.ws5a{word-spacing:13.790374pt;}
.ws13{word-spacing:14.545467pt;}
.ws57{word-spacing:15.185467pt;}
.ws5c{word-spacing:15.770948pt;}
.ws5{word-spacing:17.570924pt;}
.ws4{word-spacing:17.628212pt;}
.ws3{word-spacing:17.629106pt;}
.ws56{word-spacing:19.840017pt;}
.ws7b{word-spacing:22.458201pt;}
.ws7a{word-spacing:22.532466pt;}
.ws7c{word-spacing:27.461841pt;}
.ws7e{word-spacing:53.934590pt;}
.ws81{word-spacing:54.341863pt;}
.ws82{word-spacing:54.400045pt;}
.ws7f{word-spacing:61.032778pt;}
.ws7d{word-spacing:67.607329pt;}
.ws80{word-spacing:75.578245pt;}
.ws90{word-spacing:231.798586pt;}
.ws93{word-spacing:249.427691pt;}
.ws96{word-spacing:278.693170pt;}
.ws95{word-spacing:285.093175pt;}
.ws8d{word-spacing:290.154998pt;}
.ws92{word-spacing:312.555017pt;}
.ws91{word-spacing:317.325930pt;}
.ws94{word-spacing:330.591395pt;}
.ws8b{word-spacing:341.355041pt;}
.ws8c{word-spacing:342.984133pt;}
.ws9b{word-spacing:346.475045pt;}
.ws8e{word-spacing:349.675047pt;}
.ws9a{word-spacing:350.955049pt;}
._2{margin-left:-10.028200pt;}
._2c{margin-left:-7.408455pt;}
._5{margin-left:-6.274071pt;}
._10{margin-left:-4.770913pt;}
._0{margin-left:-3.416200pt;}
._4{margin-left:-1.989340pt;}
._c{margin-left:-1.094299pt;}
._6{width:1.570910pt;}
._1{width:3.306000pt;}
._1a{width:14.409745pt;}
._17{width:16.174559pt;}
._16{width:17.340880pt;}
._19{width:18.640510pt;}
._11{width:20.618693pt;}
._f{width:21.696462pt;}
._1b{width:22.934812pt;}
._b{width:24.292353pt;}
._18{width:25.309112pt;}
._13{width:26.845451pt;}
._e{width:27.985478pt;}
._a{width:29.614570pt;}
._14{width:30.731182pt;}
._8{width:32.000027pt;}
._1d{width:34.560029pt;}
._22{width:35.715465pt;}
._d{width:38.109123pt;}
._7{width:39.789338pt;}
._21{width:43.461854pt;}
._15{width:45.102103pt;}
._12{width:48.232767pt;}
._23{width:49.174834pt;}
._24{width:52.817979pt;}
._9{width:56.261865pt;}
._29{width:64.080548pt;}
._1c{width:66.989641pt;}
._20{width:69.887578pt;}
._25{width:99.443966pt;}
._2a{width:120.854893pt;}
._27{width:152.029218pt;}
._2b{width:156.171286pt;}
._3{width:169.985146pt;}
._1e{width:201.590772pt;}
._1f{width:203.788105pt;}
._28{width:345.795381pt;}
._26{width:354.736870pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:129.680000pt;}
.y6c{bottom:209.114667pt;}
.y4b{bottom:210.974667pt;}
.yb3{bottom:216.394667pt;}
.y21{bottom:221.104000pt;}
.y4a{bottom:229.040000pt;}
.yb2{bottom:234.460000pt;}
.y6b{bottom:236.213333pt;}
.y20{bottom:239.169333pt;}
.y49{bottom:247.105333pt;}
.yb1{bottom:252.525333pt;}
.y1f{bottom:257.234667pt;}
.y6a{bottom:267.297333pt;}
.yb0{bottom:270.590667pt;}
.y48{bottom:274.204000pt;}
.y1e{bottom:275.300000pt;}
.y69{bottom:285.362667pt;}
.yaf{bottom:288.657333pt;}
.y47{bottom:292.269333pt;}
.y1d{bottom:293.365333pt;}
.y68{bottom:303.428000pt;}
.yae{bottom:306.722667pt;}
.y46{bottom:310.336000pt;}
.y1c{bottom:311.432000pt;}
.y67{bottom:321.493333pt;}
.yad{bottom:324.788000pt;}
.y87{bottom:324.964000pt;}
.y45{bottom:328.401333pt;}
.y1b{bottom:329.497333pt;}
.yac{bottom:342.853333pt;}
.y44{bottom:346.466667pt;}
.y1a{bottom:347.562667pt;}
.y66{bottom:352.577333pt;}
.yab{bottom:360.918667pt;}
.y86{bottom:361.609333pt;}
.y43{bottom:373.565333pt;}
.y19{bottom:374.661333pt;}
.yaa{bottom:378.985333pt;}
.y65{bottom:379.676000pt;}
.y42{bottom:391.630667pt;}
.y18{bottom:392.726667pt;}
.ya9{bottom:397.050667pt;}
.y41{bottom:409.696000pt;}
.y64{bottom:410.758667pt;}
.y17{bottom:410.792000pt;}
.ya7{bottom:415.116000pt;}
.y40{bottom:427.761333pt;}
.y63{bottom:428.824000pt;}
.y16{bottom:428.857333pt;}
.ya6{bottom:433.181333pt;}
.y3f{bottom:445.828000pt;}
.y62{bottom:446.890667pt;}
.y15{bottom:446.924000pt;}
.ya5{bottom:451.246667pt;}
.y85{bottom:464.956000pt;}
.ya4{bottom:469.313333pt;}
.y3e{bottom:472.925333pt;}
.y14{bottom:474.021333pt;}
.y61{bottom:477.973333pt;}
.y84{bottom:483.021333pt;}
.ya3{bottom:487.378667pt;}
.y13{bottom:492.088000pt;}
.y3d{bottom:500.024000pt;}
.ybc{bottom:503.526667pt;}
.y60{bottom:505.072000pt;}
.ya2{bottom:505.444000pt;}
.y83{bottom:510.120000pt;}
.y12{bottom:510.153333pt;}
.y3c{bottom:518.089333pt;}
.ybb{bottom:521.592000pt;}
.ya1{bottom:523.509333pt;}
.y82{bottom:528.185333pt;}
.y11{bottom:528.218667pt;}
.y5f{bottom:532.170667pt;}
.y3b{bottom:536.156000pt;}
.yba{bottom:539.657333pt;}
.ya0{bottom:541.574667pt;}
.y81{bottom:546.250667pt;}
.y10{bottom:546.284000pt;}
.y3a{bottom:554.221333pt;}
.yb9{bottom:557.722667pt;}
.y5e{bottom:559.269333pt;}
.y9f{bottom:559.641333pt;}
.y80{bottom:564.316000pt;}
.yf{bottom:564.349333pt;}
.y39{bottom:572.286667pt;}
.yb8{bottom:575.788000pt;}
.y9e{bottom:577.706667pt;}
.y7f{bottom:582.382667pt;}
.ye{bottom:582.416000pt;}
.y5d{bottom:590.352000pt;}
.yb7{bottom:593.854667pt;}
.y9d{bottom:595.772000pt;}
.y38{bottom:599.385333pt;}
.y7e{bottom:600.448000pt;}
.y5c{bottom:608.417333pt;}
.yd{bottom:609.513333pt;}
.yb6{bottom:611.920000pt;}
.y9c{bottom:613.837333pt;}
.y37{bottom:617.450667pt;}
.y7d{bottom:618.513333pt;}
.y5b{bottom:626.482667pt;}
.yc{bottom:627.580000pt;}
.yb5{bottom:629.985333pt;}
.y9b{bottom:631.902667pt;}
.y36{bottom:635.516000pt;}
.y5a{bottom:644.549333pt;}
.y7c{bottom:645.612000pt;}
.yb{bottom:645.645333pt;}
.y9a{bottom:649.969333pt;}
.y35{bottom:653.581333pt;}
.y59{bottom:662.614667pt;}
.y7b{bottom:663.677333pt;}
.ya{bottom:663.710667pt;}
.y99{bottom:668.034667pt;}
.y34{bottom:671.646667pt;}
.y58{bottom:680.680000pt;}
.y7a{bottom:681.742667pt;}
.y9{bottom:681.776000pt;}
.ya8{bottom:686.100000pt;}
.y33{bottom:689.713333pt;}
.y79{bottom:699.808000pt;}
.y8{bottom:699.841333pt;}
.y98{bottom:704.165333pt;}
.y32{bottom:707.778667pt;}
.y7{bottom:717.908000pt;}
.y97{bottom:722.230667pt;}
.y31{bottom:725.844000pt;}
.y78{bottom:730.892000pt;}
.y6{bottom:735.973333pt;}
.y96{bottom:740.296000pt;}
.yb4{bottom:740.297333pt;}
.y57{bottom:743.909333pt;}
.y30{bottom:752.942667pt;}
.y5{bottom:754.038667pt;}
.y77{bottom:757.990667pt;}
.y95{bottom:758.362667pt;}
.y56{bottom:761.974667pt;}
.y2f{bottom:771.008000pt;}
.y94{bottom:776.428000pt;}
.y55{bottom:780.041333pt;}
.y76{bottom:785.088000pt;}
.y2e{bottom:789.073333pt;}
.y93{bottom:794.493333pt;}
.y54{bottom:798.106667pt;}
.y2d{bottom:807.138667pt;}
.y75{bottom:812.186667pt;}
.y92{bottom:812.558667pt;}
.y53{bottom:816.172000pt;}
.y2c{bottom:825.205333pt;}
.y91{bottom:830.624000pt;}
.y52{bottom:834.237333pt;}
.y74{bottom:839.285333pt;}
.y4{bottom:840.713333pt;}
.y2b{bottom:843.270667pt;}
.y90{bottom:848.690667pt;}
.y73{bottom:857.350667pt;}
.y2a{bottom:861.336000pt;}
.y3{bottom:864.624000pt;}
.y8f{bottom:866.756000pt;}
.y72{bottom:875.416000pt;}
.y51{bottom:879.401333pt;}
.y8e{bottom:884.821333pt;}
.y29{bottom:888.434667pt;}
.y71{bottom:893.482667pt;}
.y50{bottom:897.466667pt;}
.y8d{bottom:902.886667pt;}
.y28{bottom:906.500000pt;}
.y2{bottom:910.352000pt;}
.y70{bottom:911.548000pt;}
.y4f{bottom:915.533333pt;}
.y8c{bottom:920.952000pt;}
.y27{bottom:924.565333pt;}
.y6f{bottom:929.613333pt;}
.y4e{bottom:933.598667pt;}
.y8b{bottom:939.018667pt;}
.y26{bottom:942.630667pt;}
.y1{bottom:943.561333pt;}
.y6e{bottom:947.678667pt;}
.y4d{bottom:951.664000pt;}
.y8a{bottom:957.084000pt;}
.y25{bottom:960.697333pt;}
.y4c{bottom:969.729333pt;}
.y89{bottom:975.149333pt;}
.y6d{bottom:978.762667pt;}
.y24{bottom:987.794667pt;}
.y88{bottom:993.214667pt;}
.y23{bottom:1005.861333pt;}
.h5{height:40.727307pt;}
.h4{height:43.636400pt;}
.h3{height:54.630330pt;}
.h2{height:78.903200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:106.166667pt;}
.x5{left:107.708000pt;}
.x8{left:126.006667pt;}
.x11{left:130.050667pt;}
.xa{left:142.326667pt;}
.x9{left:144.596000pt;}
.x3{left:160.861333pt;}
.x1{left:163.764000pt;}
.xc{left:225.168000pt;}
.xb{left:226.869333pt;}
.x2{left:286.677333pt;}
.x4{left:325.138667pt;}
.xd{left:345.504000pt;}
.x10{left:389.577333pt;}
.x7{left:393.214667pt;}
.xe{left:464.137333pt;}
.xf{left:582.772000pt;}
}




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