
    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_423d4d291f93f00edbe6cf16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b87a511d832f17aa90f9cc8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_91233312ded6192438613251.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_7bc3790382d6fa653f818c8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_49a687fc11d936780b3c16cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_d32473a859a3797e3fe4ba0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_e05ddd354d80e0cf778a4b23.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_790b8d5de0a12a593f667cf9.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-82.800000px;}
.v2{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-5.328000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls3{letter-spacing:3.600000px;}
.lsb{letter-spacing:665.616000px;}
.ls0{letter-spacing:1146.396000px;}
.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:-72.000000px;}
.ws0{word-spacing:-66.240000px;}
.wsc{word-spacing:-18.864000px;}
.ws2{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.wsb{word-spacing:-12.672000px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-4.968000px;}
._14{margin-left:-3.591360px;}
._11{margin-left:-2.376000px;}
._0{margin-left:-1.192320px;}
._1{width:1.116000px;}
._5{width:2.672640px;}
._4{width:3.816000px;}
._a{width:5.112000px;}
._9{width:6.920640px;}
._8{width:7.992000px;}
._c{width:9.000000px;}
._d{width:10.728000px;}
._17{width:11.736000px;}
._2{width:12.744000px;}
._3{width:13.824000px;}
._b{width:14.976000px;}
._12{width:15.984000px;}
._13{width:19.620000px;}
._18{width:20.838960px;}
._15{width:22.176000px;}
._1b{width:23.186880px;}
._1a{width:24.480000px;}
._10{width:26.280000px;}
._6{width:27.720000px;}
._7{width:29.472000px;}
._e{width:31.008000px;}
._16{width:83.520000px;}
._f{width:100.776000px;}
._1c{width:103.836000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.700000px;}
.y57{bottom:88.236000px;}
.yfa{bottom:88.956000px;}
.y63{bottom:93.456000px;}
.y59{bottom:93.816000px;}
.y32{bottom:94.176000px;}
.y56{bottom:105.336000px;}
.yf9{bottom:106.416000px;}
.y62{bottom:106.596000px;}
.y55{bottom:110.556000px;}
.y8a{bottom:114.516000px;}
.yf8{bottom:123.696000px;}
.y54{bottom:123.876000px;}
.y11e{bottom:124.776000px;}
.y58{bottom:124.956000px;}
.y31{bottom:125.316000px;}
.y124{bottom:135.216000px;}
.yf7{bottom:140.976000px;}
.y89{bottom:145.656000px;}
.y6a{bottom:148.356000px;}
.y11d{bottom:155.730000px;}
.y53{bottom:155.910000px;}
.y30{bottom:156.270000px;}
.yf6{bottom:158.250000px;}
.y69{bottom:165.630000px;}
.yf5{bottom:175.530000px;}
.y61{bottom:176.610000px;}
.y2f{bottom:180.030000px;}
.yf4{bottom:180.750000px;}
.y68{bottom:182.910000px;}
.y11c{bottom:186.870000px;}
.y52{bottom:187.050000px;}
.ya9{bottom:187.410000px;}
.ydb{bottom:190.470000px;}
.yf3{bottom:194.070000px;}
.y60{bottom:196.590000px;}
.y123{bottom:197.310000px;}
.y67{bottom:200.010000px;}
.y2e{bottom:200.730000px;}
.y88{bottom:207.750000px;}
.y5f{bottom:213.870000px;}
.ycd{bottom:217.110000px;}
.y66{bottom:217.290000px;}
.y11b{bottom:217.830000px;}
.y51{bottom:218.010000px;}
.ya8{bottom:218.370000px;}
.y2d{bottom:221.430000px;}
.y5e{bottom:231.150000px;}
.y65{bottom:234.570000px;}
.ycc{bottom:237.090000px;}
.y87{bottom:238.710000px;}
.y2c{bottom:242.130000px;}
.yf2{bottom:242.850000px;}
.y5d{bottom:248.430000px;}
.y11a{bottom:248.970000px;}
.y50{bottom:249.150000px;}
.ya7{bottom:249.510000px;}
.y64{bottom:251.850000px;}
.yda{bottom:252.570000px;}
.ycb{bottom:254.370000px;}
.y122{bottom:259.410000px;}
.y2b{bottom:262.830000px;}
.y5c{bottom:265.530000px;}
.y86{bottom:269.850000px;}
.yca{bottom:271.650000px;}
.yf1{bottom:273.990000px;}
.y119{bottom:279.930000px;}
.y4f{bottom:280.110000px;}
.ya6{bottom:280.470000px;}
.y5b{bottom:282.810000px;}
.y2a{bottom:283.530000px;}
.yc9{bottom:288.930000px;}
.y85{bottom:300.810000px;}
.y118{bottom:303.690000px;}
.y29{bottom:304.230000px;}
.yf0{bottom:304.950000px;}
.yc8{bottom:306.210000px;}
.y4e{bottom:311.250000px;}
.ya5{bottom:311.610000px;}
.yd9{bottom:314.670000px;}
.y121{bottom:321.510000px;}
.yc7{bottom:323.490000px;}
.y117{bottom:324.390000px;}
.y28{bottom:324.930000px;}
.y84{bottom:331.995000px;}
.yef{bottom:336.135000px;}
.yc6{bottom:340.635000px;}
.y4d{bottom:342.255000px;}
.ya4{bottom:342.615000px;}
.y27{bottom:345.675000px;}
.y116{bottom:355.575000px;}
.y83{bottom:362.955000px;}
.y26{bottom:366.375000px;}
.yee{bottom:367.095000px;}
.yc5{bottom:369.075000px;}
.y4c{bottom:373.395000px;}
.yd8{bottom:376.815000px;}
.y120{bottom:383.655000px;}
.ya3{bottom:386.355000px;}
.y115{bottom:386.535000px;}
.y25{bottom:387.075000px;}
.y82{bottom:394.095000px;}
.yed{bottom:398.235000px;}
.yc4{bottom:400.035000px;}
.ya2{bottom:403.635000px;}
.y4b{bottom:404.355000px;}
.y24{bottom:407.775000px;}
.y114{bottom:417.675000px;}
.ya1{bottom:420.915000px;}
.y81{bottom:425.055000px;}
.y23{bottom:428.475000px;}
.yec{bottom:429.195000px;}
.yc3{bottom:431.175000px;}
.y4a{bottom:435.495000px;}
.ya0{bottom:438.195000px;}
.yd7{bottom:438.915000px;}
.y11f{bottom:445.755000px;}
.y113{bottom:448.635000px;}
.yc2{bottom:453.675000px;}
.y9f{bottom:455.475000px;}
.y80{bottom:456.195000px;}
.yeb{bottom:460.335000px;}
.y49{bottom:466.455000px;}
.y22{bottom:469.875000px;}
.yc1{bottom:470.955000px;}
.y9e{bottom:472.575000px;}
.y112{bottom:479.775000px;}
.y7f{bottom:487.155000px;}
.yc0{bottom:488.235000px;}
.y9d{bottom:489.855000px;}
.y21{bottom:490.575000px;}
.yea{bottom:491.295000px;}
.y48{bottom:497.595000px;}
.yd6{bottom:501.015000px;}
.ybf{bottom:505.335000px;}
.y9c{bottom:507.135000px;}
.y111{bottom:510.735000px;}
.y20{bottom:511.275000px;}
.y7e{bottom:518.295000px;}
.ye9{bottom:522.435000px;}
.ybe{bottom:522.615000px;}
.y9b{bottom:524.415000px;}
.y47{bottom:528.555000px;}
.y1f{bottom:531.975000px;}
.ybd{bottom:539.895000px;}
.y110{bottom:541.875000px;}
.y7d{bottom:549.255000px;}
.y1e{bottom:552.675000px;}
.ye8{bottom:553.395000px;}
.y46{bottom:559.695000px;}
.yd5{bottom:563.115000px;}
.ybc{bottom:568.155000px;}
.y10f{bottom:572.835000px;}
.y1d{bottom:573.375000px;}
.y7c{bottom:580.395000px;}
.y9a{bottom:583.815000px;}
.ye7{bottom:584.535000px;}
.y45{bottom:590.655000px;}
.y1c{bottom:594.075000px;}
.ybb{bottom:599.325000px;}
.y7b{bottom:600.405000px;}
.y10e{bottom:604.005000px;}
.y1b{bottom:614.805000px;}
.ye6{bottom:615.525000px;}
.y7a{bottom:617.505000px;}
.y44{bottom:621.645000px;}
.yd4{bottom:625.245000px;}
.yba{bottom:630.285000px;}
.y79{bottom:634.785000px;}
.y1a{bottom:635.505000px;}
.y10d{bottom:636.405000px;}
.y99{bottom:645.945000px;}
.ye5{bottom:646.485000px;}
.y78{bottom:652.065000px;}
.y42{bottom:652.785000px;}
.y19{bottom:656.205000px;}
.y43{bottom:659.625000px;}
.yb9{bottom:661.425000px;}
.y10c{bottom:668.265000px;}
.y77{bottom:669.345000px;}
.y18{bottom:676.905000px;}
.ye4{bottom:677.625000px;}
.y41{bottom:683.745000px;}
.y76{bottom:686.625000px;}
.yd3{bottom:687.345000px;}
.yb8{bottom:692.385000px;}
.y17{bottom:697.605000px;}
.y10b{bottom:699.405000px;}
.y75{bottom:703.725000px;}
.yd2{bottom:707.325000px;}
.y98{bottom:708.045000px;}
.ye3{bottom:708.585000px;}
.y40{bottom:714.885000px;}
.y16{bottom:718.305000px;}
.y10a{bottom:719.385000px;}
.yb7{bottom:723.525000px;}
.yd1{bottom:724.425000px;}
.y74{bottom:732.165000px;}
.y109{bottom:736.665000px;}
.y15{bottom:739.005000px;}
.ye2{bottom:739.725000px;}
.yd0{bottom:741.705000px;}
.y3f{bottom:745.845000px;}
.y108{bottom:753.765000px;}
.yb6{bottom:754.485000px;}
.ycf{bottom:758.985000px;}
.y14{bottom:759.705000px;}
.y73{bottom:763.125000px;}
.y97{bottom:770.145000px;}
.ye1{bottom:770.685000px;}
.y107{bottom:771.045000px;}
.y3e{bottom:776.985000px;}
.y13{bottom:780.405000px;}
.yb5{bottom:785.625000px;}
.y106{bottom:788.325000px;}
.y72{bottom:794.265000px;}
.y12{bottom:801.105000px;}
.ye0{bottom:801.825000px;}
.y105{bottom:805.605000px;}
.y3d{bottom:807.945000px;}
.yb4{bottom:816.585000px;}
.y11{bottom:821.805000px;}
.y71{bottom:825.225000px;}
.y96{bottom:832.245000px;}
.yde{bottom:832.785000px;}
.y104{bottom:833.865000px;}
.y3c{bottom:839.085000px;}
.ydf{bottom:839.625000px;}
.y10{bottom:842.505000px;}
.y70{bottom:845.925000px;}
.yb3{bottom:847.725000px;}
.ydd{bottom:856.725000px;}
.yf{bottom:863.250000px;}
.y103{bottom:865.050000px;}
.y6f{bottom:865.950000px;}
.y3b{bottom:870.090000px;}
.ydc{bottom:877.470000px;}
.yb2{bottom:878.730000px;}
.y6e{bottom:883.230000px;}
.ye{bottom:883.950000px;}
.y12c{bottom:890.790000px;}
.y95{bottom:894.390000px;}
.y102{bottom:896.010000px;}
.y6d{bottom:900.510000px;}
.y3a{bottom:901.230000px;}
.yd{bottom:904.650000px;}
.yb1{bottom:907.350000px;}
.y12b{bottom:911.490000px;}
.y6c{bottom:917.790000px;}
.yb0{bottom:924.630000px;}
.yc{bottom:925.350000px;}
.y101{bottom:927.150000px;}
.y39{bottom:932.190000px;}
.y6b{bottom:935.070000px;}
.yaf{bottom:941.910000px;}
.yb{bottom:946.050000px;}
.y12a{bottom:952.890000px;}
.y100{bottom:955.590000px;}
.yae{bottom:959.190000px;}
.y38{bottom:963.330000px;}
.y94{bottom:966.030000px;}
.ya{bottom:966.750000px;}
.yff{bottom:972.870000px;}
.y129{bottom:973.590000px;}
.yad{bottom:976.290000px;}
.y93{bottom:983.310000px;}
.y9{bottom:987.450000px;}
.yfe{bottom:990.150000px;}
.yac{bottom:993.570000px;}
.y37{bottom:994.290000px;}
.y92{bottom:1000.590000px;}
.yfd{bottom:1007.430000px;}
.y8{bottom:1008.150000px;}
.yab{bottom:1010.850000px;}
.y128{bottom:1014.990000px;}
.y91{bottom:1017.690000px;}
.yfc{bottom:1024.710000px;}
.y36{bottom:1025.430000px;}
.yaa{bottom:1028.130000px;}
.y7{bottom:1028.850000px;}
.y5a{bottom:1032.270000px;}
.y90{bottom:1034.970000px;}
.y127{bottom:1035.690000px;}
.y6{bottom:1049.550000px;}
.y8f{bottom:1052.250000px;}
.y35{bottom:1056.390000px;}
.yfb{bottom:1059.090000px;}
.y8e{bottom:1069.530000px;}
.y5{bottom:1070.250000px;}
.y126{bottom:1077.090000px;}
.y8d{bottom:1086.810000px;}
.y34{bottom:1087.530000px;}
.y4{bottom:1091.490000px;}
.y125{bottom:1097.790000px;}
.y8c{bottom:1104.090000px;}
.y3{bottom:1115.610000px;}
.y33{bottom:1118.490000px;}
.y8b{bottom:1121.190000px;}
.yce{bottom:1125.330000px;}
.y1{bottom:1231.740000px;}
.ha{height:38.158594px;}
.h8{height:47.344922px;}
.h3{height:53.464219px;}
.he{height:53.573906px;}
.hb{height:58.651172px;}
.hf{height:59.439023px;}
.hd{height:64.546875px;}
.h9{height:65.884219px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.hc{height:74.953125px;}
.h2{height:76.317188px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:127.655987px;}
.x16{left:132.515987px;}
.x17{left:138.275987px;}
.x3{left:153.209987px;}
.x18{left:154.649987px;}
.x7{left:181.469987px;}
.x12{left:191.549987px;}
.x4{left:236.729987px;}
.x2{left:241.769987px;}
.x8{left:266.249987px;}
.xb{left:281.369987px;}
.x1f{left:294.734973px;}
.x1b{left:297.794987px;}
.x20{left:300.854987px;}
.x9{left:305.714987px;}
.x5{left:318.674987px;}
.x15{left:343.694987px;}
.x1c{left:361.694987px;}
.xe{left:367.274987px;}
.xa{left:370.334987px;}
.xd{left:394.814987px;}
.x21{left:403.274987px;}
.x11{left:405.254987px;}
.xc{left:409.574987px;}
.xf{left:428.294987px;}
.x6{left:467.894987px;}
.x1d{left:479.084973px;}
.x1e{left:485.204987px;}
.x13{left:755.429973px;}
.x14{left:761.549987px;}
.x1{left:788.729987px;}
.x19{left:802.049973px;}
.x1a{left:808.169987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-4.736000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls3{letter-spacing:3.200000pt;}
.lsb{letter-spacing:591.658667pt;}
.ls0{letter-spacing:1019.018667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.880000pt;}
.wsc{word-spacing:-16.768000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.wsb{word-spacing:-11.264000pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-4.416000pt;}
._14{margin-left:-3.192320pt;}
._11{margin-left:-2.112000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.992000pt;}
._5{width:2.375680pt;}
._4{width:3.392000pt;}
._a{width:4.544000pt;}
._9{width:6.151680pt;}
._8{width:7.104000pt;}
._c{width:8.000000pt;}
._d{width:9.536000pt;}
._17{width:10.432000pt;}
._2{width:11.328000pt;}
._3{width:12.288000pt;}
._b{width:13.312000pt;}
._12{width:14.208000pt;}
._13{width:17.440000pt;}
._18{width:18.523520pt;}
._15{width:19.712000pt;}
._1b{width:20.610560pt;}
._1a{width:21.760000pt;}
._10{width:23.360000pt;}
._6{width:24.640000pt;}
._7{width:26.197333pt;}
._e{width:27.562667pt;}
._16{width:74.240000pt;}
._f{width:89.578667pt;}
._1c{width:92.298667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.400000pt;}
.y57{bottom:78.432000pt;}
.yfa{bottom:79.072000pt;}
.y63{bottom:83.072000pt;}
.y59{bottom:83.392000pt;}
.y32{bottom:83.712000pt;}
.y56{bottom:93.632000pt;}
.yf9{bottom:94.592000pt;}
.y62{bottom:94.752000pt;}
.y55{bottom:98.272000pt;}
.y8a{bottom:101.792000pt;}
.yf8{bottom:109.952000pt;}
.y54{bottom:110.112000pt;}
.y11e{bottom:110.912000pt;}
.y58{bottom:111.072000pt;}
.y31{bottom:111.392000pt;}
.y124{bottom:120.192000pt;}
.yf7{bottom:125.312000pt;}
.y89{bottom:129.472000pt;}
.y6a{bottom:131.872000pt;}
.y11d{bottom:138.426667pt;}
.y53{bottom:138.586667pt;}
.y30{bottom:138.906667pt;}
.yf6{bottom:140.666667pt;}
.y69{bottom:147.226667pt;}
.yf5{bottom:156.026667pt;}
.y61{bottom:156.986667pt;}
.y2f{bottom:160.026667pt;}
.yf4{bottom:160.666667pt;}
.y68{bottom:162.586667pt;}
.y11c{bottom:166.106667pt;}
.y52{bottom:166.266667pt;}
.ya9{bottom:166.586667pt;}
.ydb{bottom:169.306667pt;}
.yf3{bottom:172.506667pt;}
.y60{bottom:174.746667pt;}
.y123{bottom:175.386667pt;}
.y67{bottom:177.786667pt;}
.y2e{bottom:178.426667pt;}
.y88{bottom:184.666667pt;}
.y5f{bottom:190.106667pt;}
.ycd{bottom:192.986667pt;}
.y66{bottom:193.146667pt;}
.y11b{bottom:193.626667pt;}
.y51{bottom:193.786667pt;}
.ya8{bottom:194.106667pt;}
.y2d{bottom:196.826667pt;}
.y5e{bottom:205.466667pt;}
.y65{bottom:208.506667pt;}
.ycc{bottom:210.746667pt;}
.y87{bottom:212.186667pt;}
.y2c{bottom:215.226667pt;}
.yf2{bottom:215.866667pt;}
.y5d{bottom:220.826667pt;}
.y11a{bottom:221.306667pt;}
.y50{bottom:221.466667pt;}
.ya7{bottom:221.786667pt;}
.y64{bottom:223.866667pt;}
.yda{bottom:224.506667pt;}
.ycb{bottom:226.106667pt;}
.y122{bottom:230.586667pt;}
.y2b{bottom:233.626667pt;}
.y5c{bottom:236.026667pt;}
.y86{bottom:239.866667pt;}
.yca{bottom:241.466667pt;}
.yf1{bottom:243.546667pt;}
.y119{bottom:248.826667pt;}
.y4f{bottom:248.986667pt;}
.ya6{bottom:249.306667pt;}
.y5b{bottom:251.386667pt;}
.y2a{bottom:252.026667pt;}
.yc9{bottom:256.826667pt;}
.y85{bottom:267.386667pt;}
.y118{bottom:269.946667pt;}
.y29{bottom:270.426667pt;}
.yf0{bottom:271.066667pt;}
.yc8{bottom:272.186667pt;}
.y4e{bottom:276.666667pt;}
.ya5{bottom:276.986667pt;}
.yd9{bottom:279.706667pt;}
.y121{bottom:285.786667pt;}
.yc7{bottom:287.546667pt;}
.y117{bottom:288.346667pt;}
.y28{bottom:288.826667pt;}
.y84{bottom:295.106667pt;}
.yef{bottom:298.786667pt;}
.yc6{bottom:302.786667pt;}
.y4d{bottom:304.226667pt;}
.ya4{bottom:304.546667pt;}
.y27{bottom:307.266667pt;}
.y116{bottom:316.066667pt;}
.y83{bottom:322.626667pt;}
.y26{bottom:325.666667pt;}
.yee{bottom:326.306667pt;}
.yc5{bottom:328.066667pt;}
.y4c{bottom:331.906667pt;}
.yd8{bottom:334.946667pt;}
.y120{bottom:341.026667pt;}
.ya3{bottom:343.426667pt;}
.y115{bottom:343.586667pt;}
.y25{bottom:344.066667pt;}
.y82{bottom:350.306667pt;}
.yed{bottom:353.986667pt;}
.yc4{bottom:355.586667pt;}
.ya2{bottom:358.786667pt;}
.y4b{bottom:359.426667pt;}
.y24{bottom:362.466667pt;}
.y114{bottom:371.266667pt;}
.ya1{bottom:374.146667pt;}
.y81{bottom:377.826667pt;}
.y23{bottom:380.866667pt;}
.yec{bottom:381.506667pt;}
.yc3{bottom:383.266667pt;}
.y4a{bottom:387.106667pt;}
.ya0{bottom:389.506667pt;}
.yd7{bottom:390.146667pt;}
.y11f{bottom:396.226667pt;}
.y113{bottom:398.786667pt;}
.yc2{bottom:403.266667pt;}
.y9f{bottom:404.866667pt;}
.y80{bottom:405.506667pt;}
.yeb{bottom:409.186667pt;}
.y49{bottom:414.626667pt;}
.y22{bottom:417.666667pt;}
.yc1{bottom:418.626667pt;}
.y9e{bottom:420.066667pt;}
.y112{bottom:426.466667pt;}
.y7f{bottom:433.026667pt;}
.yc0{bottom:433.986667pt;}
.y9d{bottom:435.426667pt;}
.y21{bottom:436.066667pt;}
.yea{bottom:436.706667pt;}
.y48{bottom:442.306667pt;}
.yd6{bottom:445.346667pt;}
.ybf{bottom:449.186667pt;}
.y9c{bottom:450.786667pt;}
.y111{bottom:453.986667pt;}
.y20{bottom:454.466667pt;}
.y7e{bottom:460.706667pt;}
.ye9{bottom:464.386667pt;}
.ybe{bottom:464.546667pt;}
.y9b{bottom:466.146667pt;}
.y47{bottom:469.826667pt;}
.y1f{bottom:472.866667pt;}
.ybd{bottom:479.906667pt;}
.y110{bottom:481.666667pt;}
.y7d{bottom:488.226667pt;}
.y1e{bottom:491.266667pt;}
.ye8{bottom:491.906667pt;}
.y46{bottom:497.506667pt;}
.yd5{bottom:500.546667pt;}
.ybc{bottom:505.026667pt;}
.y10f{bottom:509.186667pt;}
.y1d{bottom:509.666667pt;}
.y7c{bottom:515.906667pt;}
.y9a{bottom:518.946667pt;}
.ye7{bottom:519.586667pt;}
.y45{bottom:525.026667pt;}
.y1c{bottom:528.066667pt;}
.ybb{bottom:532.733333pt;}
.y7b{bottom:533.693333pt;}
.y10e{bottom:536.893333pt;}
.y1b{bottom:546.493333pt;}
.ye6{bottom:547.133333pt;}
.y7a{bottom:548.893333pt;}
.y44{bottom:552.573333pt;}
.yd4{bottom:555.773333pt;}
.yba{bottom:560.253333pt;}
.y79{bottom:564.253333pt;}
.y1a{bottom:564.893333pt;}
.y10d{bottom:565.693333pt;}
.y99{bottom:574.173333pt;}
.ye5{bottom:574.653333pt;}
.y78{bottom:579.613333pt;}
.y42{bottom:580.253333pt;}
.y19{bottom:583.293333pt;}
.y43{bottom:586.333333pt;}
.yb9{bottom:587.933333pt;}
.y10c{bottom:594.013333pt;}
.y77{bottom:594.973333pt;}
.y18{bottom:601.693333pt;}
.ye4{bottom:602.333333pt;}
.y41{bottom:607.773333pt;}
.y76{bottom:610.333333pt;}
.yd3{bottom:610.973333pt;}
.yb8{bottom:615.453333pt;}
.y17{bottom:620.093333pt;}
.y10b{bottom:621.693333pt;}
.y75{bottom:625.533333pt;}
.yd2{bottom:628.733333pt;}
.y98{bottom:629.373333pt;}
.ye3{bottom:629.853333pt;}
.y40{bottom:635.453333pt;}
.y16{bottom:638.493333pt;}
.y10a{bottom:639.453333pt;}
.yb7{bottom:643.133333pt;}
.yd1{bottom:643.933333pt;}
.y74{bottom:650.813333pt;}
.y109{bottom:654.813333pt;}
.y15{bottom:656.893333pt;}
.ye2{bottom:657.533333pt;}
.yd0{bottom:659.293333pt;}
.y3f{bottom:662.973333pt;}
.y108{bottom:670.013333pt;}
.yb6{bottom:670.653333pt;}
.ycf{bottom:674.653333pt;}
.y14{bottom:675.293333pt;}
.y73{bottom:678.333333pt;}
.y97{bottom:684.573333pt;}
.ye1{bottom:685.053333pt;}
.y107{bottom:685.373333pt;}
.y3e{bottom:690.653333pt;}
.y13{bottom:693.693333pt;}
.yb5{bottom:698.333333pt;}
.y106{bottom:700.733333pt;}
.y72{bottom:706.013333pt;}
.y12{bottom:712.093333pt;}
.ye0{bottom:712.733333pt;}
.y105{bottom:716.093333pt;}
.y3d{bottom:718.173333pt;}
.yb4{bottom:725.853333pt;}
.y11{bottom:730.493333pt;}
.y71{bottom:733.533333pt;}
.y96{bottom:739.773333pt;}
.yde{bottom:740.253333pt;}
.y104{bottom:741.213333pt;}
.y3c{bottom:745.853333pt;}
.ydf{bottom:746.333333pt;}
.y10{bottom:748.893333pt;}
.y70{bottom:751.933333pt;}
.yb3{bottom:753.533333pt;}
.ydd{bottom:761.533333pt;}
.yf{bottom:767.333333pt;}
.y103{bottom:768.933333pt;}
.y6f{bottom:769.733333pt;}
.y3b{bottom:773.413333pt;}
.ydc{bottom:779.973333pt;}
.yb2{bottom:781.093333pt;}
.y6e{bottom:785.093333pt;}
.ye{bottom:785.733333pt;}
.y12c{bottom:791.813333pt;}
.y95{bottom:795.013333pt;}
.y102{bottom:796.453333pt;}
.y6d{bottom:800.453333pt;}
.y3a{bottom:801.093333pt;}
.yd{bottom:804.133333pt;}
.yb1{bottom:806.533333pt;}
.y12b{bottom:810.213333pt;}
.y6c{bottom:815.813333pt;}
.yb0{bottom:821.893333pt;}
.yc{bottom:822.533333pt;}
.y101{bottom:824.133333pt;}
.y39{bottom:828.613333pt;}
.y6b{bottom:831.173333pt;}
.yaf{bottom:837.253333pt;}
.yb{bottom:840.933333pt;}
.y12a{bottom:847.013333pt;}
.y100{bottom:849.413333pt;}
.yae{bottom:852.613333pt;}
.y38{bottom:856.293333pt;}
.y94{bottom:858.693333pt;}
.ya{bottom:859.333333pt;}
.yff{bottom:864.773333pt;}
.y129{bottom:865.413333pt;}
.yad{bottom:867.813333pt;}
.y93{bottom:874.053333pt;}
.y9{bottom:877.733333pt;}
.yfe{bottom:880.133333pt;}
.yac{bottom:883.173333pt;}
.y37{bottom:883.813333pt;}
.y92{bottom:889.413333pt;}
.yfd{bottom:895.493333pt;}
.y8{bottom:896.133333pt;}
.yab{bottom:898.533333pt;}
.y128{bottom:902.213333pt;}
.y91{bottom:904.613333pt;}
.yfc{bottom:910.853333pt;}
.y36{bottom:911.493333pt;}
.yaa{bottom:913.893333pt;}
.y7{bottom:914.533333pt;}
.y5a{bottom:917.573333pt;}
.y90{bottom:919.973333pt;}
.y127{bottom:920.613333pt;}
.y6{bottom:932.933333pt;}
.y8f{bottom:935.333333pt;}
.y35{bottom:939.013333pt;}
.yfb{bottom:941.413333pt;}
.y8e{bottom:950.693333pt;}
.y5{bottom:951.333333pt;}
.y126{bottom:957.413333pt;}
.y8d{bottom:966.053333pt;}
.y34{bottom:966.693333pt;}
.y4{bottom:970.213333pt;}
.y125{bottom:975.813333pt;}
.y8c{bottom:981.413333pt;}
.y3{bottom:991.653333pt;}
.y33{bottom:994.213333pt;}
.y8b{bottom:996.613333pt;}
.yce{bottom:1000.293333pt;}
.y1{bottom:1094.880000pt;}
.ha{height:33.918750pt;}
.h8{height:42.084375pt;}
.h3{height:47.523750pt;}
.he{height:47.621250pt;}
.hb{height:52.134375pt;}
.hf{height:52.834688pt;}
.hd{height:57.375000pt;}
.h9{height:58.563750pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.hc{height:66.625000pt;}
.h2{height:67.837500pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:113.471988pt;}
.x16{left:117.791988pt;}
.x17{left:122.911988pt;}
.x3{left:136.186655pt;}
.x18{left:137.466655pt;}
.x7{left:161.306655pt;}
.x12{left:170.266655pt;}
.x4{left:210.426655pt;}
.x2{left:214.906655pt;}
.x8{left:236.666655pt;}
.xb{left:250.106655pt;}
.x1f{left:261.986643pt;}
.x1b{left:264.706655pt;}
.x20{left:267.426655pt;}
.x9{left:271.746655pt;}
.x5{left:283.266655pt;}
.x15{left:305.506655pt;}
.x1c{left:321.506655pt;}
.xe{left:326.466655pt;}
.xa{left:329.186655pt;}
.xd{left:350.946655pt;}
.x21{left:358.466655pt;}
.x11{left:360.226655pt;}
.xc{left:364.066655pt;}
.xf{left:380.706655pt;}
.x6{left:415.906655pt;}
.x1d{left:425.853310pt;}
.x1e{left:431.293322pt;}
.x13{left:671.493310pt;}
.x14{left:676.933322pt;}
.x1{left:701.093322pt;}
.x19{left:712.933310pt;}
.x1a{left:718.373322pt;}
}




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