
    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_369005afcde05fcefd4345ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_ecae8d94f5d8affc83000efd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967285;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_0a601d9c6f0ec91c113101f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860352;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_28f463ede1008f92e36c7719.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7587bd45723664b33530c4db.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_a03522b9e6fa31a4d5ad9436.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_0f6419e5d6ea022fea3afc04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.132600px;}
.ls6{letter-spacing:-0.115200px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.075000px;}
.lsd{letter-spacing:0.094800px;}
.ls2{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.256200px;}
.ls0{letter-spacing:39.185280px;}
.ls8{letter-spacing:39.558720px;}
.lsb{letter-spacing:49.265280px;}
.ls9{letter-spacing:49.985280px;}
.lsc{letter-spacing:58.625280px;}
.ls1{letter-spacing:59.345280px;}
.lse{letter-spacing:69.425280px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws7{word-spacing:-17.668560px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-15.045240px;}
.ws8{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.855040px;}
.ws5{word-spacing:-14.837640px;}
.ws6{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-4.835520px;}
._9{margin-left:-3.510720px;}
._b{margin-left:-2.102880px;}
._0{margin-left:-1.015440px;}
._3{width:1.059840px;}
._5{width:2.534880px;}
._6{width:4.093200px;}
._8{width:5.136000px;}
._1{width:6.690240px;}
._f{width:8.064480px;}
._c{width:9.639120px;}
._2{width:10.929600px;}
._4{width:12.254400px;}
._10{width:13.539840px;}
._7{width:16.096320px;}
._d{width:17.619840px;}
._e{width:18.823200px;}
._11{width:20.004480px;}
._12{width:21.072960px;}
._15{width:22.322880px;}
._16{width:23.647680px;}
._1e{width:25.325520px;}
._1c{width:30.934080px;}
._1d{width:31.993920px;}
._18{width:34.974720px;}
._17{width:36.184800px;}
._19{width:40.008960px;}
._1a{width:45.364560px;}
._1b{width:46.417440px;}
._14{width:48.526080px;}
._13{width:49.868880px;}
._1f{width:146.617200px;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y1{bottom:77.796000px;}
.ybc{bottom:112.356000px;}
.ya6{bottom:113.256000px;}
.y5e{bottom:119.376000px;}
.y13e{bottom:120.816000px;}
.y2e{bottom:130.896000px;}
.ybb{bottom:134.136000px;}
.ya5{bottom:135.036000px;}
.y103{bottom:135.396000px;}
.y8b{bottom:135.936000px;}
.y5d{bottom:141.156000px;}
.y15a{bottom:147.636000px;}
.y120{bottom:152.490000px;}
.y2d{bottom:152.670000px;}
.y13d{bottom:154.470000px;}
.ya4{bottom:156.630000px;}
.y102{bottom:157.170000px;}
.y8a{bottom:157.530000px;}
.y5c{bottom:162.930000px;}
.y2c{bottom:174.450000px;}
.ya3{bottom:178.410000px;}
.y101{bottom:178.770000px;}
.y89{bottom:179.310000px;}
.y159{bottom:181.470000px;}
.y5b{bottom:184.530000px;}
.y11f{bottom:186.330000px;}
.y13c{bottom:188.130000px;}
.y2b{bottom:196.230000px;}
.yac{bottom:200.190000px;}
.y100{bottom:200.550000px;}
.y88{bottom:201.090000px;}
.y5a{bottom:206.310000px;}
.y13b{bottom:209.910000px;}
.y158{bottom:215.130000px;}
.y2a{bottom:217.830000px;}
.y11e{bottom:219.990000px;}
.yff{bottom:222.330000px;}
.yba{bottom:222.690000px;}
.y87{bottom:222.870000px;}
.y59{bottom:228.090000px;}
.y29{bottom:239.610000px;}
.y11d{bottom:241.770000px;}
.y13a{bottom:243.750000px;}
.yfe{bottom:244.110000px;}
.y86{bottom:244.470000px;}
.yb9{bottom:245.370000px;}
.y157{bottom:248.970000px;}
.y58{bottom:249.870000px;}
.y28{bottom:261.390000px;}
.y11c{bottom:263.550000px;}
.yfd{bottom:265.710000px;}
.ya2{bottom:266.250000px;}
.y85{bottom:267.150000px;}
.y57{bottom:271.470000px;}
.y139{bottom:277.455000px;}
.y156{bottom:282.675000px;}
.y27{bottom:283.215000px;}
.y11b{bottom:285.375000px;}
.yfc{bottom:287.535000px;}
.ya1{bottom:288.075000px;}
.y84{bottom:288.975000px;}
.yb8{bottom:289.875000px;}
.y56{bottom:293.295000px;}
.y138{bottom:299.235000px;}
.y26{bottom:304.815000px;}
.yfb{bottom:309.315000px;}
.ya0{bottom:309.855000px;}
.y83{bottom:310.575000px;}
.yb7{bottom:311.475000px;}
.y55{bottom:315.075000px;}
.y155{bottom:316.335000px;}
.y11a{bottom:319.035000px;}
.y137{bottom:321.015000px;}
.ye2{bottom:323.535000px;}
.y25{bottom:326.595000px;}
.y9f{bottom:331.455000px;}
.y82{bottom:332.355000px;}
.yb6{bottom:333.255000px;}
.y54{bottom:336.855000px;}
.yfa{bottom:342.975000px;}
.ye1{bottom:345.315000px;}
.y24{bottom:348.375000px;}
.y154{bottom:350.175000px;}
.y119{bottom:352.695000px;}
.y9e{bottom:353.235000px;}
.y81{bottom:354.135000px;}
.y136{bottom:354.675000px;}
.yb5{bottom:355.035000px;}
.y53{bottom:358.455000px;}
.yf9{bottom:364.755000px;}
.ye0{bottom:367.095000px;}
.y23{bottom:370.155000px;}
.y118{bottom:374.475000px;}
.y9d{bottom:375.015000px;}
.y80{bottom:375.915000px;}
.y135{bottom:376.455000px;}
.yb4{bottom:376.815000px;}
.y52{bottom:380.235000px;}
.y153{bottom:383.835000px;}
.ydf{bottom:388.875000px;}
.y22{bottom:392.655000px;}
.y9c{bottom:396.795000px;}
.yab{bottom:397.515000px;}
.y134{bottom:398.235000px;}
.y7f{bottom:398.415000px;}
.yf8{bottom:398.595000px;}
.y51{bottom:402.015000px;}
.y117{bottom:408.315000px;}
.yde{bottom:410.475000px;}
.y21{bottom:415.335000px;}
.y152{bottom:417.675000px;}
.y9b{bottom:418.395000px;}
.yaa{bottom:419.295000px;}
.y7e{bottom:420.195000px;}
.y50{bottom:423.795000px;}
.y116{bottom:429.915000px;}
.y133{bottom:431.895000px;}
.ydd{bottom:432.255000px;}
.y20{bottom:437.835000px;}
.y9a{bottom:441.075000px;}
.y7d{bottom:441.975000px;}
.y4f{bottom:445.395000px;}
.y151{bottom:451.335000px;}
.y115{bottom:451.695000px;}
.y132{bottom:453.675000px;}
.ydc{bottom:454.935000px;}
.y1f{bottom:460.515000px;}
.y99{bottom:462.855000px;}
.y7c{bottom:463.755000px;}
.y4e{bottom:467.175000px;}
.yf7{bottom:475.635000px;}
.ydb{bottom:476.715000px;}
.y1e{bottom:482.295000px;}
.y98{bottom:484.635000px;}
.y150{bottom:485.175000px;}
.yb3{bottom:485.355000px;}
.y114{bottom:485.535000px;}
.y7b{bottom:486.255000px;}
.y131{bottom:487.335000px;}
.y4d{bottom:488.955000px;}
.yda{bottom:498.315000px;}
.y1d{bottom:504.075000px;}
.y97{bottom:506.235000px;}
.yb2{bottom:507.135000px;}
.y7a{bottom:508.035000px;}
.yf6{bottom:509.475000px;}
.y4c{bottom:510.735000px;}
.y14f{bottom:518.835000px;}
.yd9{bottom:520.995000px;}
.y130{bottom:521.175000px;}
.y1c{bottom:525.675000px;}
.y96{bottom:528.015000px;}
.yb1{bottom:528.915000px;}
.y79{bottom:529.815000px;}
.yf5{bottom:531.975000px;}
.y4b{bottom:532.335000px;}
.y113{bottom:540.975000px;}
.yd8{bottom:542.775000px;}
.y1b{bottom:547.455000px;}
.y95{bottom:549.795000px;}
.yb0{bottom:550.695000px;}
.y78{bottom:551.595000px;}
.y14e{bottom:552.495000px;}
.y4a{bottom:554.115000px;}
.y112{bottom:563.505000px;}
.y12f{bottom:564.585000px;}
.yd7{bottom:565.305000px;}
.y1a{bottom:569.265000px;}
.y94{bottom:571.425000px;}
.ya9{bottom:572.325000px;}
.yf4{bottom:572.685000px;}
.y77{bottom:573.225000px;}
.y49{bottom:575.925000px;}
.y14d{bottom:586.365000px;}
.yd6{bottom:587.085000px;}
.y19{bottom:591.045000px;}
.y93{bottom:594.105000px;}
.y76{bottom:595.005000px;}
.y48{bottom:597.705000px;}
.y12e{bottom:598.245000px;}
.y111{bottom:603.465000px;}
.yd5{bottom:609.765000px;}
.yf3{bottom:612.645000px;}
.y18{bottom:612.825000px;}
.y92{bottom:615.885000px;}
.y75{bottom:616.785000px;}
.y47{bottom:619.305000px;}
.y12d{bottom:620.025000px;}
.yd4{bottom:631.365000px;}
.y17{bottom:634.425000px;}
.y110{bottom:637.125000px;}
.y91{bottom:637.665000px;}
.y74{bottom:638.565000px;}
.y46{bottom:641.085000px;}
.yf2{bottom:646.305000px;}
.y12c{bottom:653.865000px;}
.yd3{bottom:654.045000px;}
.y16{bottom:656.205000px;}
.y10f{bottom:658.905000px;}
.y90{bottom:659.265000px;}
.y73{bottom:660.165000px;}
.y45{bottom:662.865000px;}
.yf1{bottom:668.085000px;}
.y12b{bottom:675.465000px;}
.yd2{bottom:675.825000px;}
.y15{bottom:677.985000px;}
.yaf{bottom:681.045000px;}
.y72{bottom:681.945000px;}
.y44{bottom:684.645000px;}
.y14c{bottom:687.525000px;}
.y10e{bottom:692.565000px;}
.y12a{bottom:697.245000px;}
.yd1{bottom:697.605000px;}
.y14{bottom:699.765000px;}
.yf0{bottom:701.745000px;}
.y71{bottom:703.725000px;}
.y43{bottom:706.245000px;}
.y10d{bottom:714.345000px;}
.yd0{bottom:720.105000px;}
.y14b{bottom:721.185000px;}
.y13{bottom:721.365000px;}
.yef{bottom:723.525000px;}
.y8f{bottom:725.505000px;}
.y70{bottom:726.225000px;}
.y42{bottom:728.025000px;}
.y129{bottom:731.085000px;}
.y10c{bottom:736.125000px;}
.ycf{bottom:741.885000px;}
.y12{bottom:743.145000px;}
.yee{bottom:745.305000px;}
.y8e{bottom:747.105000px;}
.y6f{bottom:748.005000px;}
.y41{bottom:749.805000px;}
.y128{bottom:752.685000px;}
.y14a{bottom:755.025000px;}
.y10b{bottom:757.725000px;}
.yce{bottom:763.665000px;}
.y11{bottom:764.925000px;}
.y8d{bottom:768.885000px;}
.y6e{bottom:769.785000px;}
.y40{bottom:771.585000px;}
.yed{bottom:778.965000px;}
.ycd{bottom:786.165000px;}
.y127{bottom:786.525000px;}
.y10{bottom:786.705000px;}
.y149{bottom:788.685000px;}
.yae{bottom:790.665000px;}
.y6d{bottom:791.565000px;}
.y3f{bottom:793.185000px;}
.yec{bottom:800.745000px;}
.ycc{bottom:807.945000px;}
.yf{bottom:808.305000px;}
.yad{bottom:812.265000px;}
.y6c{bottom:813.165000px;}
.y10a{bottom:814.065000px;}
.y3e{bottom:814.965000px;}
.y148{bottom:822.525000px;}
.ye{bottom:830.085000px;}
.ycb{bottom:830.625000px;}
.yeb{bottom:834.405000px;}
.y6b{bottom:834.945000px;}
.y3d{bottom:836.745000px;}
.y126{bottom:842.010000px;}
.yd{bottom:851.910000px;}
.yca{bottom:852.270000px;}
.y109{bottom:854.070000px;}
.y147{bottom:856.230000px;}
.y6a{bottom:856.770000px;}
.y3c{bottom:858.570000px;}
.y125{bottom:863.790000px;}
.yea{bottom:868.290000px;}
.yc{bottom:873.690000px;}
.yc9{bottom:874.950000px;}
.y146{bottom:878.010000px;}
.y69{bottom:878.550000px;}
.y3b{bottom:880.350000px;}
.y124{bottom:885.390000px;}
.y108{bottom:887.730000px;}
.ye9{bottom:890.070000px;}
.yb{bottom:895.290000px;}
.yc8{bottom:896.730000px;}
.y145{bottom:899.790000px;}
.ya8{bottom:900.150000px;}
.y68{bottom:900.330000px;}
.y3a{bottom:901.950000px;}
.y107{bottom:909.510000px;}
.ye8{bottom:911.670000px;}
.ya{bottom:917.070000px;}
.y123{bottom:919.230000px;}
.yc7{bottom:919.410000px;}
.y144{bottom:921.390000px;}
.y67{bottom:921.930000px;}
.ya7{bottom:922.830000px;}
.y39{bottom:923.730000px;}
.y106{bottom:931.290000px;}
.ye7{bottom:933.450000px;}
.y9{bottom:938.850000px;}
.yc6{bottom:941.010000px;}
.y143{bottom:943.170000px;}
.y66{bottom:943.710000px;}
.y8c{bottom:944.610000px;}
.y38{bottom:945.510000px;}
.y105{bottom:952.890000px;}
.ye6{bottom:955.230000px;}
.yc5{bottom:962.790000px;}
.y142{bottom:964.950000px;}
.y65{bottom:966.390000px;}
.y37{bottom:967.290000px;}
.y8{bottom:972.510000px;}
.ye5{bottom:977.010000px;}
.yc4{bottom:985.470000px;}
.y104{bottom:986.730000px;}
.y64{bottom:987.990000px;}
.y36{bottom:988.890000px;}
.ye4{bottom:998.610000px;}
.y7{bottom:1006.350000px;}
.yc3{bottom:1007.070000px;}
.y141{bottom:1008.330000px;}
.y63{bottom:1009.770000px;}
.y35{bottom:1010.670000px;}
.ye3{bottom:1020.390000px;}
.yc2{bottom:1029.750000px;}
.y140{bottom:1030.110000px;}
.y62{bottom:1031.550000px;}
.y34{bottom:1032.450000px;}
.y6{bottom:1040.010000px;}
.y122{bottom:1042.170000px;}
.yc1{bottom:1051.530000px;}
.y61{bottom:1053.330000px;}
.y33{bottom:1054.230000px;}
.y121{bottom:1063.950000px;}
.y5{bottom:1073.850000px;}
.yc0{bottom:1074.210000px;}
.y60{bottom:1074.930000px;}
.y32{bottom:1075.830000px;}
.y13f{bottom:1085.550000px;}
.ybf{bottom:1095.810000px;}
.y5f{bottom:1096.710000px;}
.y31{bottom:1097.610000px;}
.y4{bottom:1108.950000px;}
.ybe{bottom:1118.490000px;}
.y30{bottom:1119.390000px;}
.y3{bottom:1136.700000px;}
.ybd{bottom:1140.300000px;}
.y2f{bottom:1141.200000px;}
.h4{height:45.184219px;}
.h6{height:53.763750px;}
.h2{height:54.628594px;}
.h5{height:68.084282px;}
.h3{height:69.473320px;}
.h7{height:79.925027px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.x3{left:135.216000px;}
.x8{left:154.650000px;}
.x4{left:160.770000px;}
.x9{left:181.650000px;}
.xa{left:208.650000px;}
.x5{left:249.870000px;}
.xb{left:262.650000px;}
.xc{left:289.650000px;}
.x6{left:369.615000px;}
.x7{left:380.595000px;}
.xd{left:748.770000px;}
.x1{left:757.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls6{letter-spacing:-0.102400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.066667pt;}
.lsd{letter-spacing:0.084267pt;}
.ls2{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls0{letter-spacing:34.831360pt;}
.ls8{letter-spacing:35.163307pt;}
.lsb{letter-spacing:43.791360pt;}
.ls9{letter-spacing:44.431360pt;}
.lsc{letter-spacing:52.111360pt;}
.ls1{letter-spacing:52.751360pt;}
.lse{letter-spacing:61.711360pt;}
.ws2{word-spacing:-58.880000pt;}
.ws7{word-spacing:-15.705387pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.373547pt;}
.ws8{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.204480pt;}
.ws5{word-spacing:-13.189013pt;}
.ws6{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-4.298240pt;}
._9{margin-left:-3.120640pt;}
._b{margin-left:-1.869227pt;}
._0{margin-left:-0.902613pt;}
._3{width:0.942080pt;}
._5{width:2.253227pt;}
._6{width:3.638400pt;}
._8{width:4.565333pt;}
._1{width:5.946880pt;}
._f{width:7.168427pt;}
._c{width:8.568107pt;}
._2{width:9.715200pt;}
._4{width:10.892800pt;}
._10{width:12.035413pt;}
._7{width:14.307840pt;}
._d{width:15.662080pt;}
._e{width:16.731733pt;}
._11{width:17.781760pt;}
._12{width:18.731520pt;}
._15{width:19.842560pt;}
._16{width:21.020160pt;}
._1e{width:22.511573pt;}
._1c{width:27.496960pt;}
._1d{width:28.439040pt;}
._18{width:31.088640pt;}
._17{width:32.164267pt;}
._19{width:35.563520pt;}
._1a{width:40.324053pt;}
._1b{width:41.259947pt;}
._14{width:43.134293pt;}
._13{width:44.327893pt;}
._1f{width:130.326400pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y1{bottom:69.152000pt;}
.ybc{bottom:99.872000pt;}
.ya6{bottom:100.672000pt;}
.y5e{bottom:106.112000pt;}
.y13e{bottom:107.392000pt;}
.y2e{bottom:116.352000pt;}
.ybb{bottom:119.232000pt;}
.ya5{bottom:120.032000pt;}
.y103{bottom:120.352000pt;}
.y8b{bottom:120.832000pt;}
.y5d{bottom:125.472000pt;}
.y15a{bottom:131.232000pt;}
.y120{bottom:135.546667pt;}
.y2d{bottom:135.706667pt;}
.y13d{bottom:137.306667pt;}
.ya4{bottom:139.226667pt;}
.y102{bottom:139.706667pt;}
.y8a{bottom:140.026667pt;}
.y5c{bottom:144.826667pt;}
.y2c{bottom:155.066667pt;}
.ya3{bottom:158.586667pt;}
.y101{bottom:158.906667pt;}
.y89{bottom:159.386667pt;}
.y159{bottom:161.306667pt;}
.y5b{bottom:164.026667pt;}
.y11f{bottom:165.626667pt;}
.y13c{bottom:167.226667pt;}
.y2b{bottom:174.426667pt;}
.yac{bottom:177.946667pt;}
.y100{bottom:178.266667pt;}
.y88{bottom:178.746667pt;}
.y5a{bottom:183.386667pt;}
.y13b{bottom:186.586667pt;}
.y158{bottom:191.226667pt;}
.y2a{bottom:193.626667pt;}
.y11e{bottom:195.546667pt;}
.yff{bottom:197.626667pt;}
.yba{bottom:197.946667pt;}
.y87{bottom:198.106667pt;}
.y59{bottom:202.746667pt;}
.y29{bottom:212.986667pt;}
.y11d{bottom:214.906667pt;}
.y13a{bottom:216.666667pt;}
.yfe{bottom:216.986667pt;}
.y86{bottom:217.306667pt;}
.yb9{bottom:218.106667pt;}
.y157{bottom:221.306667pt;}
.y58{bottom:222.106667pt;}
.y28{bottom:232.346667pt;}
.y11c{bottom:234.266667pt;}
.yfd{bottom:236.186667pt;}
.ya2{bottom:236.666667pt;}
.y85{bottom:237.466667pt;}
.y57{bottom:241.306667pt;}
.y139{bottom:246.626667pt;}
.y156{bottom:251.266667pt;}
.y27{bottom:251.746667pt;}
.y11b{bottom:253.666667pt;}
.yfc{bottom:255.586667pt;}
.ya1{bottom:256.066667pt;}
.y84{bottom:256.866667pt;}
.yb8{bottom:257.666667pt;}
.y56{bottom:260.706667pt;}
.y138{bottom:265.986667pt;}
.y26{bottom:270.946667pt;}
.yfb{bottom:274.946667pt;}
.ya0{bottom:275.426667pt;}
.y83{bottom:276.066667pt;}
.yb7{bottom:276.866667pt;}
.y55{bottom:280.066667pt;}
.y155{bottom:281.186667pt;}
.y11a{bottom:283.586667pt;}
.y137{bottom:285.346667pt;}
.ye2{bottom:287.586667pt;}
.y25{bottom:290.306667pt;}
.y9f{bottom:294.626667pt;}
.y82{bottom:295.426667pt;}
.yb6{bottom:296.226667pt;}
.y54{bottom:299.426667pt;}
.yfa{bottom:304.866667pt;}
.ye1{bottom:306.946667pt;}
.y24{bottom:309.666667pt;}
.y154{bottom:311.266667pt;}
.y119{bottom:313.506667pt;}
.y9e{bottom:313.986667pt;}
.y81{bottom:314.786667pt;}
.y136{bottom:315.266667pt;}
.yb5{bottom:315.586667pt;}
.y53{bottom:318.626667pt;}
.yf9{bottom:324.226667pt;}
.ye0{bottom:326.306667pt;}
.y23{bottom:329.026667pt;}
.y118{bottom:332.866667pt;}
.y9d{bottom:333.346667pt;}
.y80{bottom:334.146667pt;}
.y135{bottom:334.626667pt;}
.yb4{bottom:334.946667pt;}
.y52{bottom:337.986667pt;}
.y153{bottom:341.186667pt;}
.ydf{bottom:345.666667pt;}
.y22{bottom:349.026667pt;}
.y9c{bottom:352.706667pt;}
.yab{bottom:353.346667pt;}
.y134{bottom:353.986667pt;}
.y7f{bottom:354.146667pt;}
.yf8{bottom:354.306667pt;}
.y51{bottom:357.346667pt;}
.y117{bottom:362.946667pt;}
.yde{bottom:364.866667pt;}
.y21{bottom:369.186667pt;}
.y152{bottom:371.266667pt;}
.y9b{bottom:371.906667pt;}
.yaa{bottom:372.706667pt;}
.y7e{bottom:373.506667pt;}
.y50{bottom:376.706667pt;}
.y116{bottom:382.146667pt;}
.y133{bottom:383.906667pt;}
.ydd{bottom:384.226667pt;}
.y20{bottom:389.186667pt;}
.y9a{bottom:392.066667pt;}
.y7d{bottom:392.866667pt;}
.y4f{bottom:395.906667pt;}
.y151{bottom:401.186667pt;}
.y115{bottom:401.506667pt;}
.y132{bottom:403.266667pt;}
.ydc{bottom:404.386667pt;}
.y1f{bottom:409.346667pt;}
.y99{bottom:411.426667pt;}
.y7c{bottom:412.226667pt;}
.y4e{bottom:415.266667pt;}
.yf7{bottom:422.786667pt;}
.ydb{bottom:423.746667pt;}
.y1e{bottom:428.706667pt;}
.y98{bottom:430.786667pt;}
.y150{bottom:431.266667pt;}
.yb3{bottom:431.426667pt;}
.y114{bottom:431.586667pt;}
.y7b{bottom:432.226667pt;}
.y131{bottom:433.186667pt;}
.y4d{bottom:434.626667pt;}
.yda{bottom:442.946667pt;}
.y1d{bottom:448.066667pt;}
.y97{bottom:449.986667pt;}
.yb2{bottom:450.786667pt;}
.y7a{bottom:451.586667pt;}
.yf6{bottom:452.866667pt;}
.y4c{bottom:453.986667pt;}
.y14f{bottom:461.186667pt;}
.yd9{bottom:463.106667pt;}
.y130{bottom:463.266667pt;}
.y1c{bottom:467.266667pt;}
.y96{bottom:469.346667pt;}
.yb1{bottom:470.146667pt;}
.y79{bottom:470.946667pt;}
.yf5{bottom:472.866667pt;}
.y4b{bottom:473.186667pt;}
.y113{bottom:480.866667pt;}
.yd8{bottom:482.466667pt;}
.y1b{bottom:486.626667pt;}
.y95{bottom:488.706667pt;}
.yb0{bottom:489.506667pt;}
.y78{bottom:490.306667pt;}
.y14e{bottom:491.106667pt;}
.y4a{bottom:492.546667pt;}
.y112{bottom:500.893333pt;}
.y12f{bottom:501.853333pt;}
.yd7{bottom:502.493333pt;}
.y1a{bottom:506.013333pt;}
.y94{bottom:507.933333pt;}
.ya9{bottom:508.733333pt;}
.yf4{bottom:509.053333pt;}
.y77{bottom:509.533333pt;}
.y49{bottom:511.933333pt;}
.y14d{bottom:521.213333pt;}
.yd6{bottom:521.853333pt;}
.y19{bottom:525.373333pt;}
.y93{bottom:528.093333pt;}
.y76{bottom:528.893333pt;}
.y48{bottom:531.293333pt;}
.y12e{bottom:531.773333pt;}
.y111{bottom:536.413333pt;}
.yd5{bottom:542.013333pt;}
.yf3{bottom:544.573333pt;}
.y18{bottom:544.733333pt;}
.y92{bottom:547.453333pt;}
.y75{bottom:548.253333pt;}
.y47{bottom:550.493333pt;}
.y12d{bottom:551.133333pt;}
.yd4{bottom:561.213333pt;}
.y17{bottom:563.933333pt;}
.y110{bottom:566.333333pt;}
.y91{bottom:566.813333pt;}
.y74{bottom:567.613333pt;}
.y46{bottom:569.853333pt;}
.yf2{bottom:574.493333pt;}
.y12c{bottom:581.213333pt;}
.yd3{bottom:581.373333pt;}
.y16{bottom:583.293333pt;}
.y10f{bottom:585.693333pt;}
.y90{bottom:586.013333pt;}
.y73{bottom:586.813333pt;}
.y45{bottom:589.213333pt;}
.yf1{bottom:593.853333pt;}
.y12b{bottom:600.413333pt;}
.yd2{bottom:600.733333pt;}
.y15{bottom:602.653333pt;}
.yaf{bottom:605.373333pt;}
.y72{bottom:606.173333pt;}
.y44{bottom:608.573333pt;}
.y14c{bottom:611.133333pt;}
.y10e{bottom:615.613333pt;}
.y12a{bottom:619.773333pt;}
.yd1{bottom:620.093333pt;}
.y14{bottom:622.013333pt;}
.yf0{bottom:623.773333pt;}
.y71{bottom:625.533333pt;}
.y43{bottom:627.773333pt;}
.y10d{bottom:634.973333pt;}
.yd0{bottom:640.093333pt;}
.y14b{bottom:641.053333pt;}
.y13{bottom:641.213333pt;}
.yef{bottom:643.133333pt;}
.y8f{bottom:644.893333pt;}
.y70{bottom:645.533333pt;}
.y42{bottom:647.133333pt;}
.y129{bottom:649.853333pt;}
.y10c{bottom:654.333333pt;}
.ycf{bottom:659.453333pt;}
.y12{bottom:660.573333pt;}
.yee{bottom:662.493333pt;}
.y8e{bottom:664.093333pt;}
.y6f{bottom:664.893333pt;}
.y41{bottom:666.493333pt;}
.y128{bottom:669.053333pt;}
.y14a{bottom:671.133333pt;}
.y10b{bottom:673.533333pt;}
.yce{bottom:678.813333pt;}
.y11{bottom:679.933333pt;}
.y8d{bottom:683.453333pt;}
.y6e{bottom:684.253333pt;}
.y40{bottom:685.853333pt;}
.yed{bottom:692.413333pt;}
.ycd{bottom:698.813333pt;}
.y127{bottom:699.133333pt;}
.y10{bottom:699.293333pt;}
.y149{bottom:701.053333pt;}
.yae{bottom:702.813333pt;}
.y6d{bottom:703.613333pt;}
.y3f{bottom:705.053333pt;}
.yec{bottom:711.773333pt;}
.ycc{bottom:718.173333pt;}
.yf{bottom:718.493333pt;}
.yad{bottom:722.013333pt;}
.y6c{bottom:722.813333pt;}
.y10a{bottom:723.613333pt;}
.y3e{bottom:724.413333pt;}
.y148{bottom:731.133333pt;}
.ye{bottom:737.853333pt;}
.ycb{bottom:738.333333pt;}
.yeb{bottom:741.693333pt;}
.y6b{bottom:742.173333pt;}
.y3d{bottom:743.773333pt;}
.y126{bottom:748.453333pt;}
.yd{bottom:757.253333pt;}
.yca{bottom:757.573333pt;}
.y109{bottom:759.173333pt;}
.y147{bottom:761.093333pt;}
.y6a{bottom:761.573333pt;}
.y3c{bottom:763.173333pt;}
.y125{bottom:767.813333pt;}
.yea{bottom:771.813333pt;}
.yc{bottom:776.613333pt;}
.yc9{bottom:777.733333pt;}
.y146{bottom:780.453333pt;}
.y69{bottom:780.933333pt;}
.y3b{bottom:782.533333pt;}
.y124{bottom:787.013333pt;}
.y108{bottom:789.093333pt;}
.ye9{bottom:791.173333pt;}
.yb{bottom:795.813333pt;}
.yc8{bottom:797.093333pt;}
.y145{bottom:799.813333pt;}
.ya8{bottom:800.133333pt;}
.y68{bottom:800.293333pt;}
.y3a{bottom:801.733333pt;}
.y107{bottom:808.453333pt;}
.ye8{bottom:810.373333pt;}
.ya{bottom:815.173333pt;}
.y123{bottom:817.093333pt;}
.yc7{bottom:817.253333pt;}
.y144{bottom:819.013333pt;}
.y67{bottom:819.493333pt;}
.ya7{bottom:820.293333pt;}
.y39{bottom:821.093333pt;}
.y106{bottom:827.813333pt;}
.ye7{bottom:829.733333pt;}
.y9{bottom:834.533333pt;}
.yc6{bottom:836.453333pt;}
.y143{bottom:838.373333pt;}
.y66{bottom:838.853333pt;}
.y8c{bottom:839.653333pt;}
.y38{bottom:840.453333pt;}
.y105{bottom:847.013333pt;}
.ye6{bottom:849.093333pt;}
.yc5{bottom:855.813333pt;}
.y142{bottom:857.733333pt;}
.y65{bottom:859.013333pt;}
.y37{bottom:859.813333pt;}
.y8{bottom:864.453333pt;}
.ye5{bottom:868.453333pt;}
.yc4{bottom:875.973333pt;}
.y104{bottom:877.093333pt;}
.y64{bottom:878.213333pt;}
.y36{bottom:879.013333pt;}
.ye4{bottom:887.653333pt;}
.y7{bottom:894.533333pt;}
.yc3{bottom:895.173333pt;}
.y141{bottom:896.293333pt;}
.y63{bottom:897.573333pt;}
.y35{bottom:898.373333pt;}
.ye3{bottom:907.013333pt;}
.yc2{bottom:915.333333pt;}
.y140{bottom:915.653333pt;}
.y62{bottom:916.933333pt;}
.y34{bottom:917.733333pt;}
.y6{bottom:924.453333pt;}
.y122{bottom:926.373333pt;}
.yc1{bottom:934.693333pt;}
.y61{bottom:936.293333pt;}
.y33{bottom:937.093333pt;}
.y121{bottom:945.733333pt;}
.y5{bottom:954.533333pt;}
.yc0{bottom:954.853333pt;}
.y60{bottom:955.493333pt;}
.y32{bottom:956.293333pt;}
.y13f{bottom:964.933333pt;}
.ybf{bottom:974.053333pt;}
.y5f{bottom:974.853333pt;}
.y31{bottom:975.653333pt;}
.y4{bottom:985.733333pt;}
.ybe{bottom:994.213333pt;}
.y30{bottom:995.013333pt;}
.y3{bottom:1010.400000pt;}
.ybd{bottom:1013.600000pt;}
.y2f{bottom:1014.400000pt;}
.h4{height:40.163750pt;}
.h6{height:47.790000pt;}
.h2{height:48.558750pt;}
.h5{height:60.519362pt;}
.h3{height:61.754062pt;}
.h7{height:71.044468pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.x3{left:120.192000pt;}
.x8{left:137.466667pt;}
.x4{left:142.906667pt;}
.x9{left:161.466667pt;}
.xa{left:185.466667pt;}
.x5{left:222.106667pt;}
.xb{left:233.466667pt;}
.xc{left:257.466667pt;}
.x6{left:328.546667pt;}
.x7{left:338.306667pt;}
.xd{left:665.573333pt;}
.x1{left:673.093333pt;}
}




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