
    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_86a03ea55d8097d66b08ba3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026855;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_cb8892e8db704a91cbd881ad.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ddcd0263360910b0f3ce09bf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_22a7213a1500cc2d2d920374.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_67f841ad3e4bbe076975aed1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_085ee2588fa6cc3a0a397a3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012695;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_35797183ad63eb0e22edc01e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8aada5d765c6d5cf46f7635c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960946;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_a94e6fba08ec5095c3614e84.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.759766;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:-7.346430px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:87.001203px;}
.ls2{letter-spacing:92.991805px;}
.ls1{letter-spacing:101.995315px;}
.ls6{letter-spacing:107.971947px;}
.ls5{letter-spacing:107.972021px;}
.ls7{letter-spacing:107.986253px;}
.ls4{letter-spacing:108.000426px;}
.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;}
}
.wsb{word-spacing:-33.240000px;}
.wsa{word-spacing:-29.916001px;}
.ws8{word-spacing:-28.254000px;}
.ws9{word-spacing:-26.592002px;}
.ws1{word-spacing:-23.808002px;}
.ws2{word-spacing:-20.412000px;}
.ws6{word-spacing:-16.038001px;}
.ws3{word-spacing:-14.580000px;}
.ws7{word-spacing:-10.206000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:198.815904px;}
.ws5{word-spacing:243.373240px;}
._2{margin-left:-21.912001px;}
._15{margin-left:-11.880000px;}
._d{margin-left:-9.780000px;}
._5{margin-left:-8.640000px;}
._0{margin-left:-6.864000px;}
._7{margin-left:-4.680000px;}
._4{margin-left:-3.420000px;}
._3{margin-left:-2.376000px;}
._6{margin-left:-1.260000px;}
._1{width:1.872000px;}
._10{width:2.880000px;}
._14{width:5.040000px;}
._2c{width:88.261741px;}
._1f{width:102.709741px;}
._19{width:104.112266px;}
._25{width:111.949741px;}
._a{width:114.998113px;}
._26{width:138.084364px;}
._22{width:153.865741px;}
._1b{width:160.476266px;}
._28{width:172.513741px;}
._b{width:180.518113px;}
._16{width:230.028266px;}
._2a{width:233.245741px;}
._1c{width:251.809741px;}
._20{width:254.760363px;}
._2b{width:287.368173px;}
._12{width:289.004488px;}
._11{width:294.377862px;}
._2d{width:334.116363px;}
._18{width:337.548265px;}
._1a{width:351.408265px;}
._17{width:353.820266px;}
._24{width:407.897550px;}
._23{width:427.212363px;}
._27{width:442.949550px;}
._29{width:447.087801px;}
._e{width:456.098111px;}
._9{width:460.406112px;}
._21{width:618.065549px;}
._c{width:642.770111px;}
._f{width:740.294111px;}
._2e{width:771.869548px;}
._1e{width:781.109548px;}
._13{width:798.594691px;}
._1d{width:996.564360px;}
._8{width:1781.810405px;}
.fcf{color:rgb(5,99,193);}
.fc11{color:rgb(0,32,96);}
.fce{color:rgb(0,0,255);}
.fcd{color:rgb(237,125,49);}
.fc0{color:rgb(38,38,38);}
.fc5{color:rgb(136,136,136);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(44,62,80);}
.fc6{color:rgb(93,170,144);}
.fc4{color:rgb(26,82,118);}
.fc7{color:rgb(16,91,129);}
.fc10{color:rgb(127,127,127);}
.fc9{color:rgb(22,160,133);}
.fca{color:rgb(230,126,34);}
.fcc{color:rgb(153,0,255);}
.fc3{color:rgb(255,255,255);}
.fc8{color:rgb(41,128,185);}
.fcb{color:rgb(142,68,173);}
.fsf{font-size:42.000000px;}
.fsa{font-size:54.000002px;}
.fsc{font-size:60.000000px;}
.fsd{font-size:66.000004px;}
.fse{font-size:72.000002px;}
.fs0{font-size:78.000005px;}
.fs8{font-size:84.000000px;}
.fs9{font-size:96.000006px;}
.fs11{font-size:102.000000px;}
.fs7{font-size:108.000003px;}
.fs4{font-size:120.000001px;}
.fs3{font-size:126.000004px;}
.fs5{font-size:132.000007px;}
.fs12{font-size:144.000005px;}
.fs13{font-size:167.999999px;}
.fs2{font-size:180.000006px;}
.fs6{font-size:192.000012px;}
.fsb{font-size:198.000006px;}
.fs10{font-size:210.000013px;}
.fs14{font-size:216.000007px;}
.fs1{font-size:264.000014px;}
.y0{bottom:0.000000px;}
.y4c{bottom:19.843883px;}
.y4e{bottom:28.843884px;}
.y3f{bottom:29.707513px;}
.y49{bottom:31.002399px;}
.yc{bottom:32.464372px;}
.y47{bottom:32.579172px;}
.y1e{bottom:32.835196px;}
.yd0{bottom:37.243224px;}
.ycc{bottom:37.725545px;}
.y4b{bottom:37.843884px;}
.y75{bottom:45.034257px;}
.y4d{bottom:48.283886px;}
.y48{bottom:50.442398px;}
.ya5{bottom:51.282268px;}
.y46{bottom:52.019169px;}
.y1{bottom:52.875428px;}
.y4a{bottom:57.283886px;}
.y3e{bottom:58.507513px;}
.ycb{bottom:66.525557px;}
.y1d{bottom:67.943226px;}
.y36{bottom:70.437914px;}
.ycf{bottom:73.243230px;}
.y84{bottom:73.877061px;}
.ybd{bottom:75.766848px;}
.y3d{bottom:87.307526px;}
.ya4{bottom:88.542258px;}
.y95{bottom:92.147580px;}
.yca{bottom:95.325547px;}
.y4f{bottom:95.684602px;}
.y35{bottom:99.997797px;}
.ybb{bottom:100.171429px;}
.yce{bottom:109.243231px;}
.y3c{bottom:116.107538px;}
.y72{bottom:116.353463px;}
.y94{bottom:121.127592px;}
.yc9{bottom:124.125548px;}
.y83{bottom:124.997018px;}
.y1c{bottom:125.089324px;}
.ya3{bottom:125.802248px;}
.y45{bottom:128.855757px;}
.ybc{bottom:134.026853px;}
.y3b{bottom:144.907527px;}
.yb{bottom:145.426546px;}
.y93{bottom:150.107604px;}
.y34{bottom:154.055162px;}
.yba{bottom:155.431430px;}
.y82{bottom:158.116963px;}
.yc8{bottom:158.505550px;}
.ya2{bottom:163.062249px;}
.y73{bottom:165.319629px;}
.y3a{bottom:173.707519px;}
.y92{bottom:181.607571px;}
.y51{bottom:182.841055px;}
.yae{bottom:186.589220px;}
.y33{bottom:189.083738px;}
.y81{bottom:191.236964px;}
.y53{bottom:191.556205px;}
.yb9{bottom:192.691420px;}
.ya{bottom:199.426548px;}
.y39{bottom:202.507518px;}
.y71{bottom:206.983466px;}
.ya1{bottom:219.582251px;}
.y1b{bottom:221.884240px;}
.yb8{bottom:229.951421px;}
.yad{bottom:233.384519px;}
.y32{bottom:233.955724px;}
.y91{bottom:234.347618px;}
.y38{bottom:243.289962px;}
.y80{bottom:244.876954px;}
.yc7{bottom:253.385307px;}
.y9{bottom:253.426550px;}
.y50{bottom:257.427140px;}
.y31{bottom:257.955702px;}
.y70{bottom:258.103467px;}
.y90{bottom:263.327630px;}
.y52{bottom:263.335629px;}
.yb7{bottom:267.211411px;}
.y1a{bottom:268.679516px;}
.y37{bottom:279.289963px;}
.yac{bottom:280.179795px;}
.y30{bottom:284.843977px;}
.yc6{bottom:290.645308px;}
.y8f{bottom:292.307642px;}
.y4{bottom:294.264774px;}
.y7f{bottom:300.436949px;}
.yb6{bottom:304.471413px;}
.y8{bottom:307.426551px;}
.y6f{bottom:309.223469px;}
.ya0{bottom:309.891258px;}
.y44{bottom:313.068044px;}
.y19{bottom:315.474781px;}
.y8e{bottom:323.807609px;}
.yab{bottom:326.975049px;}
.y7e{bottom:329.236950px;}
.y5f{bottom:331.324367px;}
.y43{bottom:332.868045px;}
.y5b{bottom:338.583958px;}
.yb5{bottom:341.731403px;}
.y6e{bottom:342.343481px;}
.y67{bottom:343.642060px;}
.y5e{bottom:343.924365px;}
.yc5{bottom:346.312787px;}
.y61{bottom:347.238550px;}
.y2f{bottom:347.365144px;}
.y9f{bottom:351.291248px;}
.y5a{bottom:352.623957px;}
.y42{bottom:352.668045px;}
.y66{bottom:357.682058px;}
.y7d{bottom:358.036951px;}
.y60{bottom:361.278548px;}
.y5d{bottom:361.350942px;}
.y7{bottom:361.426553px;}
.y18{bottom:362.270058px;}
.y41{bottom:372.468046px;}
.yaa{bottom:373.770326px;}
.y8d{bottom:380.327600px;}
.y2e{bottom:381.440406px;}
.y9e{bottom:383.691260px;}
.yc4{bottom:393.108064px;}
.y7c{bottom:393.676952px;}
.yb4{bottom:396.991416px;}
.y6d{bottom:399.583472px;}
.y65{bottom:401.718364px;}
.y63{bottom:401.718409px;}
.y57{bottom:403.661642px;}
.y26{bottom:404.141567px;}
.y3{bottom:409.009489px;}
.y17{bottom:409.064167px;}
.y59{bottom:411.376861px;}
.y6{bottom:415.426544px;}
.y64{bottom:415.758362px;}
.y62{bottom:415.758407px;}
.y9d{bottom:416.091272px;}
.ya9{bottom:420.565602px;}
.y58{bottom:425.416859px;}
.y25{bottom:432.941568px;}
.y16{bottom:434.264165px;}
.y5c{bottom:437.261872px;}
.yc3{bottom:439.903340px;}
.y2d{bottom:439.924713px;}
.y8c{bottom:440.207617px;}
.y6c{bottom:441.703462px;}
.y9c{bottom:448.491273px;}
.y7b{bottom:453.556980px;}
.yb3{bottom:455.251421px;}
.y24{bottom:461.741580px;}
.y5{bottom:469.426536px;}
.y2c{bottom:472.536845px;}
.y9b{bottom:480.891286px;}
.y15{bottom:481.058263px;}
.y6b{bottom:483.823459px;}
.yc2{bottom:486.698617px;}
.y56{bottom:486.750466px;}
.y8b{bottom:490.067619px;}
.y23{bottom:490.541592px;}
.yb2{bottom:492.511411px;}
.y2{bottom:495.436974px;}
.y7a{bottom:504.676993px;}
.y14{bottom:506.258261px;}
.ya8{bottom:506.340931px;}
.y9a{bottom:513.291287px;}
.y8a{bottom:519.047608px;}
.y22{bottom:519.341582px;}
.y2b{bottom:523.292121px;}
.yb1{bottom:529.771401px;}
.y10{bottom:531.441376px;}
.yc1{bottom:533.493893px;}
.y29{bottom:534.263969px;}
.y79{bottom:537.796994px;}
.y6a{bottom:540.643458px;}
.y99{bottom:545.691265px;}
.y89{bottom:548.027609px;}
.y21{bottom:548.141574px;}
.y13{bottom:554.492354px;}
.y2a{bottom:557.450903px;}
.y28{bottom:559.463968px;}
.ya7{bottom:565.740926px;}
.yb0{bottom:567.031413px;}
.y78{bottom:570.916995px;}
.y20{bottom:576.941573px;}
.y88{bottom:577.007610px;}
.y98{bottom:578.091266px;}
.yc0{bottom:580.289170px;}
.y74{bottom:597.723428px;}
.y97{bottom:610.491262px;}
.y55{bottom:615.332716px;}
.y77{bottom:622.036996px;}
.yaf{bottom:622.291415px;}
.y1f{bottom:623.521997px;}
.ybf{bottom:627.084446px;}
.y87{bottom:627.767600px;}
.y12{bottom:630.453597px;}
.ya6{bottom:645.267843px;}
.ye{bottom:649.454755px;}
.y69{bottom:650.052876px;}
.y96{bottom:655.011254px;}
.y54{bottom:657.889247px;}
.y86{bottom:672.429921px;}
.y76{bottom:675.676998px;}
.ycd{bottom:683.159672px;}
.yd{bottom:685.454758px;}
.y85{bottom:727.560117px;}
.y40{bottom:730.650399px;}
.y68{bottom:730.660269px;}
.y11{bottom:730.958903px;}
.y27{bottom:731.147900px;}
.ybe{bottom:734.062273px;}
.yf{bottom:740.761583px;}
.h1b{height:33.489258px;}
.hd{height:43.057619px;}
.h11{height:43.681641px;}
.h1a{height:45.000000px;}
.h15{height:45.826174px;}
.h18{height:47.841797px;}
.h12{height:48.114260px;}
.h19{height:49.500003px;}
.h13{height:52.488283px;}
.h1c{height:52.625979px;}
.hb{height:61.236328px;}
.h1{height:62.194340px;}
.h16{height:66.363281px;}
.h17{height:66.978515px;}
.h22{height:69.890629px;}
.h25{height:69.984379px;}
.h14{height:75.843755px;}
.hc{height:76.546880px;}
.hf{height:77.015630px;}
.h1f{height:78.626956px;}
.ha{height:78.732424px;}
.h20{height:81.331055px;}
.h1e{height:85.324221px;}
.h9{height:86.642581px;}
.h6{height:87.363282px;}
.h5{height:87.480469px;}
.h21{height:94.804688px;}
.he{height:95.683594px;}
.h7{height:96.099615px;}
.h4{height:100.467777px;}
.h23{height:114.820316px;}
.h24{height:133.957031px;}
.h3{height:143.525395px;}
.h8{height:153.093760px;}
.h10{height:157.877935px;}
.h1d{height:167.446299px;}
.h26{height:172.230474px;}
.h2{height:210.503918px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5f{left:28.854687px;}
.x56{left:42.050080px;}
.x8{left:43.266852px;}
.x4e{left:46.371142px;}
.x2{left:51.978307px;}
.x52{left:54.362126px;}
.x4{left:55.943853px;}
.x57{left:59.091095px;}
.x20{left:60.229606px;}
.x5c{left:62.932379px;}
.x53{left:66.869563px;}
.x4f{left:71.613392px;}
.xa{left:74.022640px;}
.x50{left:75.244493px;}
.x5b{left:81.441498px;}
.x5{left:91.942682px;}
.x3{left:100.747083px;}
.xc{left:109.260830px;}
.x3f{left:140.570252px;}
.x41{left:141.918984px;}
.x1e{left:147.829442px;}
.xe{left:148.910439px;}
.x42{left:150.697395px;}
.x40{left:160.256174px;}
.x2c{left:165.715577px;}
.x17{left:190.999463px;}
.x15{left:194.358454px;}
.x1c{left:197.619580px;}
.x19{left:214.351333px;}
.xb{left:216.073453px;}
.x1f{left:222.042366px;}
.x1a{left:267.094237px;}
.x16{left:268.225130px;}
.x39{left:271.063584px;}
.x1d{left:293.791532px;}
.x44{left:302.291335px;}
.x18{left:305.302690px;}
.x43{left:320.634142px;}
.x3e{left:331.856966px;}
.x2d{left:340.879821px;}
.x1b{left:344.076800px;}
.x2e{left:359.035175px;}
.x3b{left:376.692089px;}
.x1{left:385.497181px;}
.x3a{left:428.054539px;}
.x2b{left:461.544138px;}
.x26{left:463.053660px;}
.xd{left:464.728357px;}
.x3d{left:476.269721px;}
.x9{left:477.483068px;}
.x54{left:478.564609px;}
.x4d{left:490.358637px;}
.x3c{left:508.354205px;}
.x27{left:526.979071px;}
.x7{left:532.297480px;}
.x2f{left:546.114325px;}
.x6{left:549.761373px;}
.x28{left:561.739675px;}
.x29{left:564.359486px;}
.x2a{left:581.061119px;}
.x5e{left:616.134935px;}
.x30{left:713.661916px;}
.x31{left:724.740666px;}
.x11{left:775.981206px;}
.x12{left:795.633258px;}
.x23{left:805.257431px;}
.x24{left:808.857131px;}
.x4b{left:822.568965px;}
.x49{left:825.750218px;}
.x10{left:827.134935px;}
.x58{left:829.125027px;}
.x21{left:830.914249px;}
.x25{left:839.007432px;}
.x4a{left:841.317676px;}
.x59{left:846.166041px;}
.x4c{left:854.230044px;}
.x5a{left:883.125028px;}
.x55{left:885.774448px;}
.x37{left:891.603670px;}
.x38{left:901.462354px;}
.x51{left:902.958711px;}
.x34{left:907.928303px;}
.x33{left:909.081405px;}
.x32{left:923.751946px;}
.x22{left:939.724478px;}
.x47{left:999.215064px;}
.x46{left:1023.167035px;}
.x48{left:1039.280940px;}
.x45{left:1045.063037px;}
.x36{left:1098.174617px;}
.x35{left:1104.217397px;}
.x13{left:1270.374403px;}
.x14{left:1320.564890px;}
.x5d{left:1396.168807px;}
.xf{left:1403.657089px;}
@media print{
.v1{vertical-align:-6.530160pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:77.334403pt;}
.ls2{letter-spacing:82.659382pt;}
.ls1{letter-spacing:90.662503pt;}
.ls6{letter-spacing:95.975064pt;}
.ls5{letter-spacing:95.975130pt;}
.ls7{letter-spacing:95.987780pt;}
.ls4{letter-spacing:96.000379pt;}
.wsb{word-spacing:-29.546667pt;}
.wsa{word-spacing:-26.592001pt;}
.ws8{word-spacing:-25.114667pt;}
.ws9{word-spacing:-23.637335pt;}
.ws1{word-spacing:-21.162668pt;}
.ws2{word-spacing:-18.144000pt;}
.ws6{word-spacing:-14.256001pt;}
.ws3{word-spacing:-12.960000pt;}
.ws7{word-spacing:-9.072000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:176.725248pt;}
.ws5{word-spacing:216.331769pt;}
._2{margin-left:-19.477334pt;}
._15{margin-left:-10.560000pt;}
._d{margin-left:-8.693333pt;}
._5{margin-left:-7.680000pt;}
._0{margin-left:-6.101334pt;}
._7{margin-left:-4.160000pt;}
._4{margin-left:-3.040000pt;}
._3{margin-left:-2.112000pt;}
._6{margin-left:-1.120000pt;}
._1{width:1.664000pt;}
._10{width:2.560000pt;}
._14{width:4.480000pt;}
._2c{width:78.454881pt;}
._1f{width:91.297548pt;}
._19{width:92.544236pt;}
._25{width:99.510881pt;}
._a{width:102.220545pt;}
._26{width:122.741657pt;}
._22{width:136.769547pt;}
._1b{width:142.645570pt;}
._28{width:153.345547pt;}
._b{width:160.460545pt;}
._16{width:204.469569pt;}
._2a{width:207.329547pt;}
._1c{width:223.830880pt;}
._20{width:226.453656pt;}
._2b{width:255.438376pt;}
._12{width:256.892878pt;}
._11{width:261.669210pt;}
._2d{width:296.992322pt;}
._18{width:300.042902pt;}
._1a{width:312.362902pt;}
._17{width:314.506903pt;}
._24{width:362.575600pt;}
._23{width:379.744322pt;}
._27{width:393.732933pt;}
._29{width:397.411378pt;}
._e{width:405.420543pt;}
._9{width:409.249877pt;}
._21{width:549.391599pt;}
._c{width:571.351210pt;}
._f{width:658.039209pt;}
._2e{width:686.106265pt;}
._1e{width:694.319598pt;}
._13{width:709.861948pt;}
._1d{width:885.834987pt;}
._8{width:1583.831471pt;}
.fsf{font-size:37.333333pt;}
.fsa{font-size:48.000002pt;}
.fsc{font-size:53.333334pt;}
.fsd{font-size:58.666670pt;}
.fse{font-size:64.000002pt;}
.fs0{font-size:69.333338pt;}
.fs8{font-size:74.666666pt;}
.fs9{font-size:85.333339pt;}
.fs11{font-size:90.666667pt;}
.fs7{font-size:96.000003pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:112.000004pt;}
.fs5{font-size:117.333340pt;}
.fs12{font-size:128.000004pt;}
.fs13{font-size:149.333333pt;}
.fs2{font-size:160.000005pt;}
.fs6{font-size:170.666677pt;}
.fsb{font-size:176.000006pt;}
.fs10{font-size:186.666678pt;}
.fs14{font-size:192.000006pt;}
.fs1{font-size:234.666680pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:17.639008pt;}
.y4e{bottom:25.639008pt;}
.y3f{bottom:26.406678pt;}
.y49{bottom:27.557688pt;}
.yc{bottom:28.857219pt;}
.y47{bottom:28.959264pt;}
.y1e{bottom:29.186841pt;}
.yd0{bottom:33.105088pt;}
.ycc{bottom:33.533818pt;}
.y4b{bottom:33.639008pt;}
.y75{bottom:40.030450pt;}
.y4d{bottom:42.919009pt;}
.y48{bottom:44.837687pt;}
.ya5{bottom:45.584238pt;}
.y46{bottom:46.239261pt;}
.y1{bottom:47.000380pt;}
.y4a{bottom:50.919010pt;}
.y3e{bottom:52.006679pt;}
.ycb{bottom:59.133829pt;}
.y1d{bottom:60.393979pt;}
.y36{bottom:62.611479pt;}
.ycf{bottom:65.105093pt;}
.y84{bottom:65.668499pt;}
.ybd{bottom:67.348309pt;}
.y3d{bottom:77.606689pt;}
.ya4{bottom:78.704229pt;}
.y95{bottom:81.908960pt;}
.yca{bottom:84.733820pt;}
.y4f{bottom:85.052980pt;}
.y35{bottom:88.886931pt;}
.ybb{bottom:89.041270pt;}
.yce{bottom:97.105094pt;}
.y3c{bottom:103.206700pt;}
.y72{bottom:103.425300pt;}
.y94{bottom:107.668970pt;}
.yc9{bottom:110.333820pt;}
.y83{bottom:111.108461pt;}
.y1c{bottom:111.190511pt;}
.ya3{bottom:111.824221pt;}
.y45{bottom:114.538451pt;}
.ybc{bottom:119.134981pt;}
.y3b{bottom:128.806691pt;}
.yb{bottom:129.268041pt;}
.y93{bottom:133.428981pt;}
.y34{bottom:136.937921pt;}
.yba{bottom:138.161271pt;}
.y82{bottom:140.548411pt;}
.yc8{bottom:140.893822pt;}
.ya2{bottom:144.944222pt;}
.y73{bottom:146.950782pt;}
.y3a{bottom:154.406684pt;}
.y92{bottom:161.428952pt;}
.y51{bottom:162.525382pt;}
.yae{bottom:165.857084pt;}
.y33{bottom:168.074433pt;}
.y81{bottom:169.988412pt;}
.y53{bottom:170.272182pt;}
.yb9{bottom:171.281262pt;}
.ya{bottom:177.268043pt;}
.y39{bottom:180.006683pt;}
.y71{bottom:183.985303pt;}
.ya1{bottom:195.184223pt;}
.y1b{bottom:197.230435pt;}
.yb8{bottom:204.401264pt;}
.yad{bottom:207.452906pt;}
.y32{bottom:207.960644pt;}
.y91{bottom:208.308994pt;}
.y38{bottom:216.257744pt;}
.y80{bottom:217.668404pt;}
.yc7{bottom:225.231384pt;}
.y9{bottom:225.268044pt;}
.y50{bottom:228.824124pt;}
.y31{bottom:229.293957pt;}
.y70{bottom:229.425304pt;}
.y90{bottom:234.069004pt;}
.y52{bottom:234.076114pt;}
.yb7{bottom:237.521255pt;}
.y1a{bottom:238.826237pt;}
.y37{bottom:248.257745pt;}
.yac{bottom:249.048707pt;}
.y30{bottom:253.194646pt;}
.yc6{bottom:258.351385pt;}
.y8f{bottom:259.829015pt;}
.y4{bottom:261.568688pt;}
.y7f{bottom:267.055066pt;}
.yb6{bottom:270.641256pt;}
.y8{bottom:273.268046pt;}
.y6f{bottom:274.865306pt;}
.ya0{bottom:275.458896pt;}
.y44{bottom:278.282706pt;}
.y19{bottom:280.422028pt;}
.y8e{bottom:287.828986pt;}
.yab{bottom:290.644488pt;}
.y7e{bottom:292.655066pt;}
.y5f{bottom:294.510548pt;}
.y43{bottom:295.882706pt;}
.y5b{bottom:300.963519pt;}
.yb5{bottom:303.761247pt;}
.y6e{bottom:304.305317pt;}
.y67{bottom:305.459609pt;}
.y5e{bottom:305.710547pt;}
.yc5{bottom:307.833589pt;}
.y61{bottom:308.656489pt;}
.y2f{bottom:308.769017pt;}
.y9f{bottom:312.258887pt;}
.y5a{bottom:313.443517pt;}
.y42{bottom:313.482707pt;}
.y66{bottom:317.939607pt;}
.y7d{bottom:318.255067pt;}
.y60{bottom:321.136487pt;}
.y5d{bottom:321.200837pt;}
.y7{bottom:321.268047pt;}
.y18{bottom:322.017829pt;}
.y41{bottom:331.082708pt;}
.yaa{bottom:332.240290pt;}
.y8d{bottom:338.068978pt;}
.y2e{bottom:339.058139pt;}
.y9e{bottom:341.058898pt;}
.yc4{bottom:349.429390pt;}
.y7c{bottom:349.935068pt;}
.yb4{bottom:352.881258pt;}
.y6d{bottom:355.185308pt;}
.y65{bottom:357.082990pt;}
.y63{bottom:357.083030pt;}
.y57{bottom:358.810348pt;}
.y26{bottom:359.236948pt;}
.y3{bottom:363.563991pt;}
.y17{bottom:363.612593pt;}
.y59{bottom:365.668321pt;}
.y6{bottom:369.268039pt;}
.y64{bottom:369.562989pt;}
.y62{bottom:369.563029pt;}
.y9d{bottom:369.858909pt;}
.ya9{bottom:373.836091pt;}
.y58{bottom:378.148319pt;}
.y25{bottom:384.836949pt;}
.y16{bottom:386.012591pt;}
.y5c{bottom:388.677219pt;}
.yc3{bottom:391.025191pt;}
.y2d{bottom:391.044189pt;}
.y8c{bottom:391.295659pt;}
.y6c{bottom:392.625300pt;}
.y9c{bottom:398.658910pt;}
.y7b{bottom:403.161760pt;}
.yb3{bottom:404.667930pt;}
.y24{bottom:410.436960pt;}
.y5{bottom:417.268032pt;}
.y2c{bottom:420.032751pt;}
.y9b{bottom:427.458921pt;}
.y15{bottom:427.607345pt;}
.y6b{bottom:430.065297pt;}
.yc2{bottom:432.620993pt;}
.y56{bottom:432.667081pt;}
.y8b{bottom:435.615661pt;}
.y23{bottom:436.036971pt;}
.yb2{bottom:437.787921pt;}
.y2{bottom:440.388421pt;}
.y7a{bottom:448.601771pt;}
.y14{bottom:450.007343pt;}
.ya8{bottom:450.080827pt;}
.y9a{bottom:456.258922pt;}
.y8a{bottom:461.375652pt;}
.y22{bottom:461.636962pt;}
.y2b{bottom:465.148552pt;}
.yb1{bottom:470.907912pt;}
.y10{bottom:472.392334pt;}
.yc1{bottom:474.216794pt;}
.y29{bottom:474.901306pt;}
.y79{bottom:478.041772pt;}
.y6a{bottom:480.571962pt;}
.y99{bottom:485.058902pt;}
.y89{bottom:487.135653pt;}
.y21{bottom:487.236955pt;}
.y13{bottom:492.882093pt;}
.y2a{bottom:495.511914pt;}
.y28{bottom:497.301305pt;}
.ya7{bottom:502.880823pt;}
.yb0{bottom:504.027923pt;}
.y78{bottom:507.481773pt;}
.y20{bottom:512.836953pt;}
.y88{bottom:512.895653pt;}
.y98{bottom:513.858903pt;}
.yc0{bottom:515.812595pt;}
.y74{bottom:531.309714pt;}
.y97{bottom:542.658899pt;}
.y55{bottom:546.962414pt;}
.y77{bottom:552.921775pt;}
.yaf{bottom:553.147925pt;}
.y1f{bottom:554.241775pt;}
.ybf{bottom:557.408397pt;}
.y87{bottom:558.015645pt;}
.y12{bottom:560.403197pt;}
.ya6{bottom:573.571416pt;}
.ye{bottom:577.293115pt;}
.y69{bottom:577.824778pt;}
.y96{bottom:582.232226pt;}
.y54{bottom:584.790442pt;}
.y86{bottom:597.715485pt;}
.y76{bottom:600.601776pt;}
.ycd{bottom:607.253041pt;}
.yd{bottom:609.293118pt;}
.y85{bottom:646.720104pt;}
.y40{bottom:649.467022pt;}
.y68{bottom:649.475795pt;}
.y11{bottom:649.741247pt;}
.y27{bottom:649.909245pt;}
.ybe{bottom:652.499798pt;}
.yf{bottom:658.454740pt;}
.h1b{height:29.768229pt;}
.hd{height:38.273439pt;}
.h11{height:38.828125pt;}
.h1a{height:40.000000pt;}
.h15{height:40.734377pt;}
.h18{height:42.526042pt;}
.h12{height:42.768232pt;}
.h19{height:44.000002pt;}
.h13{height:46.656251pt;}
.h1c{height:46.778648pt;}
.hb{height:54.432291pt;}
.h1{height:55.283858pt;}
.h16{height:58.989583pt;}
.h17{height:59.536458pt;}
.h22{height:62.125004pt;}
.h25{height:62.208337pt;}
.h14{height:67.416671pt;}
.hc{height:68.041671pt;}
.hf{height:68.458338pt;}
.h1f{height:69.890627pt;}
.ha{height:69.984377pt;}
.h20{height:72.294271pt;}
.h1e{height:75.843752pt;}
.h9{height:77.015627pt;}
.h6{height:77.656251pt;}
.h5{height:77.760417pt;}
.h21{height:84.270834pt;}
.he{height:85.052084pt;}
.h7{height:85.421880pt;}
.h4{height:89.304690pt;}
.h23{height:102.062503pt;}
.h24{height:119.072916pt;}
.h3{height:127.578129pt;}
.h8{height:136.083342pt;}
.h10{height:140.335942pt;}
.h1d{height:148.841155pt;}
.h26{height:153.093755pt;}
.h2{height:187.114594pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:25.648611pt;}
.x56{left:37.377849pt;}
.x8{left:38.459424pt;}
.x4e{left:41.218793pt;}
.x2{left:46.202939pt;}
.x52{left:48.321890pt;}
.x4{left:49.727870pt;}
.x57{left:52.525418pt;}
.x20{left:53.537428pt;}
.x5c{left:55.939893pt;}
.x53{left:59.439612pt;}
.x4f{left:63.656348pt;}
.xa{left:65.797902pt;}
.x50{left:66.883994pt;}
.x5b{left:72.392442pt;}
.x5{left:81.726829pt;}
.x3{left:89.552963pt;}
.xc{left:97.120738pt;}
.x3f{left:124.951335pt;}
.x41{left:126.150208pt;}
.x1e{left:131.403948pt;}
.xe{left:132.364834pt;}
.x42{left:133.953240pt;}
.x40{left:142.449933pt;}
.x2c{left:147.302735pt;}
.x17{left:169.777300pt;}
.x15{left:172.763071pt;}
.x1c{left:175.661849pt;}
.x19{left:190.534518pt;}
.xb{left:192.065291pt;}
.x1f{left:197.370992pt;}
.x1a{left:237.417100pt;}
.x16{left:238.422338pt;}
.x39{left:240.945408pt;}
.x1d{left:261.148028pt;}
.x44{left:268.703409pt;}
.x18{left:271.380169pt;}
.x43{left:285.008126pt;}
.x3e{left:294.983969pt;}
.x2d{left:303.004286pt;}
.x1b{left:305.846045pt;}
.x2e{left:319.142378pt;}
.x3b{left:334.837413pt;}
.x1{left:342.664161pt;}
.x3a{left:380.492923pt;}
.x2b{left:410.261456pt;}
.x26{left:411.603253pt;}
.xd{left:413.091873pt;}
.x3d{left:423.350864pt;}
.x9{left:424.429394pt;}
.x54{left:425.390764pt;}
.x4d{left:435.874344pt;}
.x3c{left:451.870404pt;}
.x27{left:468.425841pt;}
.x7{left:473.153315pt;}
.x2f{left:485.434956pt;}
.x6{left:488.676776pt;}
.x28{left:499.324156pt;}
.x29{left:501.652876pt;}
.x2a{left:516.498773pt;}
.x5e{left:547.675498pt;}
.x30{left:634.366147pt;}
.x31{left:644.213926pt;}
.x11{left:689.761072pt;}
.x12{left:707.229563pt;}
.x23{left:715.784383pt;}
.x24{left:718.984116pt;}
.x4b{left:731.172413pt;}
.x49{left:734.000193pt;}
.x10{left:735.231054pt;}
.x58{left:737.000024pt;}
.x21{left:738.590444pt;}
.x25{left:745.784384pt;}
.x4a{left:747.837934pt;}
.x59{left:752.147592pt;}
.x4c{left:759.315594pt;}
.x5a{left:785.000025pt;}
.x55{left:787.355065pt;}
.x37{left:792.536595pt;}
.x38{left:801.299871pt;}
.x51{left:802.629966pt;}
.x34{left:807.047381pt;}
.x33{left:808.072360pt;}
.x32{left:821.112841pt;}
.x22{left:835.310647pt;}
.x47{left:888.191168pt;}
.x46{left:909.481809pt;}
.x48{left:923.805280pt;}
.x45{left:928.944922pt;}
.x36{left:976.155215pt;}
.x35{left:981.526575pt;}
.x13{left:1129.221691pt;}
.x14{left:1173.835458pt;}
.x5d{left:1241.038940pt;}
.xf{left:1247.695190pt;}
}




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