
    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_e838feb5709efc99cf6568bd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_bb5f58699cda7c82f1a4a87a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_1551567d0c2ce8663946175d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_57e74409806ce5c3b7223f33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_1bfeea38dbb4992c940abef8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.985318;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_d8f656914fb94ed3e1365afc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_de69f68a27ebb365463ade63.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682129;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_be23e6eac9b4d21ee7d66acc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_cada6fd3450249e24e7f59f1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.753418;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_0d65346e7bb3058876611b22.woff')format("woff");}.ffc{font-family:ffc;line-height:0.860840;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_6ca44ae5f45258650b62902c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861328;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_bfe69879a1d812f01592079e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_e5b4123668f3e2db746074b0.woff')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.063360px;}
.ls0{letter-spacing:0.068862px;}
.lsc{letter-spacing:0.068906px;}
.ls6{letter-spacing:0.178740px;}
.ls7{letter-spacing:0.203820px;}
.ls2{letter-spacing:0.209232px;}
.ls1{letter-spacing:0.274574px;}
.ls5{letter-spacing:2.342879px;}
.ls4{letter-spacing:8.835296px;}
.lsb{letter-spacing:34.052206px;}
.lsa{letter-spacing:34.087306px;}
.ls9{letter-spacing:55.007378px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-46.439981px;}
.ws8{word-spacing:-18.068899px;}
.ws7{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.286568px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.374074px;}
.ws5{word-spacing:-13.505755px;}
.ws2{word-spacing:-13.147195px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-97.914943px;}
._2{margin-left:-8.590020px;}
._1{margin-left:-4.191630px;}
._8{margin-left:-2.488485px;}
._3{margin-left:-1.237605px;}
._0{width:1.152887px;}
._d{width:2.335368px;}
._c{width:3.466156px;}
._12{width:4.546649px;}
._11{width:5.869264px;}
._10{width:7.427636px;}
._9{width:9.378386px;}
._b{width:10.529051px;}
._a{width:11.819568px;}
._14{width:13.673581px;}
._13{width:14.795590px;}
._7{width:16.237776px;}
._17{width:19.116356px;}
._e{width:20.365387px;}
._15{width:23.223588px;}
._16{width:34.137334px;}
._f{width:35.834534px;}
._4{width:84.580166px;}
._18{width:108.413329px;}
._5{width:2575.504310px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fcd{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(248,49,47);}
.fc7{color:rgb(187,29,128);}
.fc8{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc9{color:rgb(0,32,96);}
.fcc{color:rgb(0,0,255);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs3{font-size:95.759962px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.239589px;}
.y38{bottom:3.599615px;}
.y16{bottom:3.599718px;}
.y13{bottom:4.319718px;}
.y9{bottom:4.499980px;}
.ya{bottom:28.259989px;}
.y8{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y88{bottom:142.739943px;}
.y36{bottom:146.879941px;}
.y64{bottom:147.599941px;}
.yd6{bottom:150.479940px;}
.y87{bottom:163.439935px;}
.y63{bottom:168.299933px;}
.yb0{bottom:169.739932px;}
.y35{bottom:170.999932px;}
.yd5{bottom:171.179932px;}
.y86{bottom:184.139926px;}
.yf5{bottom:184.499926px;}
.y62{bottom:190.439924px;}
.yd4{bottom:192.419923px;}
.yf4{bottom:205.199918px;}
.yaf{bottom:208.439917px;}
.y34{bottom:212.399915px;}
.yd3{bottom:216.719913px;}
.y85{bottom:223.739911px;}
.yf3{bottom:225.899910px;}
.yae{bottom:232.379907px;}
.y61{bottom:233.999906px;}
.y21{bottom:240.119904px;}
.yd2{bottom:240.299904px;}
.yf2{bottom:246.599901px;}
.y33{bottom:250.739900px;}
.yad{bottom:253.079899px;}
.yd1{bottom:260.999896px;}
.y84{bottom:265.499894px;}
.yf1{bottom:267.299893px;}
.yac{bottom:273.779890px;}
.y60{bottom:280.079888px;}
.yd0{bottom:281.699887px;}
.y83{bottom:286.199886px;}
.yf0{bottom:287.999885px;}
.yab{bottom:294.479882px;}
.y5f{bottom:302.039879px;}
.ycf{bottom:302.399879px;}
.y43{bottom:304.559878px;}
.y82{bottom:306.899877px;}
.yef{bottom:308.699877px;}
.yaa{bottom:315.179874px;}
.yce{bottom:323.099871px;}
.y5e{bottom:323.999870px;}
.y42{bottom:325.619870px;}
.y81{bottom:327.599869px;}
.yee{bottom:329.399868px;}
.ya9{bottom:335.879866px;}
.ycd{bottom:343.799862px;}
.y5d{bottom:344.699862px;}
.y41{bottom:346.679861px;}
.yed{bottom:350.099860px;}
.ya8{bottom:356.579857px;}
.ycc{bottom:364.499854px;}
.y5c{bottom:366.659853px;}
.y80{bottom:367.379853px;}
.y40{bottom:367.739853px;}
.yec{bottom:370.799852px;}
.y20{bottom:376.019850px;}
.ya7{bottom:377.279849px;}
.ycb{bottom:385.199846px;}
.y5b{bottom:387.539845px;}
.yeb{bottom:391.499843px;}
.ya6{bottom:397.979841px;}
.y7f{bottom:400.139840px;}
.yca{bottom:405.899838px;}
.yea{bottom:412.199835px;}
.y32{bottom:416.519833px;}
.ya5{bottom:418.679833px;}
.y7e{bottom:420.839832px;}
.yc9{bottom:426.599829px;}
.ye9{bottom:432.899827px;}
.y31{bottom:433.799826px;}
.y5a{bottom:439.019824px;}
.ya4{bottom:439.379824px;}
.y7d{bottom:441.539823px;}
.yc8{bottom:447.299821px;}
.y30{bottom:451.079820px;}
.ye8{bottom:453.599819px;}
.ya3{bottom:460.079816px;}
.y7c{bottom:462.239815px;}
.yc7{bottom:467.999813px;}
.y2f{bottom:468.359813px;}
.y59{bottom:473.039811px;}
.ye7{bottom:474.299810px;}
.ya2{bottom:480.779808px;}
.y1f{bottom:482.579807px;}
.y7b{bottom:482.939807px;}
.y2e{bottom:485.639806px;}
.yc6{bottom:488.699805px;}
.y58{bottom:493.739803px;}
.ye6{bottom:494.999802px;}
.ya1{bottom:501.479799px;}
.y2d{bottom:502.739799px;}
.y57{bottom:514.439794px;}
.y1e{bottom:515.339794px;}
.ye5{bottom:515.699794px;}
.y2c{bottom:520.019792px;}
.y7a{bottom:522.539791px;}
.ya0{bottom:522.719791px;}
.yc5{bottom:530.279788px;}
.y1d{bottom:533.519787px;}
.y56{bottom:535.139786px;}
.ye4{bottom:536.399785px;}
.y2b{bottom:537.299785px;}
.y9f{bottom:542.879783px;}
.y1c{bottom:551.339779px;}
.y2a{bottom:554.579778px;}
.y79{bottom:555.299778px;}
.y55{bottom:555.839778px;}
.ye3{bottom:557.099777px;}
.y9e{bottom:566.999773px;}
.y29{bottom:571.859771px;}
.yc4{bottom:572.039771px;}
.y78{bottom:575.999770px;}
.ye2{bottom:577.799769px;}
.y1b{bottom:583.919766px;}
.y28{bottom:589.139764px;}
.y9d{bottom:590.579764px;}
.yc3{bottom:592.739763px;}
.y77{bottom:596.699761px;}
.ye1{bottom:598.499761px;}
.y54{bottom:606.059758px;}
.y27{bottom:606.239758px;}
.y9c{bottom:611.279755px;}
.y1a{bottom:616.859753px;}
.ye0{bottom:619.199752px;}
.y26{bottom:623.519751px;}
.y53{bottom:630.539748px;}
.y9b{bottom:631.979747px;}
.yc2{bottom:634.319746px;}
.y76{bottom:636.479745px;}
.ydf{bottom:639.899744px;}
.y25{bottom:640.799744px;}
.y19{bottom:649.619740px;}
.y9a{bottom:652.679739px;}
.y24{bottom:658.079737px;}
.y75{bottom:660.239736px;}
.yde{bottom:660.599736px;}
.y18{bottom:667.799733px;}
.y52{bottom:672.299731px;}
.y99{bottom:673.379731px;}
.y22{bottom:673.559731px;}
.yf9{bottom:674.279730px;}
.y23{bottom:675.359730px;}
.yc1{bottom:676.079730px;}
.y74{bottom:680.939728px;}
.y98{bottom:694.619722px;}
.y51{bottom:696.059722px;}
.yc0{bottom:696.779721px;}
.y12{bottom:699.480000px;}
.y15{bottom:700.200000px;}
.ydd{bottom:702.719719px;}
.y73{bottom:702.899719px;}
.y14{bottom:703.979718px;}
.y17{bottom:705.419718px;}
.yf8{bottom:709.739716px;}
.ybf{bottom:717.479713px;}
.y97{bottom:718.199713px;}
.y72{bottom:724.859710px;}
.y50{bottom:734.759706px;}
.y96{bottom:738.899704px;}
.ybe{bottom:739.079704px;}
.y71{bottom:745.559702px;}
.y11{bottom:745.919702px;}
.y4f{bottom:758.699697px;}
.y95{bottom:759.599696px;}
.ybd{bottom:760.679696px;}
.yf7{bottom:767.159693px;}
.y70{bottom:767.519693px;}
.y10{bottom:769.319692px;}
.y94{bottom:780.299688px;}
.ydc{bottom:784.259686px;}
.ybc{bottom:784.979686px;}
.yf6{bottom:787.859685px;}
.y6f{bottom:788.399685px;}
.yf{bottom:790.019684px;}
.y4e{bottom:797.399681px;}
.y93{bottom:800.999680px;}
.ydb{bottom:804.959678px;}
.ybb{bottom:808.559677px;}
.y4d{bottom:821.159672px;}
.y92{bottom:821.699671px;}
.yda{bottom:825.659670px;}
.yba{bottom:829.079668px;}
.y6e{bottom:831.959667px;}
.ye{bottom:832.139667px;}
.y91{bottom:842.939663px;}
.yd9{bottom:846.359661px;}
.yb9{bottom:849.779660px;}
.yd{bottom:855.539658px;}
.y4c{bottom:860.039656px;}
.y90{bottom:866.519653px;}
.yd8{bottom:867.059653px;}
.yb8{bottom:870.479652px;}
.yc{bottom:876.239650px;}
.y6d{bottom:878.039649px;}
.y4b{bottom:883.799646px;}
.y8f{bottom:887.219645px;}
.yd7{bottom:888.299645px;}
.yb7{bottom:891.179644px;}
.y6c{bottom:899.999640px;}
.y8e{bottom:907.919637px;}
.yb6{bottom:911.879635px;}
.y6b{bottom:920.699632px;}
.y4a{bottom:922.679631px;}
.y8d{bottom:928.619629px;}
.yb5{bottom:932.579627px;}
.yb{bottom:933.119627px;}
.y6a{bottom:942.659623px;}
.y49{bottom:946.439621px;}
.y8c{bottom:949.319620px;}
.yb4{bottom:953.279619px;}
.y37{bottom:959.940000px;}
.y3e{bottom:964.259614px;}
.y69{bottom:964.799614px;}
.y48{bottom:967.139613px;}
.yb3{bottom:973.979610px;}
.y3d{bottom:985.319606px;}
.y47{bottom:987.839605px;}
.y68{bottom:988.379605px;}
.y8b{bottom:991.439603px;}
.yb2{bottom:994.679602px;}
.y3c{bottom:1006.379597px;}
.y46{bottom:1008.539597px;}
.y67{bottom:1013.939594px;}
.yb1{bottom:1015.379594px;}
.y3a{bottom:1023.840000px;}
.y45{bottom:1029.779588px;}
.y66{bottom:1033.559587px;}
.y8a{bottom:1036.079586px;}
.y39{bottom:1049.759580px;}
.y3f{bottom:1050.479580px;}
.y44{bottom:1053.899578px;}
.y65{bottom:1055.519578px;}
.y89{bottom:1056.779577px;}
.y4{bottom:1078.019569px;}
.y6{bottom:1107.179557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.440000px;}
.h15{height:16.740000px;}
.hd{height:19.260000px;}
.ha{height:20.160000px;}
.h5{height:20.340000px;}
.hc{height:35.991197px;}
.h4{height:36.703110px;}
.h11{height:38.759750px;}
.h10{height:39.313461px;}
.h12{height:39.830258px;}
.hf{height:40.297132px;}
.h14{height:40.793187px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.hb{height:44.149201px;}
.he{height:44.666701px;}
.h2{height:47.545293px;}
.h1b{height:48.796855px;}
.h8{height:50.027324px;}
.h1a{height:51.679667px;}
.h18{height:52.417948px;}
.h13{height:57.092321px;}
.h16{height:57.585914px;}
.h19{height:58.531969px;}
.h17{height:60.465210px;}
.h9{height:60.853020px;}
.h7{height:64.899818px;}
.h0{height:1188.000000px;}
.w4{width:3.600000px;}
.w2{width:5.040000px;}
.w7{width:8.280000px;}
.w1{width:9.720000px;}
.w6{width:14.400000px;}
.w5{width:33.840000px;}
.w3{width:58.500000px;}
.w8{width:255.780000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:99.899960px;}
.x15{left:104.039958px;}
.x1{left:107.999957px;}
.x26{left:111.779955px;}
.xb{left:112.859544px;}
.x7{left:114.119953px;}
.x17{left:116.459953px;}
.x14{left:119.879871px;}
.x13{left:122.939951px;}
.xc{left:124.380000px;}
.xa{left:130.859591px;}
.x25{left:134.999946px;}
.x8{left:158.400697px;}
.x24{left:161.999935px;}
.xd{left:182.880000px;}
.xe{left:186.480000px;}
.x5{left:208.259917px;}
.xf{left:220.319912px;}
.x10{left:223.019911px;}
.x18{left:242.459871px;}
.x1b{left:251.460000px;}
.x11{left:263.700000px;}
.x1a{left:284.039201px;}
.x12{left:286.192386px;}
.x23{left:294.119882px;}
.x2{left:302.579879px;}
.x1f{left:306.899877px;}
.x1c{left:315.539874px;}
.x19{left:338.039865px;}
.x9{left:369.539852px;}
.x6{left:374.939850px;}
.x1e{left:406.799837px;}
.x1d{left:414.540000px;}
.x20{left:428.039829px;}
.x21{left:524.159790px;}
.x3{left:691.919723px;}
.x22{left:739.259929px;}
.x4{left:804.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.056320pt;}
.ls0{letter-spacing:0.061211pt;}
.lsc{letter-spacing:0.061250pt;}
.ls6{letter-spacing:0.158880pt;}
.ls7{letter-spacing:0.181173pt;}
.ls2{letter-spacing:0.185984pt;}
.ls1{letter-spacing:0.244066pt;}
.ls5{letter-spacing:2.082559pt;}
.ls4{letter-spacing:7.853597pt;}
.lsb{letter-spacing:30.268628pt;}
.lsa{letter-spacing:30.299828pt;}
.ls9{letter-spacing:48.895447pt;}
.ws0{word-spacing:-41.279983pt;}
.ws8{word-spacing:-16.061243pt;}
.ws7{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.588060pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-12.776955pt;}
.ws5{word-spacing:-12.005115pt;}
.ws2{word-spacing:-11.686395pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-87.035505pt;}
._2{margin-left:-7.635573pt;}
._1{margin-left:-3.725894pt;}
._8{margin-left:-2.211987pt;}
._3{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._d{width:2.075883pt;}
._c{width:3.081028pt;}
._12{width:4.041466pt;}
._11{width:5.217123pt;}
._10{width:6.602343pt;}
._9{width:8.336343pt;}
._b{width:9.359157pt;}
._a{width:10.506283pt;}
._14{width:12.154294pt;}
._13{width:13.151636pt;}
._7{width:14.433579pt;}
._17{width:16.992317pt;}
._e{width:18.102566pt;}
._15{width:20.643189pt;}
._16{width:30.344297pt;}
._f{width:31.852919pt;}
._4{width:75.182370pt;}
._18{width:96.367403pt;}
._5{width:2289.337164pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs3{font-size:85.119966pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.879635pt;}
.y38{bottom:3.199657pt;}
.y16{bottom:3.199750pt;}
.y13{bottom:3.839750pt;}
.y9{bottom:3.999982pt;}
.ya{bottom:25.119990pt;}
.y8{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y88{bottom:126.879949pt;}
.y36{bottom:130.559948pt;}
.y64{bottom:131.199948pt;}
.yd6{bottom:133.759946pt;}
.y87{bottom:145.279942pt;}
.y63{bottom:149.599940pt;}
.yb0{bottom:150.879940pt;}
.y35{bottom:151.999939pt;}
.yd5{bottom:152.159939pt;}
.y86{bottom:163.679935pt;}
.yf5{bottom:163.999934pt;}
.y62{bottom:169.279932pt;}
.yd4{bottom:171.039932pt;}
.yf4{bottom:182.399927pt;}
.yaf{bottom:185.279926pt;}
.y34{bottom:188.799924pt;}
.yd3{bottom:192.639923pt;}
.y85{bottom:198.879920pt;}
.yf3{bottom:200.799920pt;}
.yae{bottom:206.559917pt;}
.y61{bottom:207.999917pt;}
.y21{bottom:213.439915pt;}
.yd2{bottom:213.599915pt;}
.yf2{bottom:219.199912pt;}
.y33{bottom:222.879911pt;}
.yad{bottom:224.959910pt;}
.yd1{bottom:231.999907pt;}
.y84{bottom:235.999906pt;}
.yf1{bottom:237.599905pt;}
.yac{bottom:243.359903pt;}
.y60{bottom:248.959900pt;}
.yd0{bottom:250.399900pt;}
.y83{bottom:254.399898pt;}
.yf0{bottom:255.999898pt;}
.yab{bottom:261.759895pt;}
.y5f{bottom:268.479893pt;}
.ycf{bottom:268.799892pt;}
.y43{bottom:270.719892pt;}
.y82{bottom:272.799891pt;}
.yef{bottom:274.399890pt;}
.yaa{bottom:280.159888pt;}
.yce{bottom:287.199885pt;}
.y5e{bottom:287.999885pt;}
.y42{bottom:289.439884pt;}
.y81{bottom:291.199884pt;}
.yee{bottom:292.799883pt;}
.ya9{bottom:298.559881pt;}
.ycd{bottom:305.599878pt;}
.y5d{bottom:306.399877pt;}
.y41{bottom:308.159877pt;}
.yed{bottom:311.199876pt;}
.ya8{bottom:316.959873pt;}
.ycc{bottom:323.999870pt;}
.y5c{bottom:325.919870pt;}
.y80{bottom:326.559869pt;}
.y40{bottom:326.879869pt;}
.yec{bottom:329.599868pt;}
.y20{bottom:334.239866pt;}
.ya7{bottom:335.359866pt;}
.ycb{bottom:342.399863pt;}
.y5b{bottom:344.479862pt;}
.yeb{bottom:347.999861pt;}
.ya6{bottom:353.759858pt;}
.y7f{bottom:355.679858pt;}
.yca{bottom:360.799856pt;}
.yea{bottom:366.399853pt;}
.y32{bottom:370.239852pt;}
.ya5{bottom:372.159851pt;}
.y7e{bottom:374.079850pt;}
.yc9{bottom:379.199848pt;}
.ye9{bottom:384.799846pt;}
.y31{bottom:385.599846pt;}
.y5a{bottom:390.239844pt;}
.ya4{bottom:390.559844pt;}
.y7d{bottom:392.479843pt;}
.yc8{bottom:397.599841pt;}
.y30{bottom:400.959840pt;}
.ye8{bottom:403.199839pt;}
.ya3{bottom:408.959836pt;}
.y7c{bottom:410.879836pt;}
.yc7{bottom:415.999834pt;}
.y2f{bottom:416.319833pt;}
.y59{bottom:420.479832pt;}
.ye7{bottom:421.599831pt;}
.ya2{bottom:427.359829pt;}
.y1f{bottom:428.959828pt;}
.y7b{bottom:429.279828pt;}
.y2e{bottom:431.679827pt;}
.yc6{bottom:434.399826pt;}
.y58{bottom:438.879824pt;}
.ye6{bottom:439.999824pt;}
.ya1{bottom:445.759822pt;}
.y2d{bottom:446.879821pt;}
.y57{bottom:457.279817pt;}
.y1e{bottom:458.079817pt;}
.ye5{bottom:458.399817pt;}
.y2c{bottom:462.239815pt;}
.y7a{bottom:464.479814pt;}
.ya0{bottom:464.639814pt;}
.yc5{bottom:471.359811pt;}
.y1d{bottom:474.239810pt;}
.y56{bottom:475.679810pt;}
.ye4{bottom:476.799809pt;}
.y2b{bottom:477.599809pt;}
.y9f{bottom:482.559807pt;}
.y1c{bottom:490.079804pt;}
.y2a{bottom:492.959803pt;}
.y79{bottom:493.599803pt;}
.y55{bottom:494.079802pt;}
.ye3{bottom:495.199802pt;}
.y9e{bottom:503.999798pt;}
.y29{bottom:508.319797pt;}
.yc4{bottom:508.479797pt;}
.y78{bottom:511.999795pt;}
.ye2{bottom:513.599795pt;}
.y1b{bottom:519.039792pt;}
.y28{bottom:523.679791pt;}
.y9d{bottom:524.959790pt;}
.yc3{bottom:526.879789pt;}
.y77{bottom:530.399788pt;}
.ye1{bottom:531.999787pt;}
.y54{bottom:538.719785pt;}
.y27{bottom:538.879784pt;}
.y9c{bottom:543.359783pt;}
.y1a{bottom:548.319781pt;}
.ye0{bottom:550.399780pt;}
.y26{bottom:554.239778pt;}
.y53{bottom:560.479776pt;}
.y9b{bottom:561.759775pt;}
.yc2{bottom:563.839774pt;}
.y76{bottom:565.759774pt;}
.ydf{bottom:568.799772pt;}
.y25{bottom:569.599772pt;}
.y19{bottom:577.439769pt;}
.y9a{bottom:580.159768pt;}
.y24{bottom:584.959766pt;}
.y75{bottom:586.879765pt;}
.yde{bottom:587.199765pt;}
.y18{bottom:593.599763pt;}
.y52{bottom:597.599761pt;}
.y99{bottom:598.559761pt;}
.y22{bottom:598.719761pt;}
.yf9{bottom:599.359760pt;}
.y23{bottom:600.319760pt;}
.yc1{bottom:600.959760pt;}
.y74{bottom:605.279758pt;}
.y98{bottom:617.439753pt;}
.y51{bottom:618.719753pt;}
.yc0{bottom:619.359752pt;}
.y12{bottom:621.760000pt;}
.y15{bottom:622.400000pt;}
.ydd{bottom:624.639750pt;}
.y73{bottom:624.799750pt;}
.y14{bottom:625.759750pt;}
.y17{bottom:627.039749pt;}
.yf8{bottom:630.879748pt;}
.ybf{bottom:637.759745pt;}
.y97{bottom:638.399745pt;}
.y72{bottom:644.319742pt;}
.y50{bottom:653.119739pt;}
.y96{bottom:656.799737pt;}
.ybe{bottom:656.959737pt;}
.y71{bottom:662.719735pt;}
.y11{bottom:663.039735pt;}
.y4f{bottom:674.399730pt;}
.y95{bottom:675.199730pt;}
.ybd{bottom:676.159730pt;}
.yf7{bottom:681.919727pt;}
.y70{bottom:682.239727pt;}
.y10{bottom:683.839726pt;}
.y94{bottom:693.599723pt;}
.ydc{bottom:697.119721pt;}
.ybc{bottom:697.759721pt;}
.yf6{bottom:700.319720pt;}
.y6f{bottom:700.799720pt;}
.yf{bottom:702.239719pt;}
.y4e{bottom:708.799716pt;}
.y93{bottom:711.999715pt;}
.ydb{bottom:715.519714pt;}
.ybb{bottom:718.719713pt;}
.y4d{bottom:729.919708pt;}
.y92{bottom:730.399708pt;}
.yda{bottom:733.919706pt;}
.yba{bottom:736.959705pt;}
.y6e{bottom:739.519704pt;}
.ye{bottom:739.679704pt;}
.y91{bottom:749.279700pt;}
.yd9{bottom:752.319699pt;}
.yb9{bottom:755.359698pt;}
.yd{bottom:760.479696pt;}
.y4c{bottom:764.479694pt;}
.y90{bottom:770.239692pt;}
.yd8{bottom:770.719692pt;}
.yb8{bottom:773.759690pt;}
.yc{bottom:778.879688pt;}
.y6d{bottom:780.479688pt;}
.y4b{bottom:785.599686pt;}
.y8f{bottom:788.639685pt;}
.yd7{bottom:789.599684pt;}
.yb7{bottom:792.159683pt;}
.y6c{bottom:799.999680pt;}
.y8e{bottom:807.039677pt;}
.yb6{bottom:810.559676pt;}
.y6b{bottom:818.399673pt;}
.y4a{bottom:820.159672pt;}
.y8d{bottom:825.439670pt;}
.yb5{bottom:828.959668pt;}
.yb{bottom:829.439668pt;}
.y6a{bottom:837.919665pt;}
.y49{bottom:841.279663pt;}
.y8c{bottom:843.839662pt;}
.yb4{bottom:847.359661pt;}
.y37{bottom:853.280000pt;}
.y3e{bottom:857.119657pt;}
.y69{bottom:857.599657pt;}
.y48{bottom:859.679656pt;}
.yb3{bottom:865.759654pt;}
.y3d{bottom:875.839650pt;}
.y47{bottom:878.079649pt;}
.y68{bottom:878.559649pt;}
.y8b{bottom:881.279647pt;}
.yb2{bottom:884.159646pt;}
.y3c{bottom:894.559642pt;}
.y46{bottom:896.479641pt;}
.y67{bottom:901.279639pt;}
.yb1{bottom:902.559639pt;}
.y3a{bottom:910.080000pt;}
.y45{bottom:915.359634pt;}
.y66{bottom:918.719633pt;}
.y8a{bottom:920.959632pt;}
.y39{bottom:933.119627pt;}
.y3f{bottom:933.759626pt;}
.y44{bottom:936.799625pt;}
.y65{bottom:938.239625pt;}
.y89{bottom:939.359624pt;}
.y4{bottom:958.239617pt;}
.y6{bottom:984.159606pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:1.280000pt;}
.h15{height:14.880000pt;}
.hd{height:17.120000pt;}
.ha{height:17.920000pt;}
.h5{height:18.080000pt;}
.hc{height:31.992175pt;}
.h4{height:32.624987pt;}
.h11{height:34.453111pt;}
.h10{height:34.945299pt;}
.h12{height:35.404673pt;}
.hf{height:35.819673pt;}
.h14{height:36.260610pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.hb{height:39.243734pt;}
.he{height:39.703734pt;}
.h2{height:42.262483pt;}
.h1b{height:43.374983pt;}
.h8{height:44.468732pt;}
.h1a{height:45.937482pt;}
.h18{height:46.593731pt;}
.h13{height:50.748730pt;}
.h16{height:51.187480pt;}
.h19{height:52.028417pt;}
.h17{height:53.746854pt;}
.h9{height:54.091573pt;}
.h7{height:57.688727pt;}
.h0{height:1056.000000pt;}
.w4{width:3.200000pt;}
.w2{width:4.480000pt;}
.w7{width:7.360000pt;}
.w1{width:8.640000pt;}
.w6{width:12.800000pt;}
.w5{width:30.080000pt;}
.w3{width:52.000000pt;}
.w8{width:227.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:88.799964pt;}
.x15{left:92.479963pt;}
.x1{left:95.999962pt;}
.x26{left:99.359960pt;}
.xb{left:100.319594pt;}
.x7{left:101.439958pt;}
.x17{left:103.519959pt;}
.x14{left:106.559886pt;}
.x13{left:109.279956pt;}
.xc{left:110.560000pt;}
.xa{left:116.319636pt;}
.x25{left:119.999952pt;}
.x8{left:140.800620pt;}
.x24{left:143.999942pt;}
.xd{left:162.560000pt;}
.xe{left:165.760000pt;}
.x5{left:185.119926pt;}
.xf{left:195.839922pt;}
.x10{left:198.239921pt;}
.x18{left:215.519886pt;}
.x1b{left:223.520000pt;}
.x11{left:234.400000pt;}
.x1a{left:252.479290pt;}
.x12{left:254.393232pt;}
.x23{left:261.439895pt;}
.x2{left:268.959892pt;}
.x1f{left:272.799891pt;}
.x1c{left:280.479888pt;}
.x19{left:300.479880pt;}
.x9{left:328.479869pt;}
.x6{left:333.279867pt;}
.x1e{left:361.599855pt;}
.x1d{left:368.480000pt;}
.x20{left:380.479848pt;}
.x21{left:465.919814pt;}
.x3{left:615.039754pt;}
.x22{left:657.119937pt;}
.x4{left:715.200000pt;}
}




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