
    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_5546aa10f9aa0f79a6379e1a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_b040146782417027aefd790f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_2f55be5c0ded779b7eb4c038.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_07407d5f5d48728b437e04ed.woff')format("woff");}.ff4{font-family:ff4;line-height:0.719000;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_e0e6905db80ed6718bb9aabc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_6896402754941280c312d0db.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_0eefc290f39b0bb767bbad7f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_0b28ae484e347b797d519093.woff')format("woff");}.ff8{font-family:ff8;line-height:0.429000;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_66a47dba1a7397a00b06ec8e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_50f9c7bb1d5d84501a45fe8f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0753b44573abdc7194106296.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e1572a265d7120fd7c5fa38c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1065b5636690048925dbae81.woff')format("woff");}.ffd{font-family:ffd;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a634625f26396c2b40bfab73.woff')format("woff");}.ffe{font-family:ffe;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_73e1742154c968c5da1d828a.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:29.887409px;}
.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;}
}
.ws41{word-spacing:-29.887800px;}
.ws4c{word-spacing:-25.407085px;}
.ws11{word-spacing:-18.221518px;}
.wsc{word-spacing:-16.230977px;}
.wse{word-spacing:-15.692993px;}
.ws26{word-spacing:-15.422105px;}
.ws5f{word-spacing:-15.003676px;}
.ws64{word-spacing:-14.943900px;}
.ws12{word-spacing:-14.832219px;}
.ws62{word-spacing:-14.525471px;}
.ws33{word-spacing:-14.346144px;}
.ws2e{word-spacing:-14.047266px;}
.ws4a{word-spacing:-13.882320px;}
.ws6b{word-spacing:-13.643217px;}
.ws29{word-spacing:-13.329959px;}
.wsd{word-spacing:-12.841678px;}
.ws63{word-spacing:-12.791978px;}
.ws36{word-spacing:-12.612652px;}
.ws69{word-spacing:-12.495523px;}
.ws37{word-spacing:-12.373549px;}
.wsa{word-spacing:-12.196097px;}
.ws38{word-spacing:-11.895344px;}
.ws15{word-spacing:-11.658113px;}
.ws17{word-spacing:-11.389121px;}
.ws30{word-spacing:-11.237813px;}
.ws21{word-spacing:-11.118262px;}
.ws56{word-spacing:-10.759608px;}
.ws1c{word-spacing:-10.400954px;}
.ws2f{word-spacing:-9.982525px;}
.ws42{word-spacing:-9.629849px;}
.ws13{word-spacing:-9.559976px;}
.ws2{word-spacing:-8.966340px;}
.ws5b{word-spacing:-8.906564px;}
.ws2a{word-spacing:-8.787013px;}
.ws46{word-spacing:-8.669875px;}
.ws50{word-spacing:-8.547911px;}
.ws20{word-spacing:-8.249033px;}
.wsf{word-spacing:-7.999822px;}
.ws58{word-spacing:-7.950155px;}
.ws40{word-spacing:-7.113296px;}
.ws51{word-spacing:-7.053521px;}
.ws54{word-spacing:-6.993745px;}
.ws6{word-spacing:-6.870056px;}
.ws25{word-spacing:-6.635092px;}
.ws23{word-spacing:-6.575316px;}
.ws4e{word-spacing:-6.470127px;}
.ws3c{word-spacing:-6.455765px;}
.ws1d{word-spacing:-6.395989px;}
.ws7d{word-spacing:-5.991921px;}
.ws1f{word-spacing:-5.499355px;}
.ws65{word-spacing:-4.961375px;}
.ws9{word-spacing:-4.610523px;}
.ws1b{word-spacing:-4.602721px;}
.ws27{word-spacing:-4.363619px;}
.ws3e{word-spacing:-4.303843px;}
.ws32{word-spacing:-3.765863px;}
.ws31{word-spacing:-3.706087px;}
.ws8{word-spacing:-3.642152px;}
.ws7e{word-spacing:-3.266147px;}
.ws66{word-spacing:-3.048556px;}
.ws55{word-spacing:-2.929004px;}
.ws39{word-spacing:-2.809453px;}
.ws52{word-spacing:-1.912819px;}
.ws10{word-spacing:-1.866804px;}
.ws14{word-spacing:-1.705409px;}
.ws6a{word-spacing:-1.496785px;}
.ws3a{word-spacing:-1.255288px;}
.ws1e{word-spacing:-0.896634px;}
.ws49{word-spacing:-0.779476px;}
.ws43{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws4b{word-spacing:-0.047821px;}
.ws3d{word-spacing:-0.005978px;}
.ws45{word-spacing:0.000000px;}
.wsb{word-spacing:0.446527px;}
.ws24{word-spacing:0.597756px;}
.ws5e{word-spacing:0.657532px;}
.ws5{word-spacing:1.092108px;}
.ws1a{word-spacing:1.255288px;}
.ws3b{word-spacing:1.793268px;}
.ws53{word-spacing:1.853044px;}
.ws3f{word-spacing:2.032370px;}
.ws61{word-spacing:2.211697px;}
.ws5c{word-spacing:2.689902px;}
.ws7{word-spacing:2.759858px;}
.ws18{word-spacing:2.867455px;}
.ws22{word-spacing:3.168107px;}
.ws5d{word-spacing:3.466985px;}
.ws4d{word-spacing:3.476558px;}
.ws7f{word-spacing:7.397847px;}
.ws35{word-spacing:7.412174px;}
.ws68{word-spacing:8.129482px;}
.ws34{word-spacing:8.200492px;}
.ws57{word-spacing:8.308808px;}
.ws59{word-spacing:8.787013px;}
.ws28{word-spacing:9.085891px;}
.ws6f{word-spacing:10.027980px;}
.ws75{word-spacing:11.414777px;}
.ws60{word-spacing:12.313774px;}
.ws6e{word-spacing:13.805807px;}
.ws5a{word-spacing:14.047266px;}
.ws78{word-spacing:15.144784px;}
.ws4{word-spacing:15.940466px;}
.ws48{word-spacing:17.884904px;}
.ws47{word-spacing:18.028366px;}
.ws80{word-spacing:18.444405px;}
.ws7c{word-spacing:18.492226px;}
.ws79{word-spacing:18.786632px;}
.ws77{word-spacing:19.209535px;}
.ws16{word-spacing:20.389594px;}
.ws4f{word-spacing:22.356074px;}
.ws2d{word-spacing:22.535401px;}
.ws1{word-spacing:22.947937px;}
.ws6c{word-spacing:24.804545px;}
.ws70{word-spacing:25.760957px;}
.ws71{word-spacing:27.530319px;}
.ws6d{word-spacing:27.865064px;}
.ws44{word-spacing:28.190362px;}
.ws2c{word-spacing:32.458151px;}
.ws19{word-spacing:32.996131px;}
.ws72{word-spacing:37.524825px;}
.ws7b{word-spacing:43.851490px;}
.ws7a{word-spacing:44.138414px;}
.ws0{word-spacing:50.068168px;}
.ws73{word-spacing:64.495643px;}
.ws2b{word-spacing:68.263735px;}
.ws74{word-spacing:85.967093px;}
.ws76{word-spacing:167.549036px;}
.ws67{word-spacing:449.811390px;}
._6{margin-left:-6.939999px;}
._3{margin-left:-5.021150px;}
._0{margin-left:-3.730007px;}
._2{margin-left:-1.775342px;}
._5{width:1.470456px;}
._4{width:2.483716px;}
._1{width:3.730007px;}
._d{width:16.737210px;}
._8{width:29.887800px;}
._7{width:33.318943px;}
._a{width:100.662363px;}
._f{width:175.836346px;}
._e{width:182.244307px;}
._c{width:227.536394px;}
._9{width:270.329852px;}
._b{width:293.146258px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y34{bottom:113.332500px;}
.y5b{bottom:117.816000px;}
.y33{bottom:131.265000px;}
.y5a{bottom:132.760500px;}
.y59{bottom:147.705000px;}
.y32{bottom:149.199000px;}
.y58{bottom:162.648000px;}
.y31{bottom:167.131500px;}
.y57{bottom:177.592500px;}
.y30{bottom:185.064000px;}
.y56{bottom:192.535500px;}
.y2f{bottom:202.996500px;}
.y8a{bottom:207.142500px;}
.y55{bottom:207.480000px;}
.y2e{bottom:220.929000px;}
.y89{bottom:232.657500px;}
.y2d{bottom:238.861500px;}
.y88{bottom:250.590000px;}
.y54{bottom:251.106000px;}
.y2c{bottom:256.795500px;}
.y87{bottom:268.522500px;}
.y2b{bottom:274.728000px;}
.y53{bottom:275.350500px;}
.y86{bottom:286.456500px;}
.y2a{bottom:297.165000px;}
.y85{bottom:304.389000px;}
.y52{bottom:307.294500px;}
.y29{bottom:321.411000px;}
.yba{bottom:321.648000px;}
.y84{bottom:322.321500px;}
.y51{bottom:325.227000px;}
.yb9{bottom:335.098500px;}
.y28{bottom:339.343500px;}
.y83{bottom:340.254000px;}
.y50{bottom:343.159500px;}
.yb8{bottom:348.547500px;}
.y27{bottom:357.277500px;}
.y82{bottom:358.186500px;}
.y4f{bottom:361.092000px;}
.yb7{bottom:361.998000px;}
.y26{bottom:375.210000px;}
.yb6{bottom:375.447000px;}
.y81{bottom:376.119000px;}
.y4e{bottom:379.024500px;}
.yb5{bottom:388.896000px;}
.y25{bottom:393.142500px;}
.y4d{bottom:396.958500px;}
.y80{bottom:398.199000px;}
.yb4{bottom:402.346500px;}
.y24{bottom:410.497500px;}
.y4c{bottom:414.891000px;}
.yb3{bottom:415.795500px;}
.y7f{bottom:423.712500px;}
.y23{bottom:428.431500px;}
.yb2{bottom:429.244500px;}
.y4b{bottom:432.823500px;}
.y7e{bottom:441.646500px;}
.yb1{bottom:442.695000px;}
.y22{bottom:446.364000px;}
.yb0{bottom:456.144000px;}
.y4a{bottom:456.535500px;}
.y7d{bottom:459.579000px;}
.y21{bottom:464.296500px;}
.yaf{bottom:469.593000px;}
.y7c{bottom:477.511500px;}
.y49{bottom:482.056500px;}
.y20{bottom:482.229000px;}
.yae{bottom:483.043500px;}
.yad{bottom:496.492500px;}
.y7b{bottom:499.590000px;}
.y1f{bottom:500.161500px;}
.yac{bottom:509.943000px;}
.y48{bottom:513.999000px;}
.y1e{bottom:518.094000px;}
.yab{bottom:523.392000px;}
.y7a{bottom:525.105000px;}
.y47{bottom:531.931500px;}
.y1d{bottom:536.028000px;}
.yaa{bottom:536.841000px;}
.y79{bottom:543.037500px;}
.y46{bottom:549.865500px;}
.ya9{bottom:550.291500px;}
.y1c{bottom:557.887500px;}
.y78{bottom:560.970000px;}
.ya8{bottom:563.740500px;}
.y45{bottom:567.798000px;}
.ya7{bottom:577.189500px;}
.y77{bottom:578.904000px;}
.y44{bottom:585.730500px;}
.y1b{bottom:586.138500px;}
.ya6{bottom:590.640000px;}
.y76{bottom:596.836500px;}
.y1a{bottom:601.083000px;}
.y43{bottom:603.663000px;}
.ya5{bottom:604.089000px;}
.y75{bottom:614.769000px;}
.y19{bottom:616.027500px;}
.ya4{bottom:617.539500px;}
.y42{bottom:621.595500px;}
.y18{bottom:630.394500px;}
.ya3{bottom:630.988500px;}
.y74{bottom:632.701500px;}
.ya2{bottom:644.437500px;}
.y17{bottom:645.337500px;}
.y41{bottom:647.116500px;}
.y73{bottom:650.634000px;}
.ya1{bottom:657.888000px;}
.y16{bottom:660.282000px;}
.y72{bottom:668.566500px;}
.ya0{bottom:671.337000px;}
.y15{bottom:675.226500px;}
.y40{bottom:679.060500px;}
.y9f{bottom:684.786000px;}
.y71{bottom:686.500500px;}
.y14{bottom:690.169500px;}
.y3f{bottom:696.993000px;}
.y9e{bottom:698.236500px;}
.y13{bottom:705.114000px;}
.y70{bottom:708.936000px;}
.y3e{bottom:714.925500px;}
.y12{bottom:720.058500px;}
.y9d{bottom:720.225000px;}
.y3d{bottom:732.858000px;}
.y11{bottom:735.001500px;}
.y6f{bottom:746.311500px;}
.y9c{bottom:747.808500px;}
.y10{bottom:749.946000px;}
.y3c{bottom:751.324500px;}
.y6e{bottom:761.254500px;}
.yf{bottom:764.889000px;}
.y9b{bottom:765.741000px;}
.y3b{bottom:769.257000px;}
.y6d{bottom:776.199000px;}
.ye{bottom:779.833500px;}
.y3a{bottom:787.189500px;}
.y9a{bottom:788.178000px;}
.y6c{bottom:791.142000px;}
.yd{bottom:794.778000px;}
.y39{bottom:805.122000px;}
.y6b{bottom:806.086500px;}
.yc{bottom:809.721000px;}
.y99{bottom:815.761500px;}
.y6a{bottom:821.031000px;}
.y38{bottom:823.054500px;}
.yb{bottom:824.665500px;}
.y98{bottom:833.694000px;}
.y69{bottom:835.974000px;}
.ya{bottom:839.610000px;}
.y37{bottom:840.988500px;}
.y9{bottom:854.553000px;}
.y97{bottom:856.131000px;}
.y36{bottom:858.921000px;}
.y8{bottom:869.497500px;}
.y68{bottom:876.825000px;}
.y96{bottom:883.714500px;}
.y35{bottom:884.440500px;}
.y7{bottom:884.442000px;}
.y95{bottom:901.648500px;}
.y94{bottom:919.581000px;}
.y67{bottom:926.658000px;}
.y93{bottom:937.513500px;}
.y6{bottom:938.898000px;}
.y66{bottom:940.108500px;}
.y65{bottom:953.557500px;}
.y92{bottom:955.446000px;}
.y5{bottom:956.592000px;}
.y64{bottom:967.006500px;}
.y91{bottom:973.378500px;}
.y4{bottom:974.286000px;}
.y63{bottom:980.457000px;}
.y3{bottom:992.191500px;}
.y62{bottom:993.906000px;}
.y90{bottom:995.815500px;}
.y61{bottom:1007.355000px;}
.y60{bottom:1020.805500px;}
.y8f{bottom:1023.399000px;}
.y5f{bottom:1034.254500px;}
.y2{bottom:1039.264500px;}
.y8e{bottom:1041.331500px;}
.y5e{bottom:1055.512500px;}
.y8d{bottom:1059.265500px;}
.y8c{bottom:1077.198000px;}
.y1{bottom:1081.108500px;}
.y5d{bottom:1086.184500px;}
.y8b{bottom:1099.633500px;}
.y5c{bottom:1099.635000px;}
.h7{height:35.865450px;}
.h6{height:37.336090px;}
.h4{height:40.348800px;}
.h5{height:41.723369px;}
.h3{height:44.831700px;}
.h2{height:46.290394px;}
.h1{height:101.427493px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:73.446000px;}
.x1{left:82.117500px;}
.xa{left:87.040500px;}
.x7{left:88.390500px;}
.x16{left:103.333500px;}
.x19{left:114.028500px;}
.x14{left:121.362000px;}
.x18{left:148.059000px;}
.x2{left:168.165000px;}
.x17{left:171.603000px;}
.x15{left:198.423000px;}
.x9{left:201.409500px;}
.x13{left:235.764000px;}
.x4{left:246.162000px;}
.x3{left:342.427500px;}
.x6{left:352.297500px;}
.x5{left:401.320500px;}
.xd{left:467.967000px;}
.xc{left:482.910000px;}
.x11{left:487.030500px;}
.x10{left:488.722500px;}
.x1a{left:490.044000px;}
.x12{left:497.854500px;}
.x1c{left:542.434500px;}
.xf{left:550.519500px;}
.xe{left:584.961000px;}
.x1d{left:586.195500px;}
.xb{left:587.286000px;}
.x1b{left:597.580500px;}
.x1e{left:612.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:26.566586pt;}
.ws41{word-spacing:-26.566933pt;}
.ws4c{word-spacing:-22.584075pt;}
.ws11{word-spacing:-16.196905pt;}
.wsc{word-spacing:-14.427535pt;}
.wse{word-spacing:-13.949327pt;}
.ws26{word-spacing:-13.708538pt;}
.ws5f{word-spacing:-13.336601pt;}
.ws64{word-spacing:-13.283467pt;}
.ws12{word-spacing:-13.184195pt;}
.ws62{word-spacing:-12.911530pt;}
.ws33{word-spacing:-12.752128pt;}
.ws2e{word-spacing:-12.486459pt;}
.ws4a{word-spacing:-12.339840pt;}
.ws6b{word-spacing:-12.127304pt;}
.ws29{word-spacing:-11.848852pt;}
.wsd{word-spacing:-11.414825pt;}
.ws63{word-spacing:-11.370647pt;}
.ws36{word-spacing:-11.211246pt;}
.ws69{word-spacing:-11.107131pt;}
.ws37{word-spacing:-10.998710pt;}
.wsa{word-spacing:-10.840975pt;}
.ws38{word-spacing:-10.573639pt;}
.ws15{word-spacing:-10.362767pt;}
.ws17{word-spacing:-10.123663pt;}
.ws30{word-spacing:-9.989167pt;}
.ws21{word-spacing:-9.882899pt;}
.ws56{word-spacing:-9.564096pt;}
.ws1c{word-spacing:-9.245293pt;}
.ws2f{word-spacing:-8.873356pt;}
.ws42{word-spacing:-8.559866pt;}
.ws13{word-spacing:-8.497756pt;}
.ws2{word-spacing:-7.970080pt;}
.ws5b{word-spacing:-7.916946pt;}
.ws2a{word-spacing:-7.810678pt;}
.ws46{word-spacing:-7.706555pt;}
.ws50{word-spacing:-7.598143pt;}
.ws20{word-spacing:-7.332474pt;}
.wsf{word-spacing:-7.110953pt;}
.ws58{word-spacing:-7.066804pt;}
.ws40{word-spacing:-6.322930pt;}
.ws51{word-spacing:-6.269796pt;}
.ws54{word-spacing:-6.216662pt;}
.ws6{word-spacing:-6.106716pt;}
.ws25{word-spacing:-5.897859pt;}
.ws23{word-spacing:-5.844725pt;}
.ws4e{word-spacing:-5.751224pt;}
.ws3c{word-spacing:-5.738458pt;}
.ws1d{word-spacing:-5.685324pt;}
.ws7d{word-spacing:-5.326152pt;}
.ws1f{word-spacing:-4.888316pt;}
.ws65{word-spacing:-4.410111pt;}
.ws9{word-spacing:-4.098243pt;}
.ws1b{word-spacing:-4.091308pt;}
.ws27{word-spacing:-3.878772pt;}
.ws3e{word-spacing:-3.825638pt;}
.ws32{word-spacing:-3.347434pt;}
.ws31{word-spacing:-3.294300pt;}
.ws8{word-spacing:-3.237468pt;}
.ws7e{word-spacing:-2.903242pt;}
.ws66{word-spacing:-2.709827pt;}
.ws55{word-spacing:-2.603559pt;}
.ws39{word-spacing:-2.497292pt;}
.ws52{word-spacing:-1.700284pt;}
.ws10{word-spacing:-1.659382pt;}
.ws14{word-spacing:-1.515919pt;}
.ws6a{word-spacing:-1.330475pt;}
.ws3a{word-spacing:-1.115811pt;}
.ws1e{word-spacing:-0.797008pt;}
.ws49{word-spacing:-0.692867pt;}
.ws43{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws4b{word-spacing:-0.042507pt;}
.ws3d{word-spacing:-0.005313pt;}
.ws45{word-spacing:0.000000pt;}
.wsb{word-spacing:0.396913pt;}
.ws24{word-spacing:0.531339pt;}
.ws5e{word-spacing:0.584473pt;}
.ws5{word-spacing:0.970762pt;}
.ws1a{word-spacing:1.115811pt;}
.ws3b{word-spacing:1.594016pt;}
.ws53{word-spacing:1.647150pt;}
.ws3f{word-spacing:1.806551pt;}
.ws61{word-spacing:1.965953pt;}
.ws5c{word-spacing:2.391024pt;}
.ws7{word-spacing:2.453207pt;}
.ws18{word-spacing:2.548849pt;}
.ws22{word-spacing:2.816095pt;}
.ws5d{word-spacing:3.081764pt;}
.ws4d{word-spacing:3.090273pt;}
.ws7f{word-spacing:6.575864pt;}
.ws35{word-spacing:6.588599pt;}
.ws68{word-spacing:7.226206pt;}
.ws34{word-spacing:7.289326pt;}
.ws57{word-spacing:7.385607pt;}
.ws59{word-spacing:7.810678pt;}
.ws28{word-spacing:8.076348pt;}
.ws6f{word-spacing:8.913760pt;}
.ws75{word-spacing:10.146469pt;}
.ws60{word-spacing:10.945577pt;}
.ws6e{word-spacing:12.271829pt;}
.ws5a{word-spacing:12.486459pt;}
.ws78{word-spacing:13.462030pt;}
.ws4{word-spacing:14.169303pt;}
.ws48{word-spacing:15.897693pt;}
.ws47{word-spacing:16.025214pt;}
.ws80{word-spacing:16.395027pt;}
.ws7c{word-spacing:16.437534pt;}
.ws79{word-spacing:16.699229pt;}
.ws77{word-spacing:17.075142pt;}
.ws16{word-spacing:18.124083pt;}
.ws4f{word-spacing:19.872066pt;}
.ws2d{word-spacing:20.031468pt;}
.ws1{word-spacing:20.398166pt;}
.ws6c{word-spacing:22.048485pt;}
.ws70{word-spacing:22.898629pt;}
.ws71{word-spacing:24.471395pt;}
.ws6d{word-spacing:24.768945pt;}
.ws44{word-spacing:25.058099pt;}
.ws2c{word-spacing:28.851690pt;}
.ws19{word-spacing:29.329894pt;}
.ws72{word-spacing:33.355400pt;}
.ws7b{word-spacing:38.979102pt;}
.ws7a{word-spacing:39.234146pt;}
.ws0{word-spacing:44.505038pt;}
.ws73{word-spacing:57.329461pt;}
.ws2b{word-spacing:60.678876pt;}
.ws74{word-spacing:76.415193pt;}
.ws76{word-spacing:148.932477pt;}
.ws67{word-spacing:399.832347pt;}
._6{margin-left:-6.168888pt;}
._3{margin-left:-4.463245pt;}
._0{margin-left:-3.315562pt;}
._2{margin-left:-1.578082pt;}
._5{width:1.307072pt;}
._4{width:2.207748pt;}
._1{width:3.315562pt;}
._d{width:14.877520pt;}
._8{width:26.566933pt;}
._7{width:29.616838pt;}
._a{width:89.477656pt;}
._f{width:156.298974pt;}
._e{width:161.994939pt;}
._c{width:202.254573pt;}
._9{width:240.293202pt;}
._b{width:260.574451pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:100.740000pt;}
.y5b{bottom:104.725333pt;}
.y33{bottom:116.680000pt;}
.y5a{bottom:118.009333pt;}
.y59{bottom:131.293333pt;}
.y32{bottom:132.621333pt;}
.y58{bottom:144.576000pt;}
.y31{bottom:148.561333pt;}
.y57{bottom:157.860000pt;}
.y30{bottom:164.501333pt;}
.y56{bottom:171.142667pt;}
.y2f{bottom:180.441333pt;}
.y8a{bottom:184.126667pt;}
.y55{bottom:184.426667pt;}
.y2e{bottom:196.381333pt;}
.y89{bottom:206.806667pt;}
.y2d{bottom:212.321333pt;}
.y88{bottom:222.746667pt;}
.y54{bottom:223.205333pt;}
.y2c{bottom:228.262667pt;}
.y87{bottom:238.686667pt;}
.y2b{bottom:244.202667pt;}
.y53{bottom:244.756000pt;}
.y86{bottom:254.628000pt;}
.y2a{bottom:264.146667pt;}
.y85{bottom:270.568000pt;}
.y52{bottom:273.150667pt;}
.y29{bottom:285.698667pt;}
.yba{bottom:285.909333pt;}
.y84{bottom:286.508000pt;}
.y51{bottom:289.090667pt;}
.yb9{bottom:297.865333pt;}
.y28{bottom:301.638667pt;}
.y83{bottom:302.448000pt;}
.y50{bottom:305.030667pt;}
.yb8{bottom:309.820000pt;}
.y27{bottom:317.580000pt;}
.y82{bottom:318.388000pt;}
.y4f{bottom:320.970667pt;}
.yb7{bottom:321.776000pt;}
.y26{bottom:333.520000pt;}
.yb6{bottom:333.730667pt;}
.y81{bottom:334.328000pt;}
.y4e{bottom:336.910667pt;}
.yb5{bottom:345.685333pt;}
.y25{bottom:349.460000pt;}
.y4d{bottom:352.852000pt;}
.y80{bottom:353.954667pt;}
.yb4{bottom:357.641333pt;}
.y24{bottom:364.886667pt;}
.y4c{bottom:368.792000pt;}
.yb3{bottom:369.596000pt;}
.y7f{bottom:376.633333pt;}
.y23{bottom:380.828000pt;}
.yb2{bottom:381.550667pt;}
.y4b{bottom:384.732000pt;}
.y7e{bottom:392.574667pt;}
.yb1{bottom:393.506667pt;}
.y22{bottom:396.768000pt;}
.yb0{bottom:405.461333pt;}
.y4a{bottom:405.809333pt;}
.y7d{bottom:408.514667pt;}
.y21{bottom:412.708000pt;}
.yaf{bottom:417.416000pt;}
.y7c{bottom:424.454667pt;}
.y49{bottom:428.494667pt;}
.y20{bottom:428.648000pt;}
.yae{bottom:429.372000pt;}
.yad{bottom:441.326667pt;}
.y7b{bottom:444.080000pt;}
.y1f{bottom:444.588000pt;}
.yac{bottom:453.282667pt;}
.y48{bottom:456.888000pt;}
.y1e{bottom:460.528000pt;}
.yab{bottom:465.237333pt;}
.y7a{bottom:466.760000pt;}
.y47{bottom:472.828000pt;}
.y1d{bottom:476.469333pt;}
.yaa{bottom:477.192000pt;}
.y79{bottom:482.700000pt;}
.y46{bottom:488.769333pt;}
.ya9{bottom:489.148000pt;}
.y1c{bottom:495.900000pt;}
.y78{bottom:498.640000pt;}
.ya8{bottom:501.102667pt;}
.y45{bottom:504.709333pt;}
.ya7{bottom:513.057333pt;}
.y77{bottom:514.581333pt;}
.y44{bottom:520.649333pt;}
.y1b{bottom:521.012000pt;}
.ya6{bottom:525.013333pt;}
.y76{bottom:530.521333pt;}
.y1a{bottom:534.296000pt;}
.y43{bottom:536.589333pt;}
.ya5{bottom:536.968000pt;}
.y75{bottom:546.461333pt;}
.y19{bottom:547.580000pt;}
.ya4{bottom:548.924000pt;}
.y42{bottom:552.529333pt;}
.y18{bottom:560.350667pt;}
.ya3{bottom:560.878667pt;}
.y74{bottom:562.401333pt;}
.ya2{bottom:572.833333pt;}
.y17{bottom:573.633333pt;}
.y41{bottom:575.214667pt;}
.y73{bottom:578.341333pt;}
.ya1{bottom:584.789333pt;}
.y16{bottom:586.917333pt;}
.y72{bottom:594.281333pt;}
.ya0{bottom:596.744000pt;}
.y15{bottom:600.201333pt;}
.y40{bottom:603.609333pt;}
.y9f{bottom:608.698667pt;}
.y71{bottom:610.222667pt;}
.y14{bottom:613.484000pt;}
.y3f{bottom:619.549333pt;}
.y9e{bottom:620.654667pt;}
.y13{bottom:626.768000pt;}
.y70{bottom:630.165333pt;}
.y3e{bottom:635.489333pt;}
.y12{bottom:640.052000pt;}
.y9d{bottom:640.200000pt;}
.y3d{bottom:651.429333pt;}
.y11{bottom:653.334667pt;}
.y6f{bottom:663.388000pt;}
.y9c{bottom:664.718667pt;}
.y10{bottom:666.618667pt;}
.y3c{bottom:667.844000pt;}
.y6e{bottom:676.670667pt;}
.yf{bottom:679.901333pt;}
.y9b{bottom:680.658667pt;}
.y3b{bottom:683.784000pt;}
.y6d{bottom:689.954667pt;}
.ye{bottom:693.185333pt;}
.y3a{bottom:699.724000pt;}
.y9a{bottom:700.602667pt;}
.y6c{bottom:703.237333pt;}
.yd{bottom:706.469333pt;}
.y39{bottom:715.664000pt;}
.y6b{bottom:716.521333pt;}
.yc{bottom:719.752000pt;}
.y99{bottom:725.121333pt;}
.y6a{bottom:729.805333pt;}
.y38{bottom:731.604000pt;}
.yb{bottom:733.036000pt;}
.y98{bottom:741.061333pt;}
.y69{bottom:743.088000pt;}
.ya{bottom:746.320000pt;}
.y37{bottom:747.545333pt;}
.y9{bottom:759.602667pt;}
.y97{bottom:761.005333pt;}
.y36{bottom:763.485333pt;}
.y8{bottom:772.886667pt;}
.y68{bottom:779.400000pt;}
.y96{bottom:785.524000pt;}
.y35{bottom:786.169333pt;}
.y7{bottom:786.170667pt;}
.y95{bottom:801.465333pt;}
.y94{bottom:817.405333pt;}
.y67{bottom:823.696000pt;}
.y93{bottom:833.345333pt;}
.y6{bottom:834.576000pt;}
.y66{bottom:835.652000pt;}
.y65{bottom:847.606667pt;}
.y92{bottom:849.285333pt;}
.y5{bottom:850.304000pt;}
.y64{bottom:859.561333pt;}
.y91{bottom:865.225333pt;}
.y4{bottom:866.032000pt;}
.y63{bottom:871.517333pt;}
.y3{bottom:881.948000pt;}
.y62{bottom:883.472000pt;}
.y90{bottom:885.169333pt;}
.y61{bottom:895.426667pt;}
.y60{bottom:907.382667pt;}
.y8f{bottom:909.688000pt;}
.y5f{bottom:919.337333pt;}
.y2{bottom:923.790667pt;}
.y8e{bottom:925.628000pt;}
.y5e{bottom:938.233333pt;}
.y8d{bottom:941.569333pt;}
.y8c{bottom:957.509333pt;}
.y1{bottom:960.985333pt;}
.y5d{bottom:965.497333pt;}
.y8b{bottom:977.452000pt;}
.y5c{bottom:977.453333pt;}
.h7{height:31.880400pt;}
.h6{height:33.187635pt;}
.h4{height:35.865600pt;}
.h5{height:37.087439pt;}
.h3{height:39.850400pt;}
.h2{height:41.147017pt;}
.h1{height:90.157771pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:65.285333pt;}
.x1{left:72.993333pt;}
.xa{left:77.369333pt;}
.x7{left:78.569333pt;}
.x16{left:91.852000pt;}
.x19{left:101.358667pt;}
.x14{left:107.877333pt;}
.x18{left:131.608000pt;}
.x2{left:149.480000pt;}
.x17{left:152.536000pt;}
.x15{left:176.376000pt;}
.x9{left:179.030667pt;}
.x13{left:209.568000pt;}
.x4{left:218.810667pt;}
.x3{left:304.380000pt;}
.x6{left:313.153333pt;}
.x5{left:356.729333pt;}
.xd{left:415.970667pt;}
.xc{left:429.253333pt;}
.x11{left:432.916000pt;}
.x10{left:434.420000pt;}
.x1a{left:435.594667pt;}
.x12{left:442.537333pt;}
.x1c{left:482.164000pt;}
.xf{left:489.350667pt;}
.xe{left:519.965333pt;}
.x1d{left:521.062667pt;}
.xb{left:522.032000pt;}
.x1b{left:531.182667pt;}
.x1e{left:544.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; }
  