
    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_88389886fde4255e1bc55ff4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_02de4ad2cc6791ea001707a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e14df01e644cc18643a57aa3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_b7e31cce58d4d9697d1d6617.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_93b9cb4062dcac7980ca6313.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_51912599cf499ddc6f44149f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_0ce88c1f5d57059ad4b72003.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_d3f791d575cc852c411884f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_f3c353aad76f958862cd3b3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_4895002563ffa84738f480ef.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_4cc1a3a511f9b0640ced6d5a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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:fff;src:url('chunks/assets/font_7daf35b3712a93890a4c6a54.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_e43d5b2c628654d5cb1bbe08.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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:ff11;src:url('chunks/assets/font_ec9306f21ca9ac5418b6a25d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_50d3392f2dab858296142672.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_35a4f55235f89af85a85a006.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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:ff16;src:url('chunks/assets/font_8ae5c8f154aa7e59b6021f37.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.891113;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;}
.ls9{letter-spacing:-4.680000px;}
.lse{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls4{letter-spacing:0.894240px;}
.ls10{letter-spacing:15.786720px;}
.lsf{letter-spacing:45.306720px;}
.lsa{letter-spacing:63.450720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.854880px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.260000px;}
.wsa{word-spacing:0.000000px;}
._9{margin-left:-6.454080px;}
._7{margin-left:-5.296800px;}
._6{margin-left:-4.189440px;}
._2{margin-left:-3.186000px;}
._3{margin-left:-2.075760px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._5{width:2.266800px;}
._8{width:3.585600px;}
._e{width:4.801680px;}
._4{width:5.869440px;}
._a{width:7.111440px;}
._b{width:8.225760px;}
._12{width:10.209120px;}
._d{width:11.481120px;}
._c{width:13.087440px;}
._15{width:16.043760px;}
._14{width:17.796960px;}
._13{width:19.154880px;}
._11{width:20.188320px;}
._10{width:26.884080px;}
._f{width:28.334160px;}
._17{width:32.330160px;}
._16{width:33.405840px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.240000px;}
.y9b{bottom:3.270000px;}
.y3{bottom:3.636000px;}
.ye{bottom:4.140000px;}
.y15{bottom:4.860000px;}
.y17{bottom:12.420000px;}
.yc{bottom:13.680000px;}
.y40{bottom:14.940000px;}
.y4{bottom:17.496000px;}
.y3f{bottom:17.820000px;}
.y2{bottom:20.196000px;}
.y3c{bottom:20.520000px;}
.y14{bottom:25.560000px;}
.yb{bottom:30.060000px;}
.y3b{bottom:37.800000px;}
.y13{bottom:42.480000px;}
.ya{bottom:46.440000px;}
.y5{bottom:46.800000px;}
.y3a{bottom:55.080000px;}
.y12{bottom:60.840000px;}
.y1{bottom:67.860000px;}
.y39{bottom:72.360000px;}
.y9{bottom:73.260000px;}
.y11{bottom:79.740000px;}
.y38{bottom:89.640000px;}
.y8{bottom:92.910000px;}
.y10{bottom:104.220000px;}
.y37{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y36{bottom:124.020000px;}
.y8d{bottom:135.216000px;}
.y51{bottom:137.016000px;}
.y35{bottom:141.300000px;}
.yb4{bottom:141.516000px;}
.yd9{bottom:146.016000px;}
.y8c{bottom:152.490000px;}
.y50{bottom:154.110000px;}
.y34{bottom:158.610000px;}
.yb3{bottom:158.790000px;}
.yd8{bottom:163.290000px;}
.y8b{bottom:169.770000px;}
.y4f{bottom:171.390000px;}
.y33{bottom:175.890000px;}
.yb2{bottom:176.070000px;}
.yd7{bottom:180.570000px;}
.y8a{bottom:187.050000px;}
.y4e{bottom:188.670000px;}
.y32{bottom:193.170000px;}
.yd6{bottom:197.670000px;}
.y89{bottom:204.150000px;}
.y4d{bottom:205.950000px;}
.y31{bottom:210.270000px;}
.yb1{bottom:210.450000px;}
.yd5{bottom:214.950000px;}
.y24{bottom:215.310000px;}
.y88{bottom:221.430000px;}
.y4c{bottom:223.230000px;}
.yb0{bottom:225.210000px;}
.y30{bottom:227.550000px;}
.yd4{bottom:232.230000px;}
.y23{bottom:232.590000px;}
.y87{bottom:238.710000px;}
.y4b{bottom:240.510000px;}
.yaf{bottom:243.210000px;}
.y2f{bottom:244.830000px;}
.yd3{bottom:249.510000px;}
.y22{bottom:249.690000px;}
.y86{bottom:255.990000px;}
.y4a{bottom:257.610000px;}
.yae{bottom:261.210000px;}
.y2e{bottom:262.110000px;}
.yd2{bottom:266.790000px;}
.y21{bottom:267.510000px;}
.y85{bottom:273.270000px;}
.y49{bottom:274.890000px;}
.yad{bottom:279.210000px;}
.y2d{bottom:279.390000px;}
.yd1{bottom:284.070000px;}
.y20{bottom:284.970000px;}
.y84{bottom:290.550000px;}
.y48{bottom:292.170000px;}
.y2c{bottom:296.490000px;}
.yac{bottom:297.210000px;}
.yd0{bottom:301.170000px;}
.y1f{bottom:302.430000px;}
.y83{bottom:307.650000px;}
.y47{bottom:309.450000px;}
.y2b{bottom:313.770000px;}
.yab{bottom:315.210000px;}
.ycf{bottom:318.450000px;}
.y1e{bottom:319.710000px;}
.y82{bottom:324.930000px;}
.y46{bottom:326.730000px;}
.y2a{bottom:331.050000px;}
.yce{bottom:335.730000px;}
.yaa{bottom:336.495000px;}
.y1d{bottom:337.170000px;}
.y81{bottom:342.255000px;}
.y45{bottom:344.055000px;}
.y29{bottom:348.330000px;}
.ycd{bottom:353.055000px;}
.ya9{bottom:353.775000px;}
.y1c{bottom:354.450000px;}
.y80{bottom:359.535000px;}
.y44{bottom:361.155000px;}
.y28{bottom:365.610000px;}
.ya8{bottom:368.535000px;}
.ycc{bottom:370.335000px;}
.y1b{bottom:374.790000px;}
.y7f{bottom:376.815000px;}
.y43{bottom:378.435000px;}
.y27{bottom:382.890000px;}
.ya7{bottom:386.535000px;}
.ycb{bottom:387.615000px;}
.y7e{bottom:394.095000px;}
.y42{bottom:395.715000px;}
.y26{bottom:399.990000px;}
.y1a{bottom:402.330000px;}
.ya6{bottom:404.535000px;}
.yca{bottom:404.715000px;}
.y7d{bottom:411.195000px;}
.y41{bottom:412.995000px;}
.y25{bottom:417.315000px;}
.y19{bottom:420.015000px;}
.yc9{bottom:421.995000px;}
.ya5{bottom:422.535000px;}
.y3e{bottom:427.035000px;}
.y7c{bottom:428.475000px;}
.yc8{bottom:439.275000px;}
.ya4{bottom:443.775000px;}
.y7b{bottom:445.755000px;}
.y18{bottom:456.195000px;}
.yc7{bottom:456.555000px;}
.ya3{bottom:461.055000px;}
.y7a{bottom:463.035000px;}
.yc6{bottom:473.835000px;}
.ya2{bottom:475.815000px;}
.y79{bottom:480.315000px;}
.yc5{bottom:490.935000px;}
.ya1{bottom:493.815000px;}
.y78{bottom:498.495000px;}
.yc4{bottom:508.215000px;}
.ya0{bottom:511.815000px;}
.y77{bottom:516.855000px;}
.yc3{bottom:525.495000px;}
.y9f{bottom:529.815000px;}
.y76{bottom:535.215000px;}
.yc2{bottom:542.775000px;}
.y9e{bottom:547.815000px;}
.y75{bottom:553.575000px;}
.yc1{bottom:560.055000px;}
.y9d{bottom:565.815000px;}
.y74{bottom:571.935000px;}
.yc0{bottom:577.335000px;}
.y9c{bottom:583.815000px;}
.y73{bottom:589.215000px;}
.ybf{bottom:594.435000px;}
.y9a{bottom:601.815000px;}
.y72{bottom:606.345000px;}
.ybe{bottom:611.745000px;}
.y99{bottom:623.085000px;}
.y71{bottom:624.705000px;}
.ybd{bottom:629.025000px;}
.y98{bottom:640.365000px;}
.y70{bottom:643.065000px;}
.ybc{bottom:646.305000px;}
.y97{bottom:655.125000px;}
.y6f{bottom:661.425000px;}
.ybb{bottom:663.585000px;}
.y96{bottom:673.125000px;}
.y6e{bottom:678.705000px;}
.yba{bottom:680.865000px;}
.y95{bottom:691.125000px;}
.y6d{bottom:695.805000px;}
.yb9{bottom:697.965000px;}
.y94{bottom:709.125000px;}
.y6c{bottom:713.085000px;}
.yb8{bottom:715.245000px;}
.y93{bottom:727.125000px;}
.y6b{bottom:730.365000px;}
.yb7{bottom:732.525000px;}
.y92{bottom:745.125000px;}
.y6a{bottom:747.645000px;}
.yb6{bottom:749.805000px;}
.y91{bottom:763.125000px;}
.y69{bottom:764.925000px;}
.yb5{bottom:767.085000px;}
.y68{bottom:782.205000px;}
.y90{bottom:784.365000px;}
.y67{bottom:799.305000px;}
.y8f{bottom:801.465000px;}
.y66{bottom:817.665000px;}
.y8e{bottom:818.745000px;}
.y65{bottom:836.025000px;}
.y64{bottom:853.305000px;}
.y63{bottom:870.630000px;}
.y16{bottom:887.550000px;}
.y62{bottom:887.730000px;}
.y61{bottom:905.010000px;}
.yf{bottom:917.070000px;}
.y60{bottom:922.290000px;}
.y5f{bottom:939.570000px;}
.y5e{bottom:956.850000px;}
.y5d{bottom:974.130000px;}
.y5c{bottom:991.230000px;}
.y5b{bottom:1008.510000px;}
.y5a{bottom:1025.790000px;}
.yd{bottom:1036.410000px;}
.y59{bottom:1043.070000px;}
.y6{bottom:1056.390000px;}
.y58{bottom:1060.350000px;}
.y57{bottom:1077.630000px;}
.y56{bottom:1094.730000px;}
.y55{bottom:1112.010000px;}
.y54{bottom:1129.290000px;}
.y53{bottom:1146.600000px;}
.y52{bottom:1163.880000px;}
.h1e{height:17.100000px;}
.h20{height:17.280000px;}
.h1f{height:17.316000px;}
.hc{height:19.440000px;}
.h1a{height:29.160000px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h9{height:36.180000px;}
.h1b{height:38.818125px;}
.h1c{height:42.164648px;}
.h18{height:42.281367px;}
.h19{height:43.215117px;}
.h4{height:43.453125px;}
.h1d{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h13{height:73.722656px;}
.hd{height:119.340000px;}
.h7{height:121.536000px;}
.h14{height:431.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:74.880000px;}
.wd{width:89.100000px;}
.w15{width:99.720000px;}
.w18{width:123.660000px;}
.w5{width:151.950000px;}
.wc{width:157.350000px;}
.we{width:165.090000px;}
.w14{width:175.530000px;}
.wb{width:198.390000px;}
.w8{width:216.075000px;}
.w13{width:221.430000px;}
.w10{width:226.470000px;}
.w16{width:227.415000px;}
.w12{width:230.835000px;}
.wf{width:261.075000px;}
.wa{width:282.675000px;}
.w17{width:376.995000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x10{left:12.600000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.xd{left:100.650000px;}
.xb{left:108.750000px;}
.x13{left:194.069987px;}
.xe{left:215.175000px;}
.x5{left:232.950000px;}
.x14{left:247.530000px;}
.x8{left:272.235000px;}
.xf{left:297.075000px;}
.x17{left:304.094987px;}
.x1b{left:309.855000px;}
.x18{left:313.275000px;}
.xc{left:320.475000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x1d{left:396.074987px;}
.x9{left:439.500000px;}
.x15{left:509.325000px;}
.x19{left:535.425000px;}
.x11{left:564.225000px;}
.x1c{left:687.750000px;}
.x1a{left:711.690000px;}
.x12{left:722.310000px;}
.x16{left:736.530000px;}
.x3{left:739.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-4.160000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls4{letter-spacing:0.794880pt;}
.ls10{letter-spacing:14.032640pt;}
.lsf{letter-spacing:40.272640pt;}
.lsa{letter-spacing:56.400640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.426560pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.120000pt;}
.wsa{word-spacing:0.000000pt;}
._9{margin-left:-5.736960pt;}
._7{margin-left:-4.708267pt;}
._6{margin-left:-3.723947pt;}
._2{margin-left:-2.832000pt;}
._3{margin-left:-1.845120pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._5{width:2.014933pt;}
._8{width:3.187200pt;}
._e{width:4.268160pt;}
._4{width:5.217280pt;}
._a{width:6.321280pt;}
._b{width:7.311787pt;}
._12{width:9.074773pt;}
._d{width:10.205440pt;}
._c{width:11.633280pt;}
._15{width:14.261120pt;}
._14{width:15.819520pt;}
._13{width:17.026560pt;}
._11{width:17.945173pt;}
._10{width:23.896960pt;}
._f{width:25.185920pt;}
._17{width:28.737920pt;}
._16{width:29.694080pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.880000pt;}
.y9b{bottom:2.906667pt;}
.y3{bottom:3.232000pt;}
.ye{bottom:3.680000pt;}
.y15{bottom:4.320000pt;}
.y17{bottom:11.040000pt;}
.yc{bottom:12.160000pt;}
.y40{bottom:13.280000pt;}
.y4{bottom:15.552000pt;}
.y3f{bottom:15.840000pt;}
.y2{bottom:17.952000pt;}
.y3c{bottom:18.240000pt;}
.y14{bottom:22.720000pt;}
.yb{bottom:26.720000pt;}
.y3b{bottom:33.600000pt;}
.y13{bottom:37.760000pt;}
.ya{bottom:41.280000pt;}
.y5{bottom:41.600000pt;}
.y3a{bottom:48.960000pt;}
.y12{bottom:54.080000pt;}
.y1{bottom:60.320000pt;}
.y39{bottom:64.320000pt;}
.y9{bottom:65.120000pt;}
.y11{bottom:70.880000pt;}
.y38{bottom:79.680000pt;}
.y8{bottom:82.586667pt;}
.y10{bottom:92.640000pt;}
.y37{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y36{bottom:110.240000pt;}
.y8d{bottom:120.192000pt;}
.y51{bottom:121.792000pt;}
.y35{bottom:125.600000pt;}
.yb4{bottom:125.792000pt;}
.yd9{bottom:129.792000pt;}
.y8c{bottom:135.546667pt;}
.y50{bottom:136.986667pt;}
.y34{bottom:140.986667pt;}
.yb3{bottom:141.146667pt;}
.yd8{bottom:145.146667pt;}
.y8b{bottom:150.906667pt;}
.y4f{bottom:152.346667pt;}
.y33{bottom:156.346667pt;}
.yb2{bottom:156.506667pt;}
.yd7{bottom:160.506667pt;}
.y8a{bottom:166.266667pt;}
.y4e{bottom:167.706667pt;}
.y32{bottom:171.706667pt;}
.yd6{bottom:175.706667pt;}
.y89{bottom:181.466667pt;}
.y4d{bottom:183.066667pt;}
.y31{bottom:186.906667pt;}
.yb1{bottom:187.066667pt;}
.yd5{bottom:191.066667pt;}
.y24{bottom:191.386667pt;}
.y88{bottom:196.826667pt;}
.y4c{bottom:198.426667pt;}
.yb0{bottom:200.186667pt;}
.y30{bottom:202.266667pt;}
.yd4{bottom:206.426667pt;}
.y23{bottom:206.746667pt;}
.y87{bottom:212.186667pt;}
.y4b{bottom:213.786667pt;}
.yaf{bottom:216.186667pt;}
.y2f{bottom:217.626667pt;}
.yd3{bottom:221.786667pt;}
.y22{bottom:221.946667pt;}
.y86{bottom:227.546667pt;}
.y4a{bottom:228.986667pt;}
.yae{bottom:232.186667pt;}
.y2e{bottom:232.986667pt;}
.yd2{bottom:237.146667pt;}
.y21{bottom:237.786667pt;}
.y85{bottom:242.906667pt;}
.y49{bottom:244.346667pt;}
.yad{bottom:248.186667pt;}
.y2d{bottom:248.346667pt;}
.yd1{bottom:252.506667pt;}
.y20{bottom:253.306667pt;}
.y84{bottom:258.266667pt;}
.y48{bottom:259.706667pt;}
.y2c{bottom:263.546667pt;}
.yac{bottom:264.186667pt;}
.yd0{bottom:267.706667pt;}
.y1f{bottom:268.826667pt;}
.y83{bottom:273.466667pt;}
.y47{bottom:275.066667pt;}
.y2b{bottom:278.906667pt;}
.yab{bottom:280.186667pt;}
.ycf{bottom:283.066667pt;}
.y1e{bottom:284.186667pt;}
.y82{bottom:288.826667pt;}
.y46{bottom:290.426667pt;}
.y2a{bottom:294.266667pt;}
.yce{bottom:298.426667pt;}
.yaa{bottom:299.106667pt;}
.y1d{bottom:299.706667pt;}
.y81{bottom:304.226667pt;}
.y45{bottom:305.826667pt;}
.y29{bottom:309.626667pt;}
.ycd{bottom:313.826667pt;}
.ya9{bottom:314.466667pt;}
.y1c{bottom:315.066667pt;}
.y80{bottom:319.586667pt;}
.y44{bottom:321.026667pt;}
.y28{bottom:324.986667pt;}
.ya8{bottom:327.586667pt;}
.ycc{bottom:329.186667pt;}
.y1b{bottom:333.146667pt;}
.y7f{bottom:334.946667pt;}
.y43{bottom:336.386667pt;}
.y27{bottom:340.346667pt;}
.ya7{bottom:343.586667pt;}
.ycb{bottom:344.546667pt;}
.y7e{bottom:350.306667pt;}
.y42{bottom:351.746667pt;}
.y26{bottom:355.546667pt;}
.y1a{bottom:357.626667pt;}
.ya6{bottom:359.586667pt;}
.yca{bottom:359.746667pt;}
.y7d{bottom:365.506667pt;}
.y41{bottom:367.106667pt;}
.y25{bottom:370.946667pt;}
.y19{bottom:373.346667pt;}
.yc9{bottom:375.106667pt;}
.ya5{bottom:375.586667pt;}
.y3e{bottom:379.586667pt;}
.y7c{bottom:380.866667pt;}
.yc8{bottom:390.466667pt;}
.ya4{bottom:394.466667pt;}
.y7b{bottom:396.226667pt;}
.y18{bottom:405.506667pt;}
.yc7{bottom:405.826667pt;}
.ya3{bottom:409.826667pt;}
.y7a{bottom:411.586667pt;}
.yc6{bottom:421.186667pt;}
.ya2{bottom:422.946667pt;}
.y79{bottom:426.946667pt;}
.yc5{bottom:436.386667pt;}
.ya1{bottom:438.946667pt;}
.y78{bottom:443.106667pt;}
.yc4{bottom:451.746667pt;}
.ya0{bottom:454.946667pt;}
.y77{bottom:459.426667pt;}
.yc3{bottom:467.106667pt;}
.y9f{bottom:470.946667pt;}
.y76{bottom:475.746667pt;}
.yc2{bottom:482.466667pt;}
.y9e{bottom:486.946667pt;}
.y75{bottom:492.066667pt;}
.yc1{bottom:497.826667pt;}
.y9d{bottom:502.946667pt;}
.y74{bottom:508.386667pt;}
.yc0{bottom:513.186667pt;}
.y9c{bottom:518.946667pt;}
.y73{bottom:523.746667pt;}
.ybf{bottom:528.386667pt;}
.y9a{bottom:534.946667pt;}
.y72{bottom:538.973333pt;}
.ybe{bottom:543.773333pt;}
.y99{bottom:553.853333pt;}
.y71{bottom:555.293333pt;}
.ybd{bottom:559.133333pt;}
.y98{bottom:569.213333pt;}
.y70{bottom:571.613333pt;}
.ybc{bottom:574.493333pt;}
.y97{bottom:582.333333pt;}
.y6f{bottom:587.933333pt;}
.ybb{bottom:589.853333pt;}
.y96{bottom:598.333333pt;}
.y6e{bottom:603.293333pt;}
.yba{bottom:605.213333pt;}
.y95{bottom:614.333333pt;}
.y6d{bottom:618.493333pt;}
.yb9{bottom:620.413333pt;}
.y94{bottom:630.333333pt;}
.y6c{bottom:633.853333pt;}
.yb8{bottom:635.773333pt;}
.y93{bottom:646.333333pt;}
.y6b{bottom:649.213333pt;}
.yb7{bottom:651.133333pt;}
.y92{bottom:662.333333pt;}
.y6a{bottom:664.573333pt;}
.yb6{bottom:666.493333pt;}
.y91{bottom:678.333333pt;}
.y69{bottom:679.933333pt;}
.yb5{bottom:681.853333pt;}
.y68{bottom:695.293333pt;}
.y90{bottom:697.213333pt;}
.y67{bottom:710.493333pt;}
.y8f{bottom:712.413333pt;}
.y66{bottom:726.813333pt;}
.y8e{bottom:727.773333pt;}
.y65{bottom:743.133333pt;}
.y64{bottom:758.493333pt;}
.y63{bottom:773.893333pt;}
.y16{bottom:788.933333pt;}
.y62{bottom:789.093333pt;}
.y61{bottom:804.453333pt;}
.yf{bottom:815.173333pt;}
.y60{bottom:819.813333pt;}
.y5f{bottom:835.173333pt;}
.y5e{bottom:850.533333pt;}
.y5d{bottom:865.893333pt;}
.y5c{bottom:881.093333pt;}
.y5b{bottom:896.453333pt;}
.y5a{bottom:911.813333pt;}
.yd{bottom:921.253333pt;}
.y59{bottom:927.173333pt;}
.y6{bottom:939.013333pt;}
.y58{bottom:942.533333pt;}
.y57{bottom:957.893333pt;}
.y56{bottom:973.093333pt;}
.y55{bottom:988.453333pt;}
.y54{bottom:1003.813333pt;}
.y53{bottom:1019.200000pt;}
.y52{bottom:1034.560000pt;}
.h1e{height:15.200000pt;}
.h20{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hc{height:17.280000pt;}
.h1a{height:25.920000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h9{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h1c{height:37.479688pt;}
.h18{height:37.583438pt;}
.h19{height:38.413438pt;}
.h4{height:38.625000pt;}
.h1d{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h13{height:65.531250pt;}
.hd{height:106.080000pt;}
.h7{height:108.032000pt;}
.h14{height:383.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:66.560000pt;}
.wd{width:79.200000pt;}
.w15{width:88.640000pt;}
.w18{width:109.920000pt;}
.w5{width:135.066667pt;}
.wc{width:139.866667pt;}
.we{width:146.746667pt;}
.w14{width:156.026667pt;}
.wb{width:176.346667pt;}
.w8{width:192.066667pt;}
.w13{width:196.826667pt;}
.w10{width:201.306667pt;}
.w16{width:202.146667pt;}
.w12{width:205.186667pt;}
.wf{width:232.066667pt;}
.wa{width:251.266667pt;}
.w17{width:335.106667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x10{left:11.200000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.xd{left:89.466667pt;}
.xb{left:96.666667pt;}
.x13{left:172.506655pt;}
.xe{left:191.266667pt;}
.x5{left:207.066667pt;}
.x14{left:220.026667pt;}
.x8{left:241.986667pt;}
.xf{left:264.066667pt;}
.x17{left:270.306655pt;}
.x1b{left:275.426667pt;}
.x18{left:278.466667pt;}
.xc{left:284.866667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x1d{left:352.066655pt;}
.x9{left:390.666667pt;}
.x15{left:452.733333pt;}
.x19{left:475.933333pt;}
.x11{left:501.533333pt;}
.x1c{left:611.333333pt;}
.x1a{left:632.613333pt;}
.x12{left:642.053333pt;}
.x16{left:654.693333pt;}
.x3{left:656.933333pt;}
}




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