
    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_3ac76caa0fcb7a300fa53698.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050293;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_5bf5c185d0b552fd3e485614.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d73164abced224308d6880aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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);}
.v2{vertical-align:-49.679901px;}
.v1{vertical-align:-8.639924px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.079955px;}
.v3{vertical-align:49.679901px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005847px;}
.ls1{letter-spacing:0.569885px;}
.ls4{letter-spacing:0.570019px;}
.ls2{letter-spacing:150.063089px;}
.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;}
}
.ws3{word-spacing:-15.536925px;}
.ws0{word-spacing:-14.017050px;}
.ws2{word-spacing:-11.314913px;}
.ws4{word-spacing:-9.795015px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-2.371496px;}
._1{margin-left:-1.114274px;}
._0{width:1.195344px;}
._2{width:2.323352px;}
._3{width:3.407685px;}
._6{width:4.769165px;}
._5{width:6.148724px;}
._9{width:7.557528px;}
._a{width:8.959222px;}
._4{width:10.915161px;}
._14{width:12.667692px;}
._b{width:13.672494px;}
._10{width:17.148381px;}
._11{width:18.431420px;}
._8{width:19.856705px;}
._7{width:21.054218px;}
._e{width:22.100290px;}
._f{width:23.212066px;}
._15{width:24.305805px;}
._16{width:25.442315px;}
._c{width:27.077475px;}
._d{width:28.195136px;}
._13{width:29.615577px;}
._17{width:31.438170px;}
._19{width:38.280055px;}
._2c{width:70.226901px;}
._23{width:87.628257px;}
._18{width:91.435326px;}
._2a{width:107.386841px;}
._2b{width:113.730291px;}
._1b{width:118.702107px;}
._29{width:121.188015px;}
._20{width:125.538354px;}
._1e{width:156.612204px;}
._21{width:178.043693px;}
._22{width:186.430219px;}
._1f{width:196.386732px;}
._27{width:210.059226px;}
._1a{width:234.918306px;}
._1c{width:236.898050px;}
._26{width:253.562616px;}
._24{width:257.975103px;}
._1d{width:270.342495px;}
._2d{width:295.823052px;}
._28{width:319.760919px;}
._2e{width:477.352800px;}
._25{width:501.531939px;}
._31{width:526.857741px;}
._32{width:567.908090px;}
._2f{width:1697.279163px;}
._30{width:1738.830399px;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(16,185,129);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.180060px;}
.fs5{font-size:45.259650px;}
.fs4{font-size:56.068200px;}
.fs2{font-size:62.147700px;}
.fs0{font-size:67.551750px;}
.fs3{font-size:79.035746px;}
.fs1{font-size:89.843850px;}
.ycc{bottom:-9.179988px;}
.y0{bottom:0.000000px;}
.yd0{bottom:1.979994px;}
.yd8{bottom:3.060001px;}
.yd5{bottom:3.419975px;}
.yd3{bottom:3.780001px;}
.y3{bottom:55.259994px;}
.y2{bottom:74.700027px;}
.y90{bottom:115.559967px;}
.ya2{bottom:121.139992px;}
.yf0{bottom:133.200027px;}
.y8f{bottom:133.379998px;}
.y13c{bottom:135.899986px;}
.y5e{bottom:138.960022px;}
.y2e{bottom:140.220017px;}
.yef{bottom:151.019989px;}
.y8e{bottom:151.200027px;}
.yc7{bottom:152.100013px;}
.y5d{bottom:156.960022px;}
.y2d{bottom:158.039977px;}
.y8d{bottom:169.019989px;}
.y5c{bottom:174.600013px;}
.y13b{bottom:174.779983px;}
.y12a{bottom:174.960022px;}
.y8c{bottom:186.840019px;}
.yee{bottom:190.080025px;}
.yc6{bottom:190.980011px;}
.y5b{bottom:192.600013px;}
.y129{bottom:192.779983px;}
.y2c{bottom:197.100013px;}
.y8b{bottom:204.840019px;}
.yc5{bottom:208.799973px;}
.y5a{bottom:210.419975px;}
.y128{bottom:210.779983px;}
.y2b{bottom:214.919975px;}
.y8a{bottom:222.480011px;}
.yc4{bottom:226.799973px;}
.y59{bottom:228.059967px;}
.yed{bottom:228.960022px;}
.y13a{bottom:231.659981px;}
.y2a{bottom:232.740006px;}
.y89{bottom:240.299973px;}
.yc3{bottom:244.620002px;}
.y58{bottom:246.059967px;}
.y127{bottom:249.659981px;}
.y29{bottom:250.559967px;}
.y88{bottom:258.299973px;}
.y57{bottom:263.879998px;}
.y126{bottom:267.299973px;}
.yec{bottom:268.019989px;}
.y28{bottom:268.379998px;}
.y87{bottom:275.940033px;}
.y56{bottom:281.700027px;}
.yc2{bottom:283.679970px;}
.y27{bottom:286.379998px;}
.y86{bottom:293.940033px;}
.y55{bottom:299.519989px;}
.yc1{bottom:303.659981px;}
.y26{bottom:304.019989px;}
.y139{bottom:306.360008px;}
.y125{bottom:306.539977px;}
.yeb{bottom:306.899986px;}
.ya1{bottom:310.139992px;}
.y85{bottom:311.759994px;}
.y54{bottom:317.340019px;}
.y25{bottom:321.840019px;}
.yc0{bottom:323.639992px;}
.y124{bottom:324.179970px;}
.y84{bottom:329.399986px;}
.y53{bottom:335.159981px;}
.y24{bottom:339.840019px;}
.y123{bottom:342.179970px;}
.ybf{bottom:343.620002px;}
.yea{bottom:345.960022px;}
.y83{bottom:347.399986px;}
.ya0{bottom:350.639992px;}
.y52{bottom:352.980011px;}
.y23{bottom:357.480011px;}
.y138{bottom:363.059967px;}
.ybe{bottom:363.600013px;}
.y9f{bottom:368.639992px;}
.y51{bottom:370.980011px;}
.y22{bottom:375.480011px;}
.y122{bottom:381.059967px;}
.ybd{bottom:383.580025px;}
.ye9{bottom:385.019989px;}
.y82{bottom:386.279983px;}
.y50{bottom:388.620002px;}
.y21{bottom:393.299973px;}
.y121{bottom:398.879998px;}
.ybc{bottom:403.740006px;}
.y81{bottom:404.279983px;}
.y4f{bottom:406.440033px;}
.y20{bottom:411.120002px;}
.y80{bottom:422.100013px;}
.ybb{bottom:423.720017px;}
.ye8{bottom:423.899986px;}
.y10e{bottom:424.440033px;}
.y1f{bottom:428.940033px;}
.y137{bottom:437.759994px;}
.y120{bottom:437.940033px;}
.y7f{bottom:439.919975px;}
.y10d{bottom:442.080025px;}
.yba{bottom:443.700027px;}
.y4e{bottom:445.500000px;}
.y1e{bottom:446.759994px;}
.y11f{bottom:455.759994px;}
.y7e{bottom:457.740006px;}
.y10c{bottom:460.080025px;}
.ye7{bottom:462.960022px;}
.y4d{bottom:463.320030px;}
.yb9{bottom:463.860008px;}
.y136{bottom:473.399986px;}
.y7d{bottom:475.559967px;}
.y10b{bottom:477.899986px;}
.y9e{bottom:478.799973px;}
.y1d{bottom:480.419975px;}
.y4c{bottom:481.320030px;}
.yb8{bottom:483.840019px;}
.y7c{bottom:493.379998px;}
.y11e{bottom:494.820030px;}
.y10a{bottom:495.539977px;}
.y9d{bottom:496.620002px;}
.y1c{bottom:498.419975px;}
.y4b{bottom:498.960022px;}
.ye6{bottom:501.840019px;}
.yb7{bottom:503.820030px;}
.y7b{bottom:511.200027px;}
.y11d{bottom:512.460022px;}
.y109{bottom:513.539977px;}
.y9c{bottom:514.620002px;}
.y1b{bottom:516.059967px;}
.y4a{bottom:516.779983px;}
.yb6{bottom:523.799973px;}
.y7a{bottom:529.200027px;}
.y135{bottom:530.279983px;}
.y108{bottom:531.360008px;}
.y9b{bottom:532.259994px;}
.y1a{bottom:534.059967px;}
.y49{bottom:534.779983px;}
.ye5{bottom:540.720017px;}
.yb5{bottom:543.779983px;}
.y134{bottom:548.100013px;}
.yf1{bottom:549.000000px;}
.y107{bottom:549.179970px;}
.y9a{bottom:550.259994px;}
.y11c{bottom:551.519989px;}
.y19{bottom:551.879998px;}
.y48{bottom:552.419975px;}
.yb4{bottom:563.759994px;}
.y106{bottom:567.000000px;}
.y79{bottom:568.080025px;}
.y11b{bottom:569.340019px;}
.y18{bottom:569.700027px;}
.y47{bottom:570.419975px;}
.ye4{bottom:579.960022px;}
.yb3{bottom:583.919975px;}
.y105{bottom:585.000000px;}
.y78{bottom:585.899986px;}
.y133{bottom:587.159981px;}
.y17{bottom:587.519989px;}
.ye3{bottom:597.600013px;}
.y104{bottom:602.820030px;}
.y77{bottom:603.720017px;}
.yb2{bottom:603.899986px;}
.y132{bottom:604.980011px;}
.y16{bottom:605.340019px;}
.y11a{bottom:608.399986px;}
.y46{bottom:609.299973px;}
.ye2{bottom:615.600013px;}
.y103{bottom:620.459988px;}
.y76{bottom:621.540012px;}
.y15{bottom:623.160015px;}
.y119{bottom:626.220017px;}
.y45{bottom:627.300007px;}
.yb0{bottom:629.459988px;}
.yaf{bottom:632.879998px;}
.ye1{bottom:635.040012px;}
.y102{bottom:638.459988px;}
.y75{bottom:639.360008px;}
.y131{bottom:644.040012px;}
.y44{bottom:645.120002px;}
.yae{bottom:650.699993px;}
.y14{bottom:651.600013px;}
.ye0{bottom:654.480011px;}
.yb1{bottom:656.100013px;}
.y101{bottom:656.279983px;}
.y74{bottom:657.180004px;}
.y130{bottom:661.860008px;}
.y43{bottom:662.759994px;}
.y118{bottom:665.100013px;}
.yad{bottom:668.519989px;}
.y13{bottom:671.040012px;}
.y100{bottom:674.100013px;}
.y73{bottom:675.000000px;}
.y42{bottom:680.759994px;}
.y117{bottom:682.920010px;}
.y12{bottom:690.480011px;}
.yff{bottom:691.920010px;}
.y72{bottom:693.000000px;}
.ydf{bottom:695.160015px;}
.y41{bottom:698.579990px;}
.y12f{bottom:700.740006px;}
.yac{bottom:708.120002px;}
.yfe{bottom:709.740006px;}
.y11{bottom:709.920010px;}
.y71{bottom:710.639992px;}
.yde{bottom:712.800007px;}
.y40{bottom:716.399986px;}
.y12e{bottom:718.560001px;}
.y116{bottom:721.980011px;}
.y99{bottom:728.639992px;}
.y10{bottom:729.540012px;}
.ydd{bottom:730.620002px;}
.y3f{bottom:734.220017px;}
.yfd{bottom:738.180004px;}
.y115{bottom:739.800007px;}
.y98{bottom:746.459988px;}
.yab{bottom:747.180004px;}
.ydc{bottom:748.620002px;}
.y70{bottom:749.699993px;}
.y12d{bottom:757.620002px;}
.y114{bottom:757.800007px;}
.y97{bottom:764.100013px;}
.yaa{bottom:765.000000px;}
.y6f{bottom:767.519989px;}
.yf{bottom:769.860008px;}
.y3e{bottom:773.100013px;}
.y12c{bottom:775.439999px;}
.yfc{bottom:778.680004px;}
.y96{bottom:782.100013px;}
.ya9{bottom:782.819995px;}
.y6e{bottom:785.339985px;}
.ye{bottom:786.060001px;}
.ydb{bottom:787.500000px;}
.y3d{bottom:791.100013px;}
.y12b{bottom:793.259994px;}
.yfb{bottom:796.680004px;}
.y95{bottom:799.920010px;}
.ya8{bottom:800.639992px;}
.yd{bottom:802.439999px;}
.y6d{bottom:803.160015px;}
.y3c{bottom:808.740006px;}
.yda{bottom:811.439999px;}
.yfa{bottom:814.319995px;}
.y113{bottom:814.500000px;}
.ya7{bottom:818.459988px;}
.y6c{bottom:820.980011px;}
.y3b{bottom:826.740006px;}
.yc{bottom:829.079990px;}
.yf9{bottom:832.319995px;}
.yd9{bottom:833.759994px;}
.y6b{bottom:838.980011px;}
.y3a{bottom:844.560001px;}
.yb{bottom:845.279983px;}
.ya6{bottom:847.079990px;}
.yd7{bottom:848.339985px;}
.yf8{bottom:850.139992px;}
.y112{bottom:853.560001px;}
.y6a{bottom:856.620002px;}
.ya{bottom:861.300007px;}
.y39{bottom:862.199993px;}
.ya5{bottom:866.519989px;}
.yf7{bottom:867.779983px;}
.y111{bottom:871.199993px;}
.yd6{bottom:873.540012px;}
.y69{bottom:874.620002px;}
.y38{bottom:880.199993px;}
.ya4{bottom:885.959988px;}
.yd4{bottom:888.480011px;}
.y68{bottom:892.439999px;}
.y9{bottom:901.259994px;}
.ya3{bottom:905.400003px;}
.yf6{bottom:907.020006px;}
.y67{bottom:910.080008px;}
.yd2{bottom:910.259994px;}
.yd1{bottom:914.039995px;}
.y37{bottom:919.080008px;}
.y8{bottom:924.120002px;}
.yf5{bottom:924.659998px;}
.y94{bottom:928.080008px;}
.y110{bottom:928.259994px;}
.ycf{bottom:928.800007px;}
.y36{bottom:937.080008px;}
.yf4{bottom:942.659998px;}
.ycb{bottom:945.539995px;}
.y93{bottom:945.900003px;}
.y7{bottom:946.800007px;}
.y10f{bottom:947.699993px;}
.y66{bottom:949.319996px;}
.y35{bottom:954.900003px;}
.yce{bottom:957.599997px;}
.y92{bottom:963.719999px;}
.y65{bottom:966.960004px;}
.y34{bottom:972.539995px;}
.yca{bottom:972.900003px;}
.ycd{bottom:975.419992px;}
.y91{bottom:981.539995px;}
.y64{bottom:984.960004px;}
.y33{bottom:990.539996px;}
.yc8{bottom:996.300007px;}
.yf3{bottom:999.360008px;}
.y63{bottom:1002.780001px;}
.y32{bottom:1008.360008px;}
.yc9{bottom:1015.740006px;}
.yf2{bottom:1017.360008px;}
.y6{bottom:1017.900003px;}
.y62{bottom:1020.419992px;}
.y31{bottom:1026.180004px;}
.y61{bottom:1038.419992px;}
.y5{bottom:1041.659998px;}
.y30{bottom:1044.000000px;}
.y60{bottom:1056.239997px;}
.y4{bottom:1067.219999px;}
.y2f{bottom:1072.620002px;}
.y5f{bottom:1074.060001px;}
.y1{bottom:1123.020002px;}
.ha{height:4.680003px;}
.hb{height:15.839985px;}
.he{height:16.920009px;}
.hd{height:17.279983px;}
.hc{height:17.640009px;}
.h6{height:40.983445px;}
.h5{height:43.849329px;}
.h7{height:46.787380px;}
.h8{height:47.662245px;}
.h3{height:51.860556px;}
.h4{height:55.764967px;}
.h1{height:56.370088px;}
.h9{height:61.940511px;}
.h2{height:63.390802px;}
.h0{height:1188.000000px;}
.w14{width:3.959953px;}
.we{width:5.220017px;}
.w2{width:5.759994px;}
.w9{width:6.300007px;}
.w15{width:7.019989px;}
.w12{width:7.020006px;}
.w3{width:7.919975px;}
.w6{width:7.920009px;}
.wc{width:7.920044px;}
.w11{width:32.759996px;}
.w10{width:34.019989px;}
.wb{width:34.919975px;}
.wa{width:34.920009px;}
.w8{width:34.920010px;}
.w5{width:35.459988px;}
.w4{width:35.460021px;}
.w1{width:35.460022px;}
.wf{width:39.599997px;}
.w13{width:42.659981px;}
.w7{width:44.099997px;}
.wd{width:57.779983px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:138.780001px;}
.x7{left:145.979994px;}
.x29{left:150.300007px;}
.x14{left:151.919992px;}
.x16{left:164.520006px;}
.xf{left:187.919992px;}
.x6{left:191.159998px;}
.x3{left:197.639992px;}
.x25{left:203.939999px;}
.x20{left:208.439999px;}
.x10{left:240.840002px;}
.xa{left:268.020006px;}
.x24{left:283.319996px;}
.x4{left:292.860008px;}
.x2b{left:306.180005px;}
.x5{left:309.600013px;}
.x18{left:329.040012px;}
.xc{left:331.379998px;}
.x8{left:337.500000px;}
.x17{left:340.019989px;}
.xe{left:344.339985px;}
.xd{left:357.839985px;}
.x2a{left:363.240006px;}
.x19{left:375.480011px;}
.x11{left:388.439999px;}
.x1a{left:409.139992px;}
.x9{left:415.439999px;}
.x15{left:420.660015px;}
.x2{left:442.439999px;}
.x1b{left:444.420010px;}
.xb{left:458.459988px;}
.x12{left:475.560001px;}
.x1c{left:509.939999px;}
.x13{left:534.060001px;}
.x1d{left:541.980011px;}
.x21{left:576.720017px;}
.x27{left:584.639992px;}
.x1e{left:598.320030px;}
.x28{left:602.100014px;}
.x22{left:606.059967px;}
.x1f{left:684.000000px;}
.x26{left:718.019989px;}
.x23{left:741.779983px;}
@media print{
.v2{vertical-align:-44.159912pt;}
.v1{vertical-align:-7.679932pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.959960pt;}
.v3{vertical-align:44.159912pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005198pt;}
.ls1{letter-spacing:0.506564pt;}
.ls4{letter-spacing:0.506684pt;}
.ls2{letter-spacing:133.389412pt;}
.ws3{word-spacing:-13.810600pt;}
.ws0{word-spacing:-12.459600pt;}
.ws2{word-spacing:-10.057700pt;}
.ws4{word-spacing:-8.706680pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-2.107997pt;}
._1{margin-left:-0.990466pt;}
._0{width:1.062528pt;}
._2{width:2.065202pt;}
._3{width:3.029053pt;}
._6{width:4.239257pt;}
._5{width:5.465532pt;}
._9{width:6.717803pt;}
._a{width:7.963753pt;}
._4{width:9.702365pt;}
._14{width:11.260171pt;}
._b{width:12.153328pt;}
._10{width:15.243005pt;}
._11{width:16.383484pt;}
._8{width:17.650404pt;}
._7{width:18.714861pt;}
._e{width:19.644702pt;}
._f{width:20.632947pt;}
._15{width:21.605160pt;}
._16{width:22.615391pt;}
._c{width:24.068867pt;}
._d{width:25.062343pt;}
._13{width:26.324957pt;}
._17{width:27.945040pt;}
._19{width:34.026716pt;}
._2c{width:62.423912pt;}
._23{width:77.891784pt;}
._18{width:81.275845pt;}
._2a{width:95.454970pt;}
._2b{width:101.093592pt;}
._1b{width:105.512984pt;}
._29{width:107.722680pt;}
._20{width:111.589648pt;}
._1e{width:139.210848pt;}
._21{width:158.261060pt;}
._22{width:165.715750pt;}
._1f{width:174.565984pt;}
._27{width:186.719312pt;}
._1a{width:208.816272pt;}
._1c{width:210.576045pt;}
._26{width:225.388992pt;}
._24{width:229.311202pt;}
._1d{width:240.304440pt;}
._2d{width:262.953824pt;}
._28{width:284.231928pt;}
._2e{width:424.313600pt;}
._25{width:445.806168pt;}
._31{width:468.317992pt;}
._32{width:504.807191pt;}
._2f{width:1508.692589pt;}
._30{width:1545.627022pt;}
.fs6{font-size:34.826720pt;}
.fs5{font-size:40.230800pt;}
.fs4{font-size:49.838400pt;}
.fs2{font-size:55.242400pt;}
.fs0{font-size:60.046000pt;}
.fs3{font-size:70.253996pt;}
.fs1{font-size:79.861200pt;}
.ycc{bottom:-8.159989pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:1.759995pt;}
.yd8{bottom:2.720001pt;}
.yd5{bottom:3.039978pt;}
.yd3{bottom:3.360001pt;}
.y3{bottom:49.119995pt;}
.y2{bottom:66.400024pt;}
.y90{bottom:102.719971pt;}
.ya2{bottom:107.679993pt;}
.yf0{bottom:118.400024pt;}
.y8f{bottom:118.559998pt;}
.y13c{bottom:120.799988pt;}
.y5e{bottom:123.520020pt;}
.y2e{bottom:124.640015pt;}
.yef{bottom:134.239990pt;}
.y8e{bottom:134.400024pt;}
.yc7{bottom:135.200012pt;}
.y5d{bottom:139.520020pt;}
.y2d{bottom:140.479980pt;}
.y8d{bottom:150.239990pt;}
.y5c{bottom:155.200012pt;}
.y13b{bottom:155.359985pt;}
.y12a{bottom:155.520020pt;}
.y8c{bottom:166.080017pt;}
.yee{bottom:168.960022pt;}
.yc6{bottom:169.760010pt;}
.y5b{bottom:171.200012pt;}
.y129{bottom:171.359985pt;}
.y2c{bottom:175.200012pt;}
.y8b{bottom:182.080017pt;}
.yc5{bottom:185.599976pt;}
.y5a{bottom:187.039978pt;}
.y128{bottom:187.359985pt;}
.y2b{bottom:191.039978pt;}
.y8a{bottom:197.760010pt;}
.yc4{bottom:201.599976pt;}
.y59{bottom:202.719971pt;}
.yed{bottom:203.520020pt;}
.y13a{bottom:205.919983pt;}
.y2a{bottom:206.880005pt;}
.y89{bottom:213.599976pt;}
.yc3{bottom:217.440002pt;}
.y58{bottom:218.719971pt;}
.y127{bottom:221.919983pt;}
.y29{bottom:222.719971pt;}
.y88{bottom:229.599976pt;}
.y57{bottom:234.559998pt;}
.y126{bottom:237.599976pt;}
.yec{bottom:238.239990pt;}
.y28{bottom:238.559998pt;}
.y87{bottom:245.280029pt;}
.y56{bottom:250.400024pt;}
.yc2{bottom:252.159973pt;}
.y27{bottom:254.559998pt;}
.y86{bottom:261.280029pt;}
.y55{bottom:266.239990pt;}
.yc1{bottom:269.919983pt;}
.y26{bottom:270.239990pt;}
.y139{bottom:272.320007pt;}
.y125{bottom:272.479980pt;}
.yeb{bottom:272.799988pt;}
.ya1{bottom:275.679993pt;}
.y85{bottom:277.119995pt;}
.y54{bottom:282.080017pt;}
.y25{bottom:286.080017pt;}
.yc0{bottom:287.679993pt;}
.y124{bottom:288.159973pt;}
.y84{bottom:292.799988pt;}
.y53{bottom:297.919983pt;}
.y24{bottom:302.080017pt;}
.y123{bottom:304.159973pt;}
.ybf{bottom:305.440002pt;}
.yea{bottom:307.520020pt;}
.y83{bottom:308.799988pt;}
.ya0{bottom:311.679993pt;}
.y52{bottom:313.760010pt;}
.y23{bottom:317.760010pt;}
.y138{bottom:322.719971pt;}
.ybe{bottom:323.200012pt;}
.y9f{bottom:327.679993pt;}
.y51{bottom:329.760010pt;}
.y22{bottom:333.760010pt;}
.y122{bottom:338.719971pt;}
.ybd{bottom:340.960022pt;}
.ye9{bottom:342.239990pt;}
.y82{bottom:343.359985pt;}
.y50{bottom:345.440002pt;}
.y21{bottom:349.599976pt;}
.y121{bottom:354.559998pt;}
.ybc{bottom:358.880005pt;}
.y81{bottom:359.359985pt;}
.y4f{bottom:361.280029pt;}
.y20{bottom:365.440002pt;}
.y80{bottom:375.200012pt;}
.ybb{bottom:376.640015pt;}
.ye8{bottom:376.799988pt;}
.y10e{bottom:377.280029pt;}
.y1f{bottom:381.280029pt;}
.y137{bottom:389.119995pt;}
.y120{bottom:389.280029pt;}
.y7f{bottom:391.039978pt;}
.y10d{bottom:392.960022pt;}
.yba{bottom:394.400024pt;}
.y4e{bottom:396.000000pt;}
.y1e{bottom:397.119995pt;}
.y11f{bottom:405.119995pt;}
.y7e{bottom:406.880005pt;}
.y10c{bottom:408.960022pt;}
.ye7{bottom:411.520020pt;}
.y4d{bottom:411.840027pt;}
.yb9{bottom:412.320007pt;}
.y136{bottom:420.799988pt;}
.y7d{bottom:422.719971pt;}
.y10b{bottom:424.799988pt;}
.y9e{bottom:425.599976pt;}
.y1d{bottom:427.039978pt;}
.y4c{bottom:427.840027pt;}
.yb8{bottom:430.080017pt;}
.y7c{bottom:438.559998pt;}
.y11e{bottom:439.840027pt;}
.y10a{bottom:440.479980pt;}
.y9d{bottom:441.440002pt;}
.y1c{bottom:443.039978pt;}
.y4b{bottom:443.520020pt;}
.ye6{bottom:446.080017pt;}
.yb7{bottom:447.840027pt;}
.y7b{bottom:454.400024pt;}
.y11d{bottom:455.520020pt;}
.y109{bottom:456.479980pt;}
.y9c{bottom:457.440002pt;}
.y1b{bottom:458.719971pt;}
.y4a{bottom:459.359985pt;}
.yb6{bottom:465.599976pt;}
.y7a{bottom:470.400024pt;}
.y135{bottom:471.359985pt;}
.y108{bottom:472.320007pt;}
.y9b{bottom:473.119995pt;}
.y1a{bottom:474.719971pt;}
.y49{bottom:475.359985pt;}
.ye5{bottom:480.640015pt;}
.yb5{bottom:483.359985pt;}
.y134{bottom:487.200012pt;}
.yf1{bottom:488.000000pt;}
.y107{bottom:488.159973pt;}
.y9a{bottom:489.119995pt;}
.y11c{bottom:490.239990pt;}
.y19{bottom:490.559998pt;}
.y48{bottom:491.039978pt;}
.yb4{bottom:501.119995pt;}
.y106{bottom:504.000000pt;}
.y79{bottom:504.960022pt;}
.y11b{bottom:506.080017pt;}
.y18{bottom:506.400024pt;}
.y47{bottom:507.039978pt;}
.ye4{bottom:515.520020pt;}
.yb3{bottom:519.039978pt;}
.y105{bottom:520.000000pt;}
.y78{bottom:520.799988pt;}
.y133{bottom:521.919983pt;}
.y17{bottom:522.239990pt;}
.ye3{bottom:531.200012pt;}
.y104{bottom:535.840027pt;}
.y77{bottom:536.640015pt;}
.yb2{bottom:536.799988pt;}
.y132{bottom:537.760010pt;}
.y16{bottom:538.080017pt;}
.y11a{bottom:540.799988pt;}
.y46{bottom:541.599976pt;}
.ye2{bottom:547.200012pt;}
.y103{bottom:551.519989pt;}
.y76{bottom:552.480011pt;}
.y15{bottom:553.920013pt;}
.y119{bottom:556.640015pt;}
.y45{bottom:557.600006pt;}
.yb0{bottom:559.519989pt;}
.yaf{bottom:562.559998pt;}
.ye1{bottom:564.480011pt;}
.y102{bottom:567.519989pt;}
.y75{bottom:568.320007pt;}
.y131{bottom:572.480011pt;}
.y44{bottom:573.440002pt;}
.yae{bottom:578.399994pt;}
.y14{bottom:579.200012pt;}
.ye0{bottom:581.760010pt;}
.yb1{bottom:583.200012pt;}
.y101{bottom:583.359985pt;}
.y74{bottom:584.160004pt;}
.y130{bottom:588.320007pt;}
.y43{bottom:589.119995pt;}
.y118{bottom:591.200012pt;}
.yad{bottom:594.239990pt;}
.y13{bottom:596.480011pt;}
.y100{bottom:599.200012pt;}
.y73{bottom:600.000000pt;}
.y42{bottom:605.119995pt;}
.y117{bottom:607.040009pt;}
.y12{bottom:613.760010pt;}
.yff{bottom:615.040009pt;}
.y72{bottom:616.000000pt;}
.ydf{bottom:617.920013pt;}
.y41{bottom:620.959991pt;}
.y12f{bottom:622.880005pt;}
.yac{bottom:629.440002pt;}
.yfe{bottom:630.880005pt;}
.y11{bottom:631.040009pt;}
.y71{bottom:631.679993pt;}
.yde{bottom:633.600006pt;}
.y40{bottom:636.799988pt;}
.y12e{bottom:638.720001pt;}
.y116{bottom:641.760010pt;}
.y99{bottom:647.679993pt;}
.y10{bottom:648.480011pt;}
.ydd{bottom:649.440002pt;}
.y3f{bottom:652.640015pt;}
.yfd{bottom:656.160004pt;}
.y115{bottom:657.600006pt;}
.y98{bottom:663.519989pt;}
.yab{bottom:664.160004pt;}
.ydc{bottom:665.440002pt;}
.y70{bottom:666.399994pt;}
.y12d{bottom:673.440002pt;}
.y114{bottom:673.600006pt;}
.y97{bottom:679.200012pt;}
.yaa{bottom:680.000000pt;}
.y6f{bottom:682.239990pt;}
.yf{bottom:684.320007pt;}
.y3e{bottom:687.200012pt;}
.y12c{bottom:689.279999pt;}
.yfc{bottom:692.160004pt;}
.y96{bottom:695.200012pt;}
.ya9{bottom:695.839996pt;}
.y6e{bottom:698.079987pt;}
.ye{bottom:698.720001pt;}
.ydb{bottom:700.000000pt;}
.y3d{bottom:703.200012pt;}
.y12b{bottom:705.119995pt;}
.yfb{bottom:708.160004pt;}
.y95{bottom:711.040009pt;}
.ya8{bottom:711.679993pt;}
.yd{bottom:713.279999pt;}
.y6d{bottom:713.920013pt;}
.y3c{bottom:718.880005pt;}
.yda{bottom:721.279999pt;}
.yfa{bottom:723.839996pt;}
.y113{bottom:724.000000pt;}
.ya7{bottom:727.519989pt;}
.y6c{bottom:729.760010pt;}
.y3b{bottom:734.880005pt;}
.yc{bottom:736.959991pt;}
.yf9{bottom:739.839996pt;}
.yd9{bottom:741.119995pt;}
.y6b{bottom:745.760010pt;}
.y3a{bottom:750.720001pt;}
.yb{bottom:751.359985pt;}
.ya6{bottom:752.959991pt;}
.yd7{bottom:754.079987pt;}
.yf8{bottom:755.679993pt;}
.y112{bottom:758.720001pt;}
.y6a{bottom:761.440002pt;}
.ya{bottom:765.600006pt;}
.y39{bottom:766.399994pt;}
.ya5{bottom:770.239990pt;}
.yf7{bottom:771.359985pt;}
.y111{bottom:774.399994pt;}
.yd6{bottom:776.480011pt;}
.y69{bottom:777.440002pt;}
.y38{bottom:782.399994pt;}
.ya4{bottom:787.519989pt;}
.yd4{bottom:789.760010pt;}
.y68{bottom:793.279999pt;}
.y9{bottom:801.119995pt;}
.ya3{bottom:804.800003pt;}
.yf6{bottom:806.240005pt;}
.y67{bottom:808.960007pt;}
.yd2{bottom:809.119995pt;}
.yd1{bottom:812.479996pt;}
.y37{bottom:816.960007pt;}
.y8{bottom:821.440002pt;}
.yf5{bottom:821.919998pt;}
.y94{bottom:824.960007pt;}
.y110{bottom:825.119995pt;}
.ycf{bottom:825.600006pt;}
.y36{bottom:832.960007pt;}
.yf4{bottom:837.919998pt;}
.ycb{bottom:840.479996pt;}
.y93{bottom:840.800003pt;}
.y7{bottom:841.600006pt;}
.y10f{bottom:842.399994pt;}
.y66{bottom:843.839996pt;}
.y35{bottom:848.800003pt;}
.yce{bottom:851.199997pt;}
.y92{bottom:856.639999pt;}
.y65{bottom:859.520004pt;}
.y34{bottom:864.479996pt;}
.yca{bottom:864.800003pt;}
.ycd{bottom:867.039993pt;}
.y91{bottom:872.479996pt;}
.y64{bottom:875.520004pt;}
.y33{bottom:880.479996pt;}
.yc8{bottom:885.600006pt;}
.yf3{bottom:888.320007pt;}
.y63{bottom:891.360001pt;}
.y32{bottom:896.320007pt;}
.yc9{bottom:902.880005pt;}
.yf2{bottom:904.320007pt;}
.y6{bottom:904.800003pt;}
.y62{bottom:907.039993pt;}
.y31{bottom:912.160004pt;}
.y61{bottom:923.039993pt;}
.y5{bottom:925.919998pt;}
.y30{bottom:928.000000pt;}
.y60{bottom:938.879997pt;}
.y4{bottom:948.639999pt;}
.y2f{bottom:953.440002pt;}
.y5f{bottom:954.720001pt;}
.y1{bottom:998.240002pt;}
.ha{height:4.160003pt;}
.hb{height:14.079987pt;}
.he{height:15.040008pt;}
.hd{height:15.359985pt;}
.hc{height:15.680008pt;}
.h6{height:36.429729pt;}
.h5{height:38.977182pt;}
.h7{height:41.588782pt;}
.h8{height:42.366440pt;}
.h3{height:46.098272pt;}
.h4{height:49.568859pt;}
.h1{height:50.106745pt;}
.h9{height:55.058232pt;}
.h2{height:56.347380pt;}
.h0{height:1056.000000pt;}
.w14{width:3.519958pt;}
.we{width:4.640015pt;}
.w2{width:5.119995pt;}
.w9{width:5.600006pt;}
.w15{width:6.239990pt;}
.w12{width:6.240005pt;}
.w3{width:7.039978pt;}
.w6{width:7.040008pt;}
.wc{width:7.040039pt;}
.w11{width:29.119996pt;}
.w10{width:30.239990pt;}
.wb{width:31.039978pt;}
.wa{width:31.040008pt;}
.w8{width:31.040009pt;}
.w5{width:31.519989pt;}
.w4{width:31.520019pt;}
.w1{width:31.520020pt;}
.wf{width:35.199997pt;}
.w13{width:37.919983pt;}
.w7{width:39.199997pt;}
.wd{width:51.359985pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:123.360001pt;}
.x7{left:129.759995pt;}
.x29{left:133.600006pt;}
.x14{left:135.039993pt;}
.x16{left:146.240005pt;}
.xf{left:167.039993pt;}
.x6{left:169.919998pt;}
.x3{left:175.679993pt;}
.x25{left:181.279999pt;}
.x20{left:185.279999pt;}
.x10{left:214.080002pt;}
.xa{left:238.240005pt;}
.x24{left:251.839996pt;}
.x4{left:260.320007pt;}
.x2b{left:272.160004pt;}
.x5{left:275.200012pt;}
.x18{left:292.480011pt;}
.xc{left:294.559998pt;}
.x8{left:300.000000pt;}
.x17{left:302.239990pt;}
.xe{left:306.079987pt;}
.xd{left:318.079987pt;}
.x2a{left:322.880005pt;}
.x19{left:333.760010pt;}
.x11{left:345.279999pt;}
.x1a{left:363.679993pt;}
.x9{left:369.279999pt;}
.x15{left:373.920013pt;}
.x2{left:393.279999pt;}
.x1b{left:395.040009pt;}
.xb{left:407.519989pt;}
.x12{left:422.720001pt;}
.x1c{left:453.279999pt;}
.x13{left:474.720001pt;}
.x1d{left:481.760010pt;}
.x21{left:512.640015pt;}
.x27{left:519.679993pt;}
.x1e{left:531.840027pt;}
.x28{left:535.200012pt;}
.x22{left:538.719971pt;}
.x1f{left:608.000000pt;}
.x26{left:638.239990pt;}
.x23{left:659.359985pt;}
}




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