
    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_7eea0ff08829c5da065c29d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_2900036c2716007065a912e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_2ad93778a60591950d592462.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_d8accd963daf86d414f168d1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_817a1991d0e098539f3f11d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_cdf519308bcab58113816f71.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-35.250000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.542000px;}
.ls4{letter-spacing:85.173031px;}
.ls3{letter-spacing:272.612497px;}
.ls5{letter-spacing:447.133088px;}
.ls1{letter-spacing:916.858064px;}
.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws5{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:-10.508889px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:296.820000px;}
.ws8{word-spacing:327.546582px;}
.ws7{word-spacing:350.897768px;}
.ws6{word-spacing:374.290953px;}
.ws9{word-spacing:383.656626px;}
.wsb{word-spacing:876.824843px;}
._25{margin-left:-7.295462px;}
._13{margin-left:-6.130476px;}
._0{margin-left:-5.049097px;}
._e{margin-left:-3.882907px;}
._1{margin-left:-2.845854px;}
._d{margin-left:-1.134053px;}
._5{width:1.226095px;}
._6{width:2.261850px;}
._3{width:3.439960px;}
._4{width:5.330048px;}
._7{width:6.727904px;}
._a{width:8.100000px;}
._f{width:9.471558px;}
._11{width:11.048442px;}
._22{width:12.436465px;}
._8{width:13.662000px;}
._b{width:15.984000px;}
._15{width:17.051429px;}
._9{width:18.241569px;}
._2{width:20.215694px;}
._16{width:22.226621px;}
._23{width:24.005689px;}
._1f{width:31.517944px;}
._17{width:67.323653px;}
._1a{width:73.455439px;}
._14{width:90.002745px;}
._1b{width:92.102789px;}
._19{width:110.750139px;}
._24{width:115.634163px;}
._10{width:117.018000px;}
._1c{width:157.494510px;}
._18{width:176.183859px;}
._21{width:190.332241px;}
._20{width:253.965147px;}
._1d{width:302.255778px;}
._26{width:306.251287px;}
._12{width:332.946601px;}
._1e{width:339.180177px;}
._c{width:536.437116px;}
.fc3{color:rgb(10,84,44);}
.fc5{color:transparent;}
.fc1{color:rgb(27,138,174);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y144{bottom:4.522734px;}
.y14c{bottom:4.528871px;}
.y143{bottom:22.481702px;}
.y14b{bottom:22.487857px;}
.y142{bottom:40.440690px;}
.y14a{bottom:40.440984px;}
.y23{bottom:43.541017px;}
.y22{bottom:57.093750px;}
.y141{bottom:58.393818px;}
.y149{bottom:58.399963px;}
.y21{bottom:70.652343px;}
.y140{bottom:76.352806px;}
.y148{bottom:76.353090px;}
.y50{bottom:87.129000px;}
.y76{bottom:91.904165px;}
.y13f{bottom:94.305933px;}
.y147{bottom:94.312076px;}
.ye0{bottom:95.783100px;}
.y117{bottom:96.967500px;}
.y77{bottom:97.453500px;}
.y24{bottom:97.917000px;}
.y110{bottom:98.390619px;}
.y82{bottom:102.222618px;}
.y4e{bottom:102.691304px;}
.y75{bottom:110.806514px;}
.y13e{bottom:112.264922px;}
.y146{bottom:112.265203px;}
.y96{bottom:113.917968px;}
.ydf{bottom:114.685449px;}
.y10f{bottom:117.292968px;}
.y81{bottom:121.124967px;}
.yb9{bottom:121.464720px;}
.y4d{bottom:121.593653px;}
.y74{bottom:129.708863px;}
.y13d{bottom:130.218041px;}
.y95{bottom:130.722656px;}
.yde{bottom:133.587798px;}
.y80{bottom:140.033175px;}
.yb8{bottom:140.367069px;}
.y4c{bottom:140.496002px;}
.y1f{bottom:146.841792px;}
.y94{bottom:147.521489px;}
.y10e{bottom:147.955079px;}
.y13c{bottom:148.177030px;}
.y73{bottom:148.617071px;}
.y7f{bottom:158.935524px;}
.yb7{bottom:159.269418px;}
.y4b{bottom:159.404210px;}
.y93{bottom:164.326177px;}
.y1e{bottom:165.744141px;}
.ydd{bottom:165.996006px;}
.y13b{bottom:166.130150px;}
.y72{bottom:167.519420px;}
.y100{bottom:170.208867px;}
.yb6{bottom:178.177626px;}
.y4a{bottom:178.306559px;}
.y13a{bottom:184.089139px;}
.y97{bottom:184.505859px;}
.ydc{bottom:184.898355px;}
.y71{bottom:186.421769px;}
.yff{bottom:189.117075px;}
.y92{bottom:194.443359px;}
.y1d{bottom:196.406250px;}
.yb5{bottom:197.079975px;}
.y49{bottom:197.208908px;}
.y86{bottom:200.935547px;}
.y139{bottom:202.042266px;}
.y10d{bottom:203.566350px;}
.ydb{bottom:203.800704px;}
.y70{bottom:205.329977px;}
.yfe{bottom:208.019424px;}
.yb4{bottom:215.988183px;}
.y48{bottom:216.117116px;}
.y85{bottom:217.740236px;}
.y138{bottom:220.001243px;}
.y10c{bottom:222.474558px;}
.yda{bottom:222.708912px;}
.y6f{bottom:224.232326px;}
.yfd{bottom:226.921773px;}
.y84{bottom:234.539068px;}
.yb3{bottom:234.890532px;}
.y137{bottom:237.954371px;}
.y10b{bottom:241.376907px;}
.yd9{bottom:241.611261px;}
.yfc{bottom:245.829981px;}
.y47{bottom:248.519465px;}
.y1c{bottom:252.023381px;}
.y87{bottom:254.718750px;}
.y136{bottom:255.913359px;}
.y6e{bottom:256.634675px;}
.yd8{bottom:260.513610px;}
.y83{bottom:264.656250px;}
.yfb{bottom:264.732330px;}
.yb2{bottom:267.292881px;}
.y46{bottom:267.421814px;}
.y1b{bottom:270.925729px;}
.y10a{bottom:273.779256px;}
.y135{bottom:273.866484px;}
.y6d{bottom:275.542883px;}
.yd7{bottom:279.421818px;}
.yfa{bottom:283.634679px;}
.yb1{bottom:286.201089px;}
.y45{bottom:286.330022px;}
.y1a{bottom:289.828078px;}
.y134{bottom:291.825467px;}
.y109{bottom:292.687464px;}
.y6c{bottom:294.445232px;}
.yb0{bottom:305.103438px;}
.y44{bottom:305.232371px;}
.y19{bottom:308.736287px;}
.y133{bottom:309.778588px;}
.yd6{bottom:311.824167px;}
.yf9{bottom:316.042887px;}
.yaf{bottom:324.005787px;}
.y43{bottom:324.134720px;}
.y108{bottom:325.089813px;}
.y6b{bottom:326.847581px;}
.y18{bottom:327.638635px;}
.y132{bottom:327.737576px;}
.yd5{bottom:330.726516px;}
.yf8{bottom:334.945236px;}
.yae{bottom:342.913995px;}
.y107{bottom:343.992162px;}
.y131{bottom:345.690699px;}
.y6a{bottom:345.755789px;}
.y17{bottom:346.540984px;}
.yd4{bottom:349.634724px;}
.yf7{bottom:353.847585px;}
.y42{bottom:356.542928px;}
.yad{bottom:361.816344px;}
.y106{bottom:362.900370px;}
.y130{bottom:363.649688px;}
.y69{bottom:364.658138px;}
.y16{bottom:365.449192px;}
.yd3{bottom:368.537073px;}
.y41{bottom:375.445277px;}
.yac{bottom:380.718693px;}
.y12f{bottom:381.602801px;}
.y105{bottom:381.802719px;}
.y68{bottom:383.560487px;}
.y15{bottom:384.351541px;}
.yf6{bottom:386.255793px;}
.yd2{bottom:387.445281px;}
.y40{bottom:394.347626px;}
.y12e{bottom:399.561789px;}
.y67{bottom:402.468694px;}
.y14{bottom:403.253890px;}
.yf5{bottom:405.158142px;}
.yd1{bottom:406.347630px;}
.yab{bottom:413.126901px;}
.y3f{bottom:413.255833px;}
.y104{bottom:414.205068px;}
.y12d{bottom:417.514916px;}
.y66{bottom:421.371044px;}
.y13{bottom:422.162098px;}
.yf4{bottom:424.060491px;}
.yd0{bottom:425.249979px;}
.yaa{bottom:432.029250px;}
.y3e{bottom:432.158183px;}
.y103{bottom:433.113276px;}
.y12c{bottom:435.473905px;}
.y65{bottom:440.279251px;}
.y12{bottom:441.064447px;}
.yf3{bottom:442.968699px;}
.ycf{bottom:444.158187px;}
.ya9{bottom:450.931599px;}
.y3d{bottom:451.060532px;}
.y102{bottom:452.015625px;}
.y12b{bottom:453.427028px;}
.y64{bottom:459.181601px;}
.y11{bottom:459.966796px;}
.yf2{bottom:461.871048px;}
.yce{bottom:463.060536px;}
.ya8{bottom:469.839807px;}
.y3c{bottom:469.968740px;}
.y12a{bottom:471.386007px;}
.y63{bottom:478.083950px;}
.yf1{bottom:480.779256px;}
.ycd{bottom:481.962885px;}
.y101{bottom:482.677734px;}
.ya7{bottom:488.742156px;}
.y3b{bottom:488.871089px;}
.y129{bottom:489.339134px;}
.y10{bottom:490.628907px;}
.y62{bottom:496.992157px;}
.yf0{bottom:499.681605px;}
.ycc{bottom:500.871093px;}
.y128{bottom:507.298123px;}
.ya6{bottom:507.644505px;}
.y3a{bottom:507.779286px;}
.y61{bottom:515.894507px;}
.yef{bottom:518.583954px;}
.y127{bottom:525.251241px;}
.ya5{bottom:526.552713px;}
.y39{bottom:526.681635px;}
.ycb{bottom:534.468745px;}
.yee{bottom:537.492162px;}
.y126{bottom:543.210229px;}
.ya4{bottom:545.455062px;}
.y38{bottom:545.583903px;}
.y60{bottom:548.296855px;}
.yca{bottom:549.181641px;}
.y115{bottom:550.136715px;}
.yed{bottom:556.394511px;}
.yf{bottom:559.740226px;}
.y125{bottom:561.163356px;}
.yc9{bottom:563.888667px;}
.y114{bottom:566.935547px;}
.y5f{bottom:567.205064px;}
.ye{bottom:576.550770px;}
.ya3{bottom:577.857411px;}
.y37{bottom:577.992111px;}
.y124{bottom:579.122338px;}
.y113{bottom:583.740236px;}
.yc8{bottom:586.476561px;}
.yec{bottom:588.796860px;}
.ya2{bottom:596.765619px;}
.y36{bottom:596.894460px;}
.y123{bottom:597.075465px;}
.yd{bottom:597.861320px;}
.y5e{bottom:599.607413px;}
.y112{bottom:600.544924px;}
.yc7{bottom:601.183587px;}
.yeb{bottom:607.705068px;}
.y122{bottom:615.034440px;}
.ya1{bottom:615.667898px;}
.y35{bottom:615.796809px;}
.yc6{bottom:615.896483px;}
.yc{bottom:619.171871px;}
.y116{bottom:620.718750px;}
.yea{bottom:626.607417px;}
.y111{bottom:630.662109px;}
.y5d{bottom:632.009761px;}
.y121{bottom:632.987568px;}
.ya0{bottom:634.576106px;}
.y34{bottom:634.705017px;}
.yc5{bottom:638.484377px;}
.yb{bottom:640.482421px;}
.ye9{bottom:645.509766px;}
.y5a{bottom:650.062361px;}
.y5c{bottom:650.917970px;}
.y120{bottom:650.946556px;}
.y33{bottom:653.607366px;}
.yc4{bottom:661.066402px;}
.y9f{bottom:666.978454px;}
.y11f{bottom:668.899683px;}
.y59{bottom:668.964710px;}
.y32{bottom:672.509715px;}
.yc3{bottom:675.779298px;}
.ye8{bottom:676.171875px;}
.y5b{bottom:681.574220px;}
.y11e{bottom:686.858669px;}
.y58{bottom:687.872918px;}
.ya{bottom:690.738285px;}
.y31{bottom:691.417923px;}
.yc2{bottom:698.361322px;}
.y9e{bottom:699.380803px;}
.y9{bottom:703.968750px;}
.y11d{bottom:704.811794px;}
.y57{bottom:706.775267px;}
.y30{bottom:710.320272px;}
.yc1{bottom:713.074218px;}
.y8{bottom:717.199214px;}
.y9d{bottom:718.289012px;}
.y11c{bottom:722.770782px;}
.y56{bottom:725.677616px;}
.y2f{bottom:729.222621px;}
.y7{bottom:730.435546px;}
.ye7{bottom:731.789012px;}
.yc0{bottom:735.656243px;}
.y91{bottom:737.191360px;}
.y11b{bottom:740.723900px;}
.y55{bottom:744.585824px;}
.y2e{bottom:748.130829px;}
.ybf{bottom:750.369138px;}
.ye6{bottom:750.691360px;}
.y6{bottom:751.394532px;}
.y20{bottom:755.894532px;}
.y90{bottom:756.093710px;}
.y11a{bottom:758.682889px;}
.y54{bottom:763.488173px;}
.y27{bottom:763.639635px;}
.y2d{bottom:767.033178px;}
.ye5{bottom:769.593710px;}
.ybe{bottom:772.957033px;}
.y8f{bottom:775.001917px;}
.y119{bottom:776.636016px;}
.y53{bottom:782.390522px;}
.y26{bottom:782.541984px;}
.y2c{bottom:785.935527px;}
.ybd{bottom:787.664059px;}
.ye4{bottom:788.501917px;}
.y5{bottom:793.705071px;}
.y8e{bottom:793.904267px;}
.y2b{bottom:804.843735px;}
.y9c{bottom:807.404267px;}
.y7e{bottom:807.404271px;}
.y145{bottom:809.268000px;}
.ybc{bottom:810.251953px;}
.y8d{bottom:812.806616px;}
.y25{bottom:813.204093px;}
.y118{bottom:814.153593px;}
.y52{bottom:814.798730px;}
.y78{bottom:823.376578px;}
.y2a{bottom:823.746084px;}
.ybb{bottom:824.958979px;}
.y9b{bottom:826.306616px;}
.y7d{bottom:826.306620px;}
.y4{bottom:831.263671px;}
.y8c{bottom:831.714823px;}
.y51{bottom:833.701079px;}
.yba{bottom:839.671875px;}
.y29{bottom:842.648433px;}
.y9a{bottom:845.214823px;}
.y7c{bottom:845.214828px;}
.y8b{bottom:850.617172px;}
.y28{bottom:861.556641px;}
.y99{bottom:864.117172px;}
.y7b{bottom:864.117177px;}
.y8a{bottom:869.519521px;}
.ye3{bottom:876.281252px;}
.y98{bottom:883.019521px;}
.y7a{bottom:883.019526px;}
.ye2{bottom:893.080084px;}
.y3{bottom:899.378907px;}
.y89{bottom:901.927730px;}
.y79{bottom:901.927734px;}
.ye1{bottom:914.384766px;}
.y88{bottom:920.830079px;}
.y2{bottom:939.451176px;}
.y1{bottom:955.212891px;}
.y4f{bottom:972.292968px;}
.h7{height:26.244141px;}
.h5{height:27.557629px;}
.h8{height:28.237913px;}
.h11{height:30.576083px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hf{height:35.391704px;}
.hb{height:35.857094px;}
.h13{height:37.399182px;}
.h14{height:37.399234px;}
.hd{height:39.313477px;}
.h2{height:39.366211px;}
.h10{height:39.366493px;}
.ha{height:39.366535px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h15{height:125.695500px;}
.h9{height:837.046500px;}
.he{height:837.510000px;}
.h12{height:837.996000px;}
.hc{height:847.834500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x12{left:11.596313px;}
.x13{left:45.000606px;}
.x3{left:78.662109px;}
.x8{left:83.900391px;}
.xc{left:87.287109px;}
.xa{left:89.683590px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:124.412109px;}
.xd{left:137.976562px;}
.x1{left:140.308593px;}
.x6{left:164.718750px;}
.xb{left:168.773438px;}
.x11{left:176.982439px;}
.x10{left:246.703138px;}
.x2{left:324.896484px;}
.xe{left:419.039069px;}
.xf{left:521.355483px;}
.x7{left:608.643310px;}
@media print{
.v1{vertical-align:-31.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:14.704000pt;}
.ls4{letter-spacing:75.709361pt;}
.ls3{letter-spacing:242.322220pt;}
.ls5{letter-spacing:397.451633pt;}
.ls1{letter-spacing:814.984946pt;}
.ws1{word-spacing:-18.781930pt;}
.ws5{word-spacing:-13.296000pt;}
.wsa{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:-9.341234pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:263.840000pt;}
.ws8{word-spacing:291.152518pt;}
.ws7{word-spacing:311.909127pt;}
.ws6{word-spacing:332.703069pt;}
.ws9{word-spacing:341.028112pt;}
.wsb{word-spacing:779.399860pt;}
._25{margin-left:-6.484855pt;}
._13{margin-left:-5.449312pt;}
._0{margin-left:-4.488086pt;}
._e{margin-left:-3.451473pt;}
._1{margin-left:-2.529648pt;}
._d{margin-left:-1.008047pt;}
._5{width:1.089862pt;}
._6{width:2.010533pt;}
._3{width:3.057742pt;}
._4{width:4.737820pt;}
._7{width:5.980359pt;}
._a{width:7.200000pt;}
._f{width:8.419163pt;}
._11{width:9.820837pt;}
._22{width:11.054636pt;}
._8{width:12.144000pt;}
._b{width:14.208000pt;}
._15{width:15.156826pt;}
._9{width:16.214728pt;}
._2{width:17.969505pt;}
._16{width:19.756996pt;}
._23{width:21.338390pt;}
._1f{width:28.015950pt;}
._17{width:59.843247pt;}
._1a{width:65.293724pt;}
._14{width:80.002440pt;}
._1b{width:81.869146pt;}
._19{width:98.444568pt;}
._24{width:102.785922pt;}
._10{width:104.016000pt;}
._1c{width:139.995120pt;}
._18{width:156.607874pt;}
._21{width:169.184215pt;}
._20{width:225.746798pt;}
._1d{width:268.671803pt;}
._26{width:272.223367pt;}
._12{width:295.952535pt;}
._1e{width:301.493490pt;}
._c{width:476.832992pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:4.020208pt;}
.y14c{bottom:4.025663pt;}
.y143{bottom:19.983735pt;}
.y14b{bottom:19.989206pt;}
.y142{bottom:35.947280pt;}
.y14a{bottom:35.947541pt;}
.y23{bottom:38.703126pt;}
.y22{bottom:50.750000pt;}
.y141{bottom:51.905616pt;}
.y149{bottom:51.911078pt;}
.y21{bottom:62.802083pt;}
.y140{bottom:67.869161pt;}
.y148{bottom:67.869413pt;}
.y50{bottom:77.448000pt;}
.y76{bottom:81.692591pt;}
.y13f{bottom:83.827496pt;}
.y147{bottom:83.832957pt;}
.ye0{bottom:85.140533pt;}
.y117{bottom:86.193333pt;}
.y77{bottom:86.625333pt;}
.y24{bottom:87.037333pt;}
.y110{bottom:87.458328pt;}
.y82{bottom:90.864549pt;}
.y4e{bottom:91.281159pt;}
.y75{bottom:98.494679pt;}
.y13e{bottom:99.791041pt;}
.y146{bottom:99.791292pt;}
.y96{bottom:101.260416pt;}
.ydf{bottom:101.942621pt;}
.y10f{bottom:104.260416pt;}
.y81{bottom:107.666637pt;}
.yb9{bottom:107.968640pt;}
.y4d{bottom:108.083247pt;}
.y74{bottom:115.296767pt;}
.y13d{bottom:115.749370pt;}
.y95{bottom:116.197917pt;}
.yde{bottom:118.744709pt;}
.y80{bottom:124.473933pt;}
.yb8{bottom:124.770728pt;}
.y4c{bottom:124.885335pt;}
.y1f{bottom:130.526037pt;}
.y94{bottom:131.130212pt;}
.y10e{bottom:131.515625pt;}
.y13c{bottom:131.712915pt;}
.y73{bottom:132.104063pt;}
.y7f{bottom:141.276021pt;}
.yb7{bottom:141.572816pt;}
.y4b{bottom:141.692631pt;}
.y93{bottom:146.067713pt;}
.y1e{bottom:147.328125pt;}
.ydd{bottom:147.552005pt;}
.y13b{bottom:147.671245pt;}
.y72{bottom:148.906151pt;}
.y100{bottom:151.296771pt;}
.yb6{bottom:158.380112pt;}
.y4a{bottom:158.494719pt;}
.y13a{bottom:163.634790pt;}
.y97{bottom:164.005208pt;}
.ydc{bottom:164.354093pt;}
.y71{bottom:165.708239pt;}
.yff{bottom:168.104067pt;}
.y92{bottom:172.838541pt;}
.y1d{bottom:174.583333pt;}
.yb5{bottom:175.182200pt;}
.y49{bottom:175.296807pt;}
.y86{bottom:178.609375pt;}
.y139{bottom:179.593125pt;}
.y10d{bottom:180.947867pt;}
.ydb{bottom:181.156181pt;}
.y70{bottom:182.515535pt;}
.yfe{bottom:184.906155pt;}
.yb4{bottom:191.989496pt;}
.y48{bottom:192.104103pt;}
.y85{bottom:193.546876pt;}
.y138{bottom:195.556661pt;}
.y10c{bottom:197.755163pt;}
.yda{bottom:197.963477pt;}
.y6f{bottom:199.317623pt;}
.yfd{bottom:201.708243pt;}
.y84{bottom:208.479172pt;}
.yb3{bottom:208.791584pt;}
.y137{bottom:211.514996pt;}
.y10b{bottom:214.557251pt;}
.yd9{bottom:214.765565pt;}
.yfc{bottom:218.515539pt;}
.y47{bottom:220.906191pt;}
.y1c{bottom:224.020783pt;}
.y87{bottom:226.416667pt;}
.y136{bottom:227.478541pt;}
.y6e{bottom:228.119711pt;}
.yd8{bottom:231.567653pt;}
.y83{bottom:235.250000pt;}
.yfb{bottom:235.317627pt;}
.yb2{bottom:237.593672pt;}
.y46{bottom:237.708279pt;}
.y1b{bottom:240.822871pt;}
.y10a{bottom:243.359339pt;}
.y135{bottom:243.436875pt;}
.y6d{bottom:244.927007pt;}
.yd7{bottom:248.374949pt;}
.yfa{bottom:252.119715pt;}
.yb1{bottom:254.400968pt;}
.y45{bottom:254.515575pt;}
.y1a{bottom:257.624959pt;}
.y134{bottom:259.400415pt;}
.y109{bottom:260.166635pt;}
.y6c{bottom:261.729095pt;}
.yb0{bottom:271.203056pt;}
.y44{bottom:271.317663pt;}
.y19{bottom:274.432255pt;}
.y133{bottom:275.358745pt;}
.yd6{bottom:277.177037pt;}
.yf9{bottom:280.927011pt;}
.yaf{bottom:288.005144pt;}
.y43{bottom:288.119751pt;}
.y108{bottom:288.968723pt;}
.y6b{bottom:290.531183pt;}
.y18{bottom:291.234343pt;}
.y132{bottom:291.322290pt;}
.yd5{bottom:293.979125pt;}
.yf8{bottom:297.729099pt;}
.yae{bottom:304.812440pt;}
.y107{bottom:305.770811pt;}
.y131{bottom:307.280621pt;}
.y6a{bottom:307.338479pt;}
.y17{bottom:308.036431pt;}
.yd4{bottom:310.786421pt;}
.yf7{bottom:314.531187pt;}
.y42{bottom:316.927047pt;}
.yad{bottom:321.614528pt;}
.y106{bottom:322.578107pt;}
.y130{bottom:323.244167pt;}
.y69{bottom:324.140567pt;}
.y16{bottom:324.843727pt;}
.yd3{bottom:327.588509pt;}
.y41{bottom:333.729135pt;}
.yac{bottom:338.416616pt;}
.y12f{bottom:339.202490pt;}
.y105{bottom:339.380195pt;}
.y68{bottom:340.942655pt;}
.y15{bottom:341.645815pt;}
.yf6{bottom:343.338483pt;}
.yd2{bottom:344.395805pt;}
.y40{bottom:350.531223pt;}
.y12e{bottom:355.166035pt;}
.y67{bottom:357.749951pt;}
.y14{bottom:358.447903pt;}
.yf5{bottom:360.140571pt;}
.yd1{bottom:361.197893pt;}
.yab{bottom:367.223912pt;}
.y3f{bottom:367.338519pt;}
.y104{bottom:368.182283pt;}
.y12d{bottom:371.124370pt;}
.y66{bottom:374.552039pt;}
.y13{bottom:375.255199pt;}
.yf4{bottom:376.942659pt;}
.yd0{bottom:377.999981pt;}
.yaa{bottom:384.026000pt;}
.y3e{bottom:384.140607pt;}
.y103{bottom:384.989579pt;}
.y12c{bottom:387.087915pt;}
.y65{bottom:391.359335pt;}
.y12{bottom:392.057287pt;}
.yf3{bottom:393.749955pt;}
.ycf{bottom:394.807277pt;}
.ya9{bottom:400.828088pt;}
.y3d{bottom:400.942695pt;}
.y102{bottom:401.791667pt;}
.y12b{bottom:403.046247pt;}
.y64{bottom:408.161423pt;}
.y11{bottom:408.859375pt;}
.yf2{bottom:410.552043pt;}
.yce{bottom:411.609365pt;}
.ya8{bottom:417.635384pt;}
.y3c{bottom:417.749991pt;}
.y12a{bottom:419.009784pt;}
.y63{bottom:424.963511pt;}
.yf1{bottom:427.359339pt;}
.ycd{bottom:428.411453pt;}
.y101{bottom:429.046875pt;}
.ya7{bottom:434.437472pt;}
.y3b{bottom:434.552079pt;}
.y129{bottom:434.968120pt;}
.y10{bottom:436.114584pt;}
.y62{bottom:441.770807pt;}
.yf0{bottom:444.161427pt;}
.ycc{bottom:445.218749pt;}
.y128{bottom:450.931665pt;}
.ya6{bottom:451.239560pt;}
.y3a{bottom:451.359365pt;}
.y61{bottom:458.572895pt;}
.yef{bottom:460.963515pt;}
.y127{bottom:466.889992pt;}
.ya5{bottom:468.046856pt;}
.y39{bottom:468.161453pt;}
.ycb{bottom:475.083329pt;}
.yee{bottom:477.770811pt;}
.y126{bottom:482.853537pt;}
.ya4{bottom:484.848944pt;}
.y38{bottom:484.963469pt;}
.y60{bottom:487.374983pt;}
.yca{bottom:488.161458pt;}
.y115{bottom:489.010413pt;}
.yed{bottom:494.572899pt;}
.yf{bottom:497.546867pt;}
.y125{bottom:498.811872pt;}
.yc9{bottom:501.234371pt;}
.y114{bottom:503.942709pt;}
.y5f{bottom:504.182279pt;}
.ye{bottom:512.489573pt;}
.ya3{bottom:513.651032pt;}
.y37{bottom:513.770765pt;}
.y124{bottom:514.775412pt;}
.y113{bottom:518.880210pt;}
.yc8{bottom:521.312499pt;}
.yec{bottom:523.374987pt;}
.ya2{bottom:530.458328pt;}
.y36{bottom:530.572853pt;}
.y123{bottom:530.733747pt;}
.yd{bottom:531.432285pt;}
.y5e{bottom:532.984367pt;}
.y112{bottom:533.817711pt;}
.yc7{bottom:534.385411pt;}
.yeb{bottom:540.182283pt;}
.y122{bottom:546.697280pt;}
.ya1{bottom:547.260353pt;}
.y35{bottom:547.374941pt;}
.yc6{bottom:547.463540pt;}
.yc{bottom:550.374996pt;}
.y116{bottom:551.750000pt;}
.yea{bottom:556.984371pt;}
.y111{bottom:560.588541pt;}
.y5d{bottom:561.786455pt;}
.y121{bottom:562.655616pt;}
.ya0{bottom:564.067649pt;}
.y34{bottom:564.182237pt;}
.yc5{bottom:567.541669pt;}
.yb{bottom:569.317708pt;}
.ye9{bottom:573.786459pt;}
.y5a{bottom:577.833209pt;}
.y5c{bottom:578.593751pt;}
.y120{bottom:578.619161pt;}
.y33{bottom:580.984325pt;}
.yc4{bottom:587.614579pt;}
.y9f{bottom:592.869737pt;}
.y11f{bottom:594.577496pt;}
.y59{bottom:594.635297pt;}
.y32{bottom:597.786413pt;}
.yc3{bottom:600.692709pt;}
.ye8{bottom:601.041667pt;}
.y5b{bottom:605.843751pt;}
.y11e{bottom:610.541039pt;}
.y58{bottom:611.442593pt;}
.ya{bottom:613.989587pt;}
.y31{bottom:614.593709pt;}
.yc2{bottom:620.765620pt;}
.y9e{bottom:621.671825pt;}
.y9{bottom:625.750000pt;}
.y11d{bottom:626.499372pt;}
.y57{bottom:628.244681pt;}
.y30{bottom:631.395797pt;}
.yc1{bottom:633.843749pt;}
.y8{bottom:637.510412pt;}
.y9d{bottom:638.479121pt;}
.y11c{bottom:642.462917pt;}
.y56{bottom:645.046769pt;}
.y2f{bottom:648.197885pt;}
.y7{bottom:649.276041pt;}
.ye7{bottom:650.479121pt;}
.yc0{bottom:653.916660pt;}
.y91{bottom:655.281209pt;}
.y11b{bottom:658.421245pt;}
.y55{bottom:661.854065pt;}
.y2e{bottom:665.005181pt;}
.ybf{bottom:666.994790pt;}
.ye6{bottom:667.281209pt;}
.y6{bottom:667.906251pt;}
.y20{bottom:671.906251pt;}
.y90{bottom:672.083297pt;}
.y11a{bottom:674.384790pt;}
.y54{bottom:678.656153pt;}
.y27{bottom:678.790787pt;}
.y2d{bottom:681.807269pt;}
.ye5{bottom:684.083297pt;}
.ybe{bottom:687.072918pt;}
.y8f{bottom:688.890593pt;}
.y119{bottom:690.343125pt;}
.y53{bottom:695.458241pt;}
.y26{bottom:695.592875pt;}
.y2c{bottom:698.609357pt;}
.ybd{bottom:700.145830pt;}
.ye4{bottom:700.890593pt;}
.y5{bottom:705.515618pt;}
.y8e{bottom:705.692681pt;}
.y2b{bottom:715.416653pt;}
.y9c{bottom:717.692681pt;}
.y7e{bottom:717.692685pt;}
.y145{bottom:719.349333pt;}
.ybc{bottom:720.223958pt;}
.y8d{bottom:722.494769pt;}
.y25{bottom:722.848083pt;}
.y118{bottom:723.692083pt;}
.y52{bottom:724.265537pt;}
.y78{bottom:731.890292pt;}
.y2a{bottom:732.218741pt;}
.ybb{bottom:733.296871pt;}
.y9b{bottom:734.494769pt;}
.y7d{bottom:734.494773pt;}
.y4{bottom:738.901041pt;}
.y8c{bottom:739.302065pt;}
.y51{bottom:741.067625pt;}
.yba{bottom:746.375000pt;}
.y29{bottom:749.020829pt;}
.y9a{bottom:751.302065pt;}
.y7c{bottom:751.302069pt;}
.y8b{bottom:756.104153pt;}
.y28{bottom:765.828125pt;}
.y99{bottom:768.104153pt;}
.y7b{bottom:768.104157pt;}
.y8a{bottom:772.906241pt;}
.ye3{bottom:778.916668pt;}
.y98{bottom:784.906241pt;}
.y7a{bottom:784.906245pt;}
.ye2{bottom:793.848964pt;}
.y3{bottom:799.447917pt;}
.y89{bottom:801.713537pt;}
.y79{bottom:801.713541pt;}
.ye1{bottom:812.786459pt;}
.y88{bottom:818.515625pt;}
.y2{bottom:835.067712pt;}
.y1{bottom:849.078125pt;}
.y4f{bottom:864.260416pt;}
.h7{height:23.328125pt;}
.h5{height:24.495670pt;}
.h8{height:25.100367pt;}
.h11{height:27.178740pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hf{height:31.459293pt;}
.hb{height:31.872972pt;}
.h13{height:33.243717pt;}
.h14{height:33.243764pt;}
.hd{height:34.945312pt;}
.h2{height:34.992188pt;}
.h10{height:34.992438pt;}
.ha{height:34.992476pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h15{height:111.729333pt;}
.h9{height:744.041333pt;}
.he{height:744.453333pt;}
.h12{height:744.885333pt;}
.hc{height:753.630667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x12{left:10.307833pt;}
.x13{left:40.000538pt;}
.x3{left:69.921875pt;}
.x8{left:74.578125pt;}
.xc{left:77.588541pt;}
.xa{left:79.718747pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:110.588541pt;}
.xd{left:122.645833pt;}
.x1{left:124.718749pt;}
.x6{left:146.416667pt;}
.xb{left:150.020833pt;}
.x11{left:157.317724pt;}
.x10{left:219.291678pt;}
.x2{left:288.796875pt;}
.xe{left:372.479173pt;}
.xf{left:463.427096pt;}
.x7{left:541.016276pt;}
}




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