
    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_15ae1f1b762c3fb6fb1988cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_aa0ae3c9e00852ce222998da.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_55c60d65c8441cec84bae5d0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9c25c8a0c27ba334e6e73a68.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.072754;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e7cd52decc95e1112ae0e7bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_c7ec3efe63bb07f09671d706.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.208200px;}
.ls1b{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.109200px;}
.ls17{letter-spacing:-0.053280px;}
.lse{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018720px;}
.ls12{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.208200px;}
.ls19{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.262200px;}
.ls22{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.386640px;}
.lsb{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.978000px;}
.ls8{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.134720px;}
.ls2{letter-spacing:1.330560px;}
.ls6{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls5{letter-spacing:1.620000px;}
.ls3{letter-spacing:1.745280px;}
.ls4{letter-spacing:1.822080px;}
.ls1{letter-spacing:2.160000px;}
.ls21{letter-spacing:11.466720px;}
.ls20{letter-spacing:41.850720px;}
.lsc{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-24.148200px;}
.ws1{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.297800px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2617.788000px;}
._6{margin-left:-1594.356480px;}
._4{margin-left:-1366.159680px;}
._5{margin-left:-997.269120px;}
._7{margin-left:-575.933760px;}
._8{margin-left:-9.604800px;}
._16{margin-left:-8.258400px;}
._9{margin-left:-5.082720px;}
._a{margin-left:-3.643200px;}
._10{margin-left:-2.406240px;}
._3{margin-left:-1.059840px;}
._0{width:1.296000px;}
._1{width:3.090000px;}
._f{width:4.419600px;}
._b{width:5.649840px;}
._c{width:7.091040px;}
._14{width:8.225760px;}
._15{width:10.118160px;}
._11{width:11.492640px;}
._12{width:12.594240px;}
._13{width:13.708080px;}
._1c{width:15.955920px;}
._19{width:16.971840px;}
._2b{width:19.435920px;}
._1a{width:20.790720px;}
._1b{width:21.812400px;}
._18{width:23.253840px;}
._17{width:24.819120px;}
._1f{width:26.611920px;}
._2a{width:29.682000px;}
._29{width:30.974400px;}
._1d{width:33.107040px;}
._24{width:34.959600px;}
._2c{width:38.664720px;}
._25{width:40.218480px;}
._2d{width:41.491200px;}
._20{width:43.027200px;}
._26{width:46.612800px;}
._2e{width:52.510320px;}
._d{width:54.279360px;}
._e{width:55.805520px;}
._21{width:65.556720px;}
._1e{width:72.130320px;}
._22{width:75.596400px;}
._28{width:90.715680px;}
._23{width:167.705280px;}
._27{width:185.490720px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.240000px;}
.ydc{bottom:3.270000px;}
.yde{bottom:11.880000px;}
.ycb{bottom:20.340000px;}
.yd4{bottom:20.520000px;}
.ydb{bottom:20.550000px;}
.ye6{bottom:20.565000px;}
.yd1{bottom:29.160000px;}
.ye2{bottom:29.205000px;}
.yca{bottom:37.620000px;}
.ycf{bottom:37.800000px;}
.yd8{bottom:37.830000px;}
.ye5{bottom:37.845000px;}
.ycd{bottom:46.260000px;}
.yd0{bottom:46.440000px;}
.ye3{bottom:46.485000px;}
.yc6{bottom:54.900000px;}
.yd6{bottom:54.930000px;}
.yd3{bottom:55.080000px;}
.ye4{bottom:55.125000px;}
.y6{bottom:60.336000px;}
.yc4{bottom:63.540000px;}
.yd2{bottom:72.180000px;}
.yd7{bottom:72.210000px;}
.yc5{bottom:72.225000px;}
.ycc{bottom:80.865000px;}
.yc0{bottom:89.316000px;}
.yda{bottom:89.490000px;}
.y34{bottom:89.496000px;}
.yc9{bottom:89.505000px;}
.yeb{bottom:97.236000px;}
.y99{bottom:102.816000px;}
.yc8{bottom:106.605000px;}
.yd9{bottom:106.770000px;}
.ybf{bottom:109.116000px;}
.y33{bottom:109.296000px;}
.yea{bottom:119.196000px;}
.y6a{bottom:121.356000px;}
.y98{bottom:122.616000px;}
.yc7{bottom:123.885000px;}
.y32{bottom:129.096000px;}
.ye9{bottom:139.176000px;}
.y69{bottom:141.336000px;}
.y11c{bottom:142.056000px;}
.y97{bottom:142.416000px;}
.y31{bottom:148.896000px;}
.ye8{bottom:158.970000px;}
.y68{bottom:161.130000px;}
.y11b{bottom:162.030000px;}
.y96{bottom:162.210000px;}
.ybe{bottom:168.690000px;}
.y30{bottom:168.870000px;}
.ye7{bottom:177.870000px;}
.y67{bottom:180.930000px;}
.y11a{bottom:181.830000px;}
.y95{bottom:182.190000px;}
.ybd{bottom:189.570000px;}
.y2f{bottom:189.750000px;}
.y66{bottom:200.730000px;}
.y119{bottom:201.630000px;}
.y2e{bottom:209.550000px;}
.ybc{bottom:210.450000px;}
.y94{bottom:210.990000px;}
.y65{bottom:220.530000px;}
.y118{bottom:221.430000px;}
.y2d{bottom:230.430000px;}
.y93{bottom:230.790000px;}
.ybb{bottom:231.510000px;}
.y64{bottom:240.510000px;}
.y117{bottom:241.230000px;}
.y2c{bottom:250.230000px;}
.y92{bottom:250.590000px;}
.yba{bottom:251.310000px;}
.ye1{bottom:252.750000px;}
.y63{bottom:260.310000px;}
.y116{bottom:261.210000px;}
.y91{bottom:270.390000px;}
.yb9{bottom:271.110000px;}
.y2b{bottom:271.290000px;}
.y62{bottom:280.155000px;}
.y115{bottom:281.055000px;}
.yb8{bottom:290.955000px;}
.y2a{bottom:292.215000px;}
.y90{bottom:299.415000px;}
.y61{bottom:299.955000px;}
.y114{bottom:300.855000px;}
.yb7{bottom:310.755000px;}
.y29{bottom:312.015000px;}
.y8f{bottom:319.215000px;}
.y60{bottom:319.755000px;}
.y113{bottom:320.655000px;}
.ye0{bottom:327.855000px;}
.yb6{bottom:330.735000px;}
.y28{bottom:331.815000px;}
.y8e{bottom:339.015000px;}
.y5f{bottom:339.735000px;}
.y112{bottom:340.455000px;}
.yb5{bottom:350.535000px;}
.y27{bottom:351.615000px;}
.y8d{bottom:358.815000px;}
.y5e{bottom:359.535000px;}
.y111{bottom:360.435000px;}
.yb4{bottom:370.335000px;}
.y26{bottom:371.595000px;}
.y5d{bottom:379.335000px;}
.y110{bottom:380.235000px;}
.ydf{bottom:385.635000px;}
.y8c{bottom:387.615000px;}
.yb3{bottom:390.135000px;}
.y25{bottom:391.395000px;}
.y5c{bottom:399.135000px;}
.y10f{bottom:400.035000px;}
.y8b{bottom:407.595000px;}
.yb2{bottom:409.935000px;}
.y24{bottom:411.195000px;}
.y5b{bottom:418.935000px;}
.y10e{bottom:419.835000px;}
.y8a{bottom:427.395000px;}
.yb1{bottom:429.915000px;}
.y23{bottom:430.995000px;}
.y5a{bottom:438.915000px;}
.y10d{bottom:439.635000px;}
.y89{bottom:447.195000px;}
.yb0{bottom:449.715000px;}
.y22{bottom:450.795000px;}
.y59{bottom:458.715000px;}
.y10c{bottom:459.615000px;}
.y88{bottom:466.995000px;}
.yaf{bottom:469.515000px;}
.y21{bottom:470.775000px;}
.ydd{bottom:477.795000px;}
.y58{bottom:478.515000px;}
.y10b{bottom:479.415000px;}
.yae{bottom:489.315000px;}
.y20{bottom:490.575000px;}
.y87{bottom:495.795000px;}
.y57{bottom:498.315000px;}
.y10a{bottom:499.215000px;}
.yad{bottom:509.115000px;}
.y1f{bottom:512.535000px;}
.y86{bottom:515.775000px;}
.y56{bottom:518.115000px;}
.y109{bottom:519.015000px;}
.yac{bottom:529.095000px;}
.y85{bottom:535.575000px;}
.y55{bottom:538.095000px;}
.y108{bottom:538.815000px;}
.y1e{bottom:541.515000px;}
.yab{bottom:548.895000px;}
.yd5{bottom:552.855000px;}
.y84{bottom:555.375000px;}
.y54{bottom:557.925000px;}
.y107{bottom:558.825000px;}
.y1d{bottom:561.345000px;}
.yaa{bottom:568.725000px;}
.y83{bottom:575.205000px;}
.y106{bottom:578.625000px;}
.y1c{bottom:581.145000px;}
.y53{bottom:586.725000px;}
.ya9{bottom:588.525000px;}
.y82{bottom:595.005000px;}
.y105{bottom:598.425000px;}
.y1b{bottom:600.945000px;}
.y52{bottom:606.525000px;}
.ya8{bottom:608.325000px;}
.y81{bottom:614.985000px;}
.y104{bottom:618.225000px;}
.y1a{bottom:620.745000px;}
.y51{bottom:626.325000px;}
.ya7{bottom:628.305000px;}
.y80{bottom:635.865000px;}
.y103{bottom:638.025000px;}
.y19{bottom:640.725000px;}
.y50{bottom:646.305000px;}
.ya6{bottom:648.105000px;}
.y7f{bottom:656.745000px;}
.y102{bottom:658.005000px;}
.y18{bottom:660.525000px;}
.y4f{bottom:666.105000px;}
.ya5{bottom:667.905000px;}
.y7e{bottom:677.625000px;}
.y101{bottom:677.805000px;}
.yce{bottom:679.605000px;}
.y17{bottom:680.325000px;}
.y4e{bottom:685.905000px;}
.ya4{bottom:687.705000px;}
.y100{bottom:697.605000px;}
.y7d{bottom:698.505000px;}
.y16{bottom:700.125000px;}
.y4d{bottom:705.705000px;}
.ya3{bottom:707.505000px;}
.yff{bottom:717.405000px;}
.y7c{bottom:718.485000px;}
.y15{bottom:719.925000px;}
.y4c{bottom:725.505000px;}
.ya2{bottom:727.485000px;}
.yfe{bottom:737.205000px;}
.y7b{bottom:738.285000px;}
.y14{bottom:739.905000px;}
.y4b{bottom:745.485000px;}
.ya1{bottom:747.285000px;}
.yfd{bottom:757.185000px;}
.y7a{bottom:758.085000px;}
.y13{bottom:759.705000px;}
.y4a{bottom:765.285000px;}
.ya0{bottom:767.085000px;}
.yc3{bottom:771.945000px;}
.yfc{bottom:776.985000px;}
.y79{bottom:777.885000px;}
.y12{bottom:779.505000px;}
.y49{bottom:785.085000px;}
.y9f{bottom:786.885000px;}
.yfb{bottom:796.785000px;}
.y11{bottom:799.305000px;}
.y48{bottom:804.885000px;}
.y78{bottom:806.685000px;}
.y9e{bottom:815.685000px;}
.yfa{bottom:816.585000px;}
.y10{bottom:821.445000px;}
.y47{bottom:824.685000px;}
.y77{bottom:826.665000px;}
.y9d{bottom:835.665000px;}
.yf9{bottom:836.385000px;}
.yf{bottom:841.290000px;}
.y46{bottom:844.710000px;}
.y76{bottom:846.510000px;}
.y9c{bottom:855.510000px;}
.yf8{bottom:856.410000px;}
.y45{bottom:864.510000px;}
.ye{bottom:866.310000px;}
.y9b{bottom:875.310000px;}
.yf7{bottom:876.210000px;}
.yd{bottom:880.890000px;}
.y44{bottom:884.310000px;}
.y75{bottom:886.110000px;}
.y9a{bottom:895.110000px;}
.yf6{bottom:896.010000px;}
.y43{bottom:904.110000px;}
.y74{bottom:905.910000px;}
.yc{bottom:906.090000px;}
.yc1{bottom:915.810000px;}
.yb{bottom:921.210000px;}
.y42{bottom:923.910000px;}
.y73{bottom:925.890000px;}
.yf5{bottom:935.610000px;}
.ya{bottom:942.450000px;}
.y41{bottom:943.890000px;}
.y72{bottom:945.690000px;}
.yf4{bottom:956.490000px;}
.y40{bottom:963.690000px;}
.y71{bottom:965.490000px;}
.y9{bottom:965.850000px;}
.yf3{bottom:979.350000px;}
.y3f{bottom:983.490000px;}
.y70{bottom:985.290000px;}
.y8{bottom:997.710000px;}
.yf2{bottom:1002.390000px;}
.y3e{bottom:1003.290000px;}
.y6f{bottom:1005.090000px;}
.y3d{bottom:1023.090000px;}
.yf1{bottom:1025.250000px;}
.y7{bottom:1029.390000px;}
.y6e{bottom:1034.070000px;}
.y3c{bottom:1043.070000px;}
.yf0{bottom:1048.290000px;}
.y6d{bottom:1053.870000px;}
.y3b{bottom:1062.870000px;}
.y5{bottom:1066.470000px;}
.yef{bottom:1071.150000px;}
.y6c{bottom:1073.670000px;}
.y3a{bottom:1082.670000px;}
.y6b{bottom:1093.470000px;}
.yee{bottom:1094.190000px;}
.y4{bottom:1095.990000px;}
.y39{bottom:1102.470000px;}
.yed{bottom:1117.050000px;}
.y38{bottom:1122.300000px;}
.y3{bottom:1125.360000px;}
.yec{bottom:1140.120000px;}
.y37{bottom:1142.280000px;}
.y2{bottom:1154.880000px;}
.y36{bottom:1171.620000px;}
.y1{bottom:1184.400000px;}
.y35{bottom:1193.400000px;}
.ha{height:17.280000px;}
.h7{height:28.115859px;}
.h8{height:43.215117px;}
.h9{height:43.506914px;}
.h12{height:44.236406px;}
.h3{height:47.901094px;}
.h13{height:49.255313px;}
.h5{height:51.210352px;}
.hf{height:51.840000px;}
.h2{height:56.763281px;}
.h6{height:59.545547px;}
.h11{height:68.940000px;}
.he{height:69.120000px;}
.h10{height:69.156000px;}
.h4{height:82.059961px;}
.hc{height:86.220000px;}
.hd{height:120.816000px;}
.hb{height:137.916000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:20.520000px;}
.w4{width:172.110000px;}
.w6{width:273.630000px;}
.w5{width:300.855000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:1.080000px;}
.x1{left:54.179987px;}
.x3{left:57.420000px;}
.x2{left:80.999987px;}
.x7{left:108.035987px;}
.x5{left:257.610000px;}
.x6{left:562.065000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.185067pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls17{letter-spacing:-0.047360pt;}
.lse{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016640pt;}
.ls12{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.185067pt;}
.ls19{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.233067pt;}
.ls22{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.343680pt;}
.lsb{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.869333pt;}
.ls8{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.008640pt;}
.ls2{letter-spacing:1.182720pt;}
.ls6{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls5{letter-spacing:1.440000pt;}
.ls3{letter-spacing:1.551360pt;}
.ls4{letter-spacing:1.619627pt;}
.ls1{letter-spacing:1.920000pt;}
.ls21{letter-spacing:10.192640pt;}
.ls20{letter-spacing:37.200640pt;}
.lsc{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.465067pt;}
.ws1{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.486933pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-2326.922667pt;}
._6{margin-left:-1417.205760pt;}
._4{margin-left:-1214.364160pt;}
._5{margin-left:-886.461440pt;}
._7{margin-left:-511.941120pt;}
._8{margin-left:-8.537600pt;}
._16{margin-left:-7.340800pt;}
._9{margin-left:-4.517973pt;}
._a{margin-left:-3.238400pt;}
._10{margin-left:-2.138880pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._1{width:2.746667pt;}
._f{width:3.928533pt;}
._b{width:5.022080pt;}
._c{width:6.303147pt;}
._14{width:7.311787pt;}
._15{width:8.993920pt;}
._11{width:10.215680pt;}
._12{width:11.194880pt;}
._13{width:12.184960pt;}
._1c{width:14.183040pt;}
._19{width:15.086080pt;}
._2b{width:17.276373pt;}
._1a{width:18.480640pt;}
._1b{width:19.388800pt;}
._18{width:20.670080pt;}
._17{width:22.061440pt;}
._1f{width:23.655040pt;}
._2a{width:26.384000pt;}
._29{width:27.532800pt;}
._1d{width:29.428480pt;}
._24{width:31.075200pt;}
._2c{width:34.368640pt;}
._25{width:35.749760pt;}
._2d{width:36.881067pt;}
._20{width:38.246400pt;}
._26{width:41.433600pt;}
._2e{width:46.675840pt;}
._d{width:48.248320pt;}
._e{width:49.604907pt;}
._21{width:58.272640pt;}
._1e{width:64.115840pt;}
._22{width:67.196800pt;}
._28{width:80.636160pt;}
._23{width:149.071360pt;}
._27{width:164.880640pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.880000pt;}
.ydc{bottom:2.906667pt;}
.yde{bottom:10.560000pt;}
.ycb{bottom:18.080000pt;}
.yd4{bottom:18.240000pt;}
.ydb{bottom:18.266667pt;}
.ye6{bottom:18.280000pt;}
.yd1{bottom:25.920000pt;}
.ye2{bottom:25.960000pt;}
.yca{bottom:33.440000pt;}
.ycf{bottom:33.600000pt;}
.yd8{bottom:33.626667pt;}
.ye5{bottom:33.640000pt;}
.ycd{bottom:41.120000pt;}
.yd0{bottom:41.280000pt;}
.ye3{bottom:41.320000pt;}
.yc6{bottom:48.800000pt;}
.yd6{bottom:48.826667pt;}
.yd3{bottom:48.960000pt;}
.ye4{bottom:49.000000pt;}
.y6{bottom:53.632000pt;}
.yc4{bottom:56.480000pt;}
.yd2{bottom:64.160000pt;}
.yd7{bottom:64.186667pt;}
.yc5{bottom:64.200000pt;}
.ycc{bottom:71.880000pt;}
.yc0{bottom:79.392000pt;}
.yda{bottom:79.546667pt;}
.y34{bottom:79.552000pt;}
.yc9{bottom:79.560000pt;}
.yeb{bottom:86.432000pt;}
.y99{bottom:91.392000pt;}
.yc8{bottom:94.760000pt;}
.yd9{bottom:94.906667pt;}
.ybf{bottom:96.992000pt;}
.y33{bottom:97.152000pt;}
.yea{bottom:105.952000pt;}
.y6a{bottom:107.872000pt;}
.y98{bottom:108.992000pt;}
.yc7{bottom:110.120000pt;}
.y32{bottom:114.752000pt;}
.ye9{bottom:123.712000pt;}
.y69{bottom:125.632000pt;}
.y11c{bottom:126.272000pt;}
.y97{bottom:126.592000pt;}
.y31{bottom:132.352000pt;}
.ye8{bottom:141.306667pt;}
.y68{bottom:143.226667pt;}
.y11b{bottom:144.026667pt;}
.y96{bottom:144.186667pt;}
.ybe{bottom:149.946667pt;}
.y30{bottom:150.106667pt;}
.ye7{bottom:158.106667pt;}
.y67{bottom:160.826667pt;}
.y11a{bottom:161.626667pt;}
.y95{bottom:161.946667pt;}
.ybd{bottom:168.506667pt;}
.y2f{bottom:168.666667pt;}
.y66{bottom:178.426667pt;}
.y119{bottom:179.226667pt;}
.y2e{bottom:186.266667pt;}
.ybc{bottom:187.066667pt;}
.y94{bottom:187.546667pt;}
.y65{bottom:196.026667pt;}
.y118{bottom:196.826667pt;}
.y2d{bottom:204.826667pt;}
.y93{bottom:205.146667pt;}
.ybb{bottom:205.786667pt;}
.y64{bottom:213.786667pt;}
.y117{bottom:214.426667pt;}
.y2c{bottom:222.426667pt;}
.y92{bottom:222.746667pt;}
.yba{bottom:223.386667pt;}
.ye1{bottom:224.666667pt;}
.y63{bottom:231.386667pt;}
.y116{bottom:232.186667pt;}
.y91{bottom:240.346667pt;}
.yb9{bottom:240.986667pt;}
.y2b{bottom:241.146667pt;}
.y62{bottom:249.026667pt;}
.y115{bottom:249.826667pt;}
.yb8{bottom:258.626667pt;}
.y2a{bottom:259.746667pt;}
.y90{bottom:266.146667pt;}
.y61{bottom:266.626667pt;}
.y114{bottom:267.426667pt;}
.yb7{bottom:276.226667pt;}
.y29{bottom:277.346667pt;}
.y8f{bottom:283.746667pt;}
.y60{bottom:284.226667pt;}
.y113{bottom:285.026667pt;}
.ye0{bottom:291.426667pt;}
.yb6{bottom:293.986667pt;}
.y28{bottom:294.946667pt;}
.y8e{bottom:301.346667pt;}
.y5f{bottom:301.986667pt;}
.y112{bottom:302.626667pt;}
.yb5{bottom:311.586667pt;}
.y27{bottom:312.546667pt;}
.y8d{bottom:318.946667pt;}
.y5e{bottom:319.586667pt;}
.y111{bottom:320.386667pt;}
.yb4{bottom:329.186667pt;}
.y26{bottom:330.306667pt;}
.y5d{bottom:337.186667pt;}
.y110{bottom:337.986667pt;}
.ydf{bottom:342.786667pt;}
.y8c{bottom:344.546667pt;}
.yb3{bottom:346.786667pt;}
.y25{bottom:347.906667pt;}
.y5c{bottom:354.786667pt;}
.y10f{bottom:355.586667pt;}
.y8b{bottom:362.306667pt;}
.yb2{bottom:364.386667pt;}
.y24{bottom:365.506667pt;}
.y5b{bottom:372.386667pt;}
.y10e{bottom:373.186667pt;}
.y8a{bottom:379.906667pt;}
.yb1{bottom:382.146667pt;}
.y23{bottom:383.106667pt;}
.y5a{bottom:390.146667pt;}
.y10d{bottom:390.786667pt;}
.y89{bottom:397.506667pt;}
.yb0{bottom:399.746667pt;}
.y22{bottom:400.706667pt;}
.y59{bottom:407.746667pt;}
.y10c{bottom:408.546667pt;}
.y88{bottom:415.106667pt;}
.yaf{bottom:417.346667pt;}
.y21{bottom:418.466667pt;}
.ydd{bottom:424.706667pt;}
.y58{bottom:425.346667pt;}
.y10b{bottom:426.146667pt;}
.yae{bottom:434.946667pt;}
.y20{bottom:436.066667pt;}
.y87{bottom:440.706667pt;}
.y57{bottom:442.946667pt;}
.y10a{bottom:443.746667pt;}
.yad{bottom:452.546667pt;}
.y1f{bottom:455.586667pt;}
.y86{bottom:458.466667pt;}
.y56{bottom:460.546667pt;}
.y109{bottom:461.346667pt;}
.yac{bottom:470.306667pt;}
.y85{bottom:476.066667pt;}
.y55{bottom:478.306667pt;}
.y108{bottom:478.946667pt;}
.y1e{bottom:481.346667pt;}
.yab{bottom:487.906667pt;}
.yd5{bottom:491.426667pt;}
.y84{bottom:493.666667pt;}
.y54{bottom:495.933333pt;}
.y107{bottom:496.733333pt;}
.y1d{bottom:498.973333pt;}
.yaa{bottom:505.533333pt;}
.y83{bottom:511.293333pt;}
.y106{bottom:514.333333pt;}
.y1c{bottom:516.573333pt;}
.y53{bottom:521.533333pt;}
.ya9{bottom:523.133333pt;}
.y82{bottom:528.893333pt;}
.y105{bottom:531.933333pt;}
.y1b{bottom:534.173333pt;}
.y52{bottom:539.133333pt;}
.ya8{bottom:540.733333pt;}
.y81{bottom:546.653333pt;}
.y104{bottom:549.533333pt;}
.y1a{bottom:551.773333pt;}
.y51{bottom:556.733333pt;}
.ya7{bottom:558.493333pt;}
.y80{bottom:565.213333pt;}
.y103{bottom:567.133333pt;}
.y19{bottom:569.533333pt;}
.y50{bottom:574.493333pt;}
.ya6{bottom:576.093333pt;}
.y7f{bottom:583.773333pt;}
.y102{bottom:584.893333pt;}
.y18{bottom:587.133333pt;}
.y4f{bottom:592.093333pt;}
.ya5{bottom:593.693333pt;}
.y7e{bottom:602.333333pt;}
.y101{bottom:602.493333pt;}
.yce{bottom:604.093333pt;}
.y17{bottom:604.733333pt;}
.y4e{bottom:609.693333pt;}
.ya4{bottom:611.293333pt;}
.y100{bottom:620.093333pt;}
.y7d{bottom:620.893333pt;}
.y16{bottom:622.333333pt;}
.y4d{bottom:627.293333pt;}
.ya3{bottom:628.893333pt;}
.yff{bottom:637.693333pt;}
.y7c{bottom:638.653333pt;}
.y15{bottom:639.933333pt;}
.y4c{bottom:644.893333pt;}
.ya2{bottom:646.653333pt;}
.yfe{bottom:655.293333pt;}
.y7b{bottom:656.253333pt;}
.y14{bottom:657.693333pt;}
.y4b{bottom:662.653333pt;}
.ya1{bottom:664.253333pt;}
.yfd{bottom:673.053333pt;}
.y7a{bottom:673.853333pt;}
.y13{bottom:675.293333pt;}
.y4a{bottom:680.253333pt;}
.ya0{bottom:681.853333pt;}
.yc3{bottom:686.173333pt;}
.yfc{bottom:690.653333pt;}
.y79{bottom:691.453333pt;}
.y12{bottom:692.893333pt;}
.y49{bottom:697.853333pt;}
.y9f{bottom:699.453333pt;}
.yfb{bottom:708.253333pt;}
.y11{bottom:710.493333pt;}
.y48{bottom:715.453333pt;}
.y78{bottom:717.053333pt;}
.y9e{bottom:725.053333pt;}
.yfa{bottom:725.853333pt;}
.y10{bottom:730.173333pt;}
.y47{bottom:733.053333pt;}
.y77{bottom:734.813333pt;}
.y9d{bottom:742.813333pt;}
.yf9{bottom:743.453333pt;}
.yf{bottom:747.813333pt;}
.y46{bottom:750.853333pt;}
.y76{bottom:752.453333pt;}
.y9c{bottom:760.453333pt;}
.yf8{bottom:761.253333pt;}
.y45{bottom:768.453333pt;}
.ye{bottom:770.053333pt;}
.y9b{bottom:778.053333pt;}
.yf7{bottom:778.853333pt;}
.yd{bottom:783.013333pt;}
.y44{bottom:786.053333pt;}
.y75{bottom:787.653333pt;}
.y9a{bottom:795.653333pt;}
.yf6{bottom:796.453333pt;}
.y43{bottom:803.653333pt;}
.y74{bottom:805.253333pt;}
.yc{bottom:805.413333pt;}
.yc1{bottom:814.053333pt;}
.yb{bottom:818.853333pt;}
.y42{bottom:821.253333pt;}
.y73{bottom:823.013333pt;}
.yf5{bottom:831.653333pt;}
.ya{bottom:837.733333pt;}
.y41{bottom:839.013333pt;}
.y72{bottom:840.613333pt;}
.yf4{bottom:850.213333pt;}
.y40{bottom:856.613333pt;}
.y71{bottom:858.213333pt;}
.y9{bottom:858.533333pt;}
.yf3{bottom:870.533333pt;}
.y3f{bottom:874.213333pt;}
.y70{bottom:875.813333pt;}
.y8{bottom:886.853333pt;}
.yf2{bottom:891.013333pt;}
.y3e{bottom:891.813333pt;}
.y6f{bottom:893.413333pt;}
.y3d{bottom:909.413333pt;}
.yf1{bottom:911.333333pt;}
.y7{bottom:915.013333pt;}
.y6e{bottom:919.173333pt;}
.y3c{bottom:927.173333pt;}
.yf0{bottom:931.813333pt;}
.y6d{bottom:936.773333pt;}
.y3b{bottom:944.773333pt;}
.y5{bottom:947.973333pt;}
.yef{bottom:952.133333pt;}
.y6c{bottom:954.373333pt;}
.y3a{bottom:962.373333pt;}
.y6b{bottom:971.973333pt;}
.yee{bottom:972.613333pt;}
.y4{bottom:974.213333pt;}
.y39{bottom:979.973333pt;}
.yed{bottom:992.933333pt;}
.y38{bottom:997.600000pt;}
.y3{bottom:1000.320000pt;}
.yec{bottom:1013.440000pt;}
.y37{bottom:1015.360000pt;}
.y2{bottom:1026.560000pt;}
.y36{bottom:1041.440000pt;}
.y1{bottom:1052.800000pt;}
.y35{bottom:1060.800000pt;}
.ha{height:15.360000pt;}
.h7{height:24.991875pt;}
.h8{height:38.413438pt;}
.h9{height:38.672812pt;}
.h12{height:39.321250pt;}
.h3{height:42.578750pt;}
.h13{height:43.782500pt;}
.h5{height:45.520312pt;}
.hf{height:46.080000pt;}
.h2{height:50.456250pt;}
.h6{height:52.929375pt;}
.h11{height:61.280000pt;}
.he{height:61.440000pt;}
.h10{height:61.472000pt;}
.h4{height:72.942188pt;}
.hc{height:76.640000pt;}
.hd{height:107.392000pt;}
.hb{height:122.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.240000pt;}
.w4{width:152.986667pt;}
.w6{width:243.226667pt;}
.w5{width:267.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:0.960000pt;}
.x1{left:48.159988pt;}
.x3{left:51.040000pt;}
.x2{left:71.999988pt;}
.x7{left:96.031988pt;}
.x5{left:228.986667pt;}
.x6{left:499.613333pt;}
}




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