
    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_480486a66081d8fa8b323252.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_2cb0986f350913744e383ecb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_311f68d9fbd228bb3bdd130e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.679688;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_8a267fe086885aace951e8ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.703000;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_35a57664161076dc667bed04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_085b6d39632e0031cf3505f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0a57386bd067aa11c1ca5bc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.186014px;}
.ls3{letter-spacing:0.351172px;}
.ls0{letter-spacing:15.532854px;}
.ls4{letter-spacing:16.895753px;}
.ls1{letter-spacing:20.547162px;}
.ls6{letter-spacing:24.830782px;}
.ls7{letter-spacing:189.384611px;}
.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;}
}
.ws0{word-spacing:-25.379990px;}
.ws2{word-spacing:-19.795792px;}
.ws1{word-spacing:-14.043594px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-189.384611px;}
._1{margin-left:-1.447111px;}
._0{width:1.245893px;}
._2{width:2.415849px;}
._4{width:3.736324px;}
._3{width:5.205111px;}
._8{width:6.563541px;}
._9{width:7.855339px;}
._a{width:9.177151px;}
._e{width:11.012294px;}
._5{width:12.649254px;}
._d{width:14.364514px;}
._6{width:15.944368px;}
._7{width:17.024057px;}
._b{width:18.112593px;}
._c{width:19.229323px;}
._f{width:20.628374px;}
._10{width:22.857440px;}
._11{width:24.027041px;}
._18{width:25.480298px;}
._19{width:26.654195px;}
._1c{width:28.487242px;}
._16{width:30.522621px;}
._17{width:32.686764px;}
._12{width:34.442815px;}
._13{width:35.582067px;}
._1b{width:37.233631px;}
._1a{width:38.457689px;}
._15{width:50.133721px;}
._14{width:51.246220px;}
._1e{width:95.798556px;}
._1d{width:123.885270px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.343422px;}
.fs6{font-size:48.051341px;}
.fs0{font-size:56.174378px;}
.fs9{font-size:62.263175px;}
.fs8{font-size:67.679973px;}
.fs5{font-size:73.094371px;}
.fs4{font-size:79.183168px;}
.fs1{font-size:90.014364px;}
.fs3{font-size:101.519959px;}
.fs2{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y2{bottom:106.379957px;}
.yc2{bottom:123.299951px;}
.yb0{bottom:123.479951px;}
.y64{bottom:124.019950px;}
.yde{bottom:124.919950px;}
.yaf{bottom:141.299943px;}
.yc1{bottom:141.479943px;}
.y63{bottom:142.019943px;}
.ydd{bottom:143.099943px;}
.ye9{bottom:146.159942px;}
.y119{bottom:151.019940px;}
.yae{bottom:159.299936px;}
.y62{bottom:159.839936px;}
.ydc{bottom:160.919936px;}
.ye8{bottom:164.159934px;}
.y118{bottom:167.219933px;}
.yad{bottom:176.939929px;}
.y61{bottom:177.479929px;}
.ydb{bottom:178.739929px;}
.y95{bottom:181.979927px;}
.y117{bottom:183.419927px;}
.yc0{bottom:194.579922px;}
.yac{bottom:194.939922px;}
.y60{bottom:195.479922px;}
.yda{bottom:196.559921px;}
.y116{bottom:199.619920px;}
.y94{bottom:199.799920px;}
.yab{bottom:212.759915px;}
.y5f{bottom:213.299915px;}
.yd9{bottom:214.379914px;}
.y115{bottom:215.999914px;}
.y93{bottom:217.619913px;}
.yaa{bottom:230.579908px;}
.y5e{bottom:231.119908px;}
.yd8{bottom:232.199907px;}
.y92{bottom:235.439906px;}
.y114{bottom:248.219901px;}
.ya9{bottom:248.399901px;}
.y5d{bottom:248.939900px;}
.yd7{bottom:249.839900px;}
.y91{bottom:253.259899px;}
.y113{bottom:264.419894px;}
.ya8{bottom:266.219894px;}
.y5c{bottom:266.759893px;}
.yd6{bottom:267.479893px;}
.y90{bottom:271.079892px;}
.y2f{bottom:274.859890px;}
.y112{bottom:280.799888px;}
.ya7{bottom:283.859886px;}
.ybf{bottom:284.039886px;}
.y5b{bottom:284.579886px;}
.yd5{bottom:285.299886px;}
.y8f{bottom:289.079884px;}
.y2e{bottom:292.679883px;}
.y111{bottom:296.999881px;}
.ybe{bottom:301.499879px;}
.ya6{bottom:301.859879px;}
.y5a{bottom:302.399879px;}
.yd4{bottom:303.659879px;}
.y8e{bottom:306.719877px;}
.y2d{bottom:310.499876px;}
.y110{bottom:313.199875px;}
.ybd{bottom:319.499872px;}
.ya5{bottom:319.679872px;}
.y59{bottom:320.399872px;}
.yd3{bottom:321.299871px;}
.y8d{bottom:324.539870px;}
.y2c{bottom:328.319869px;}
.y10f{bottom:329.399868px;}
.ya4{bottom:337.679865px;}
.y58{bottom:338.039865px;}
.yd2{bottom:339.299864px;}
.y8c{bottom:342.539863px;}
.y10e{bottom:345.599862px;}
.y2b{bottom:346.139862px;}
.ya3{bottom:355.319858px;}
.y57{bottom:356.039858px;}
.yd1{bottom:357.119857px;}
.y8b{bottom:360.179856px;}
.ye7{bottom:360.899856px;}
.y10d{bottom:361.799855px;}
.y2a{bottom:363.959854px;}
.ya2{bottom:373.319851px;}
.y56{bottom:373.859850px;}
.yd0{bottom:374.399850px;}
.y10c{bottom:377.999849px;}
.y8a{bottom:378.179849px;}
.y29{bottom:381.959847px;}
.ye6{bottom:383.579847px;}
.ya1{bottom:390.779844px;}
.y55{bottom:391.499843px;}
.ycf{bottom:392.759843px;}
.y10b{bottom:394.199842px;}
.y89{bottom:395.999842px;}
.y28{bottom:399.779840px;}
.ye5{bottom:403.019839px;}
.ybc{bottom:408.599837px;}
.ya0{bottom:408.779836px;}
.y54{bottom:409.499836px;}
.yce{bottom:410.579836px;}
.y88{bottom:413.819834px;}
.y27{bottom:417.419833px;}
.ye4{bottom:422.459831px;}
.y10a{bottom:426.599829px;}
.y9f{bottom:426.779829px;}
.y53{bottom:427.319829px;}
.ycd{bottom:428.399829px;}
.y87{bottom:431.639827px;}
.y26{bottom:435.419826px;}
.ye3{bottom:442.079823px;}
.y109{bottom:442.799823px;}
.y9e{bottom:444.599822px;}
.y52{bottom:445.139822px;}
.ycc{bottom:446.219822px;}
.y86{bottom:449.459820px;}
.y25{bottom:453.239819px;}
.y108{bottom:458.999816px;}
.ye2{bottom:461.519815px;}
.y9d{bottom:462.419815px;}
.y51{bottom:462.959815px;}
.ycb{bottom:464.039814px;}
.y85{bottom:467.459813px;}
.y24{bottom:471.059812px;}
.y107{bottom:475.379810px;}
.y9c{bottom:480.239808px;}
.ye1{bottom:480.419808px;}
.y50{bottom:480.779808px;}
.yca{bottom:481.859807px;}
.y84{bottom:485.099806px;}
.y23{bottom:488.879804px;}
.y106{bottom:491.579803px;}
.y9b{bottom:498.059801px;}
.ybb{bottom:498.239801px;}
.y4f{bottom:498.599801px;}
.yc9{bottom:499.679800px;}
.y83{bottom:502.919799px;}
.y22{bottom:506.699797px;}
.y105{bottom:507.779797px;}
.y9a{bottom:515.879794px;}
.y4e{bottom:516.419793px;}
.yc8{bottom:517.319793px;}
.yba{bottom:517.679793px;}
.y82{bottom:520.919792px;}
.y104{bottom:523.799790px;}
.y21{bottom:525.239790px;}
.y138{bottom:532.799787px;}
.y99{bottom:533.699787px;}
.y4d{bottom:534.419786px;}
.yb9{bottom:535.319786px;}
.y81{bottom:538.559785px;}
.y103{bottom:540.179784px;}
.y20{bottom:547.019781px;}
.y137{bottom:551.519779px;}
.y98{bottom:551.699779px;}
.y4c{bottom:552.059779px;}
.yb8{bottom:553.319779px;}
.y102{bottom:556.379777px;}
.y80{bottom:556.559777px;}
.y1f{bottom:563.219775px;}
.y136{bottom:567.719773px;}
.y97{bottom:569.519772px;}
.y4b{bottom:569.879772px;}
.yb7{bottom:571.139772px;}
.y101{bottom:572.579771px;}
.y7f{bottom:574.919770px;}
.y1e{bottom:579.599768px;}
.y135{bottom:583.919766px;}
.y4a{bottom:587.879765px;}
.yb6{bottom:588.779764px;}
.y96{bottom:589.499764px;}
.y1d{bottom:595.799762px;}
.y7e{bottom:597.599761px;}
.y134{bottom:600.119760px;}
.y100{bottom:605.159758px;}
.y49{bottom:605.519758px;}
.yb5{bottom:606.419757px;}
.yc7{bottom:606.779757px;}
.y1c{bottom:612.359755px;}
.y133{bottom:616.499753px;}
.y7d{bottom:620.279752px;}
.yff{bottom:621.179752px;}
.y48{bottom:623.519751px;}
.yb4{bottom:624.599750px;}
.y132{bottom:632.519747px;}
.y1b{bottom:633.059747px;}
.yfe{bottom:637.379745px;}
.y47{bottom:641.339743px;}
.yc6{bottom:642.239743px;}
.y7c{bottom:642.419743px;}
.y131{bottom:648.719741px;}
.y1a{bottom:649.259740px;}
.yfd{bottom:653.579739px;}
.y46{bottom:659.159736px;}
.y7b{bottom:660.239736px;}
.y130{bottom:664.919734px;}
.y19{bottom:665.459734px;}
.yfc{bottom:669.959732px;}
.y45{bottom:676.979729px;}
.y7a{bottom:678.059729px;}
.y12f{bottom:681.299727px;}
.y18{bottom:681.659727px;}
.yfb{bottom:686.159726px;}
.y44{bottom:694.799722px;}
.y79{bottom:695.879722px;}
.y12e{bottom:697.499721px;}
.y17{bottom:698.039721px;}
.yfa{bottom:702.359719px;}
.y43{bottom:712.799715px;}
.ye0{bottom:713.339715px;}
.y78{bottom:713.699715px;}
.y16{bottom:714.059714px;}
.yf9{bottom:718.379713px;}
.y12d{bottom:729.719708px;}
.y15{bottom:730.259708px;}
.y42{bottom:730.439708px;}
.y77{bottom:731.699707px;}
.yf8{bottom:734.759706px;}
.y12c{bottom:746.099702px;}
.y14{bottom:746.819701px;}
.y41{bottom:748.259701px;}
.yb3{bottom:749.159700px;}
.y76{bottom:749.339700px;}
.yf7{bottom:750.959700px;}
.y12b{bottom:762.299695px;}
.y40{bottom:766.259693px;}
.yb2{bottom:766.799693px;}
.y75{bottom:767.159693px;}
.y13{bottom:768.419693px;}
.y12a{bottom:778.499689px;}
.yf6{bottom:783.359687px;}
.y3f{bottom:783.899686px;}
.y74{bottom:785.159686px;}
.y12{bottom:787.859685px;}
.y129{bottom:794.699682px;}
.y11{bottom:795.599682px;}
.yf5{bottom:799.559680px;}
.y3e{bottom:801.899679px;}
.y73{bottom:802.979679px;}
.y10{bottom:807.299677px;}
.y128{bottom:811.079676px;}
.yf4{bottom:815.759674px;}
.y3d{bottom:819.719672px;}
.y72{bottom:820.799672px;}
.yf{bottom:826.739669px;}
.y127{bottom:827.099669px;}
.yf3{bottom:831.959667px;}
.ye{bottom:834.479666px;}
.y3c{bottom:837.539665px;}
.yb1{bottom:838.259665px;}
.y71{bottom:838.619665px;}
.y126{bottom:843.299663px;}
.yd{bottom:846.179662px;}
.yf2{bottom:848.159661px;}
.y3b{bottom:855.359658px;}
.yc5{bottom:856.079658px;}
.y70{bottom:856.439657px;}
.y125{bottom:859.499656px;}
.yf1{bottom:864.539654px;}
.yc{bottom:865.619654px;}
.y3a{bottom:873.179651px;}
.yb{bottom:873.539651px;}
.y6f{bottom:874.259650px;}
.y124{bottom:875.879650px;}
.yf0{bottom:880.739648px;}
.ya{bottom:885.059646px;}
.y39{bottom:890.999644px;}
.y6e{bottom:892.079643px;}
.yef{bottom:896.759641px;}
.y8{bottom:906.299637px;}
.y123{bottom:908.099637px;}
.y38{bottom:908.819636px;}
.y6d{bottom:910.079636px;}
.yee{bottom:912.959635px;}
.y9{bottom:914.759634px;}
.y122{bottom:924.299630px;}
.y37{bottom:926.819629px;}
.y7{bottom:927.179629px;}
.yc4{bottom:927.359629px;}
.y6c{bottom:927.719629px;}
.yed{bottom:929.339628px;}
.y121{bottom:940.679624px;}
.y36{bottom:944.459622px;}
.y6b{bottom:945.539622px;}
.y6{bottom:952.919619px;}
.y120{bottom:956.879617px;}
.yec{bottom:961.739615px;}
.y35{bottom:962.279615px;}
.y6a{bottom:963.539615px;}
.y11f{bottom:973.079611px;}
.yeb{bottom:977.939609px;}
.y34{bottom:980.279608px;}
.y69{bottom:981.179608px;}
.y5{bottom:984.599606px;}
.y11e{bottom:989.279604px;}
.yea{bottom:994.859602px;}
.y33{bottom:997.919601px;}
.y68{bottom:999.179600px;}
.y11d{bottom:1005.479598px;}
.y32{bottom:1015.919594px;}
.y4{bottom:1016.459593px;}
.y67{bottom:1016.999593px;}
.y11c{bottom:1021.679591px;}
.y31{bottom:1033.739587px;}
.ydf{bottom:1034.459586px;}
.y66{bottom:1034.819586px;}
.y11b{bottom:1037.879585px;}
.y3{bottom:1045.619582px;}
.y30{bottom:1052.099579px;}
.yc3{bottom:1052.279579px;}
.y65{bottom:1052.639579px;}
.y11a{bottom:1054.079578px;}
.y1{bottom:1086.659565px;}
.h8{height:31.196274px;}
.h7{height:33.059322px;}
.hb{height:38.367100px;}
.hc{height:38.479449px;}
.h1{height:38.647972px;}
.he{height:41.498649px;}
.hd{height:42.837064px;}
.h10{height:43.210644px;}
.h9{height:46.563821px;}
.hf{height:46.969901px;}
.ha{height:50.069644px;}
.h6{height:50.288927px;}
.h5{height:54.953119px;}
.h2{height:62.469969px;}
.h4{height:67.663449px;}
.h3{height:75.330374px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:153.179907px;}
.x1{left:168.839932px;}
.x29{left:178.559938px;}
.xc{left:184.320476px;}
.xd{left:198.707921px;}
.x2a{left:203.939923px;}
.x1e{left:210.059916px;}
.x1f{left:215.819914px;}
.x24{left:221.039912px;}
.x25{left:226.799909px;}
.x18{left:234.359906px;}
.x21{left:237.239905px;}
.x22{left:242.999903px;}
.xe{left:268.379893px;}
.x4{left:279.000293px;}
.x5{left:284.579886px;}
.xf{left:301.127880px;}
.x6{left:303.467879px;}
.x19{left:344.339862px;}
.x1a{left:350.279860px;}
.x7{left:373.499851px;}
.x23{left:393.839929px;}
.x8{left:399.599840px;}
.x20{left:403.559627px;}
.x15{left:413.819539px;}
.x16{left:428.207829px;}
.x3{left:457.739817px;}
.x9{left:469.799812px;}
.x26{left:480.059884px;}
.x17{left:501.479799px;}
.xa{left:502.739799px;}
.x1b{left:511.199796px;}
.x10{left:512.279795px;}
.x1c{left:516.959793px;}
.x11{left:533.699787px;}
.x12{left:624.059750px;}
.xb{left:642.779743px;}
.x1d{left:674.819730px;}
.x13{left:683.267727px;}
.x28{left:729.179708px;}
.x14{left:730.979708px;}
.x27{left:748.259391px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.165346pt;}
.ls3{letter-spacing:0.312153pt;}
.ls0{letter-spacing:13.806981pt;}
.ls4{letter-spacing:15.018447pt;}
.ls1{letter-spacing:18.264144pt;}
.ls6{letter-spacing:22.071806pt;}
.ls7{letter-spacing:168.341877pt;}
.ws0{word-spacing:-22.559991pt;}
.ws2{word-spacing:-17.596260pt;}
.ws1{word-spacing:-12.483195pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-168.341877pt;}
._1{margin-left:-1.286321pt;}
._0{width:1.107461pt;}
._2{width:2.147421pt;}
._4{width:3.321176pt;}
._3{width:4.626765pt;}
._8{width:5.834259pt;}
._9{width:6.982524pt;}
._a{width:8.157468pt;}
._e{width:9.788706pt;}
._5{width:11.243781pt;}
._d{width:12.768457pt;}
._6{width:14.172771pt;}
._7{width:15.132496pt;}
._b{width:16.100083pt;}
._c{width:17.092731pt;}
._f{width:18.336333pt;}
._10{width:20.317725pt;}
._11{width:21.357370pt;}
._18{width:22.649153pt;}
._19{width:23.692618pt;}
._1c{width:25.321993pt;}
._16{width:27.131219pt;}
._17{width:29.054902pt;}
._12{width:30.615836pt;}
._13{width:31.628504pt;}
._1b{width:33.096561pt;}
._1a{width:34.184613pt;}
._15{width:44.563307pt;}
._14{width:45.552196pt;}
._1e{width:85.154272pt;}
._1d{width:110.120240pt;}
.fs7{font-size:40.305264pt;}
.fs6{font-size:42.712303pt;}
.fs0{font-size:49.932780pt;}
.fs9{font-size:55.345045pt;}
.fs8{font-size:60.159976pt;}
.fs5{font-size:64.972774pt;}
.fs4{font-size:70.385039pt;}
.fs1{font-size:80.012768pt;}
.fs3{font-size:90.239964pt;}
.fs2{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:94.559962pt;}
.yc2{bottom:109.599956pt;}
.yb0{bottom:109.759956pt;}
.y64{bottom:110.239956pt;}
.yde{bottom:111.039956pt;}
.yaf{bottom:125.599950pt;}
.yc1{bottom:125.759950pt;}
.y63{bottom:126.239950pt;}
.ydd{bottom:127.199949pt;}
.ye9{bottom:129.919948pt;}
.y119{bottom:134.239946pt;}
.yae{bottom:141.599943pt;}
.y62{bottom:142.079943pt;}
.ydc{bottom:143.039943pt;}
.ye8{bottom:145.919942pt;}
.y118{bottom:148.639941pt;}
.yad{bottom:157.279937pt;}
.y61{bottom:157.759937pt;}
.ydb{bottom:158.879936pt;}
.y95{bottom:161.759935pt;}
.y117{bottom:163.039935pt;}
.yc0{bottom:172.959931pt;}
.yac{bottom:173.279931pt;}
.y60{bottom:173.759930pt;}
.yda{bottom:174.719930pt;}
.y116{bottom:177.439929pt;}
.y94{bottom:177.599929pt;}
.yab{bottom:189.119924pt;}
.y5f{bottom:189.599924pt;}
.yd9{bottom:190.559924pt;}
.y115{bottom:191.999923pt;}
.y93{bottom:193.439923pt;}
.yaa{bottom:204.959918pt;}
.y5e{bottom:205.439918pt;}
.yd8{bottom:206.399917pt;}
.y92{bottom:209.279916pt;}
.y114{bottom:220.639912pt;}
.ya9{bottom:220.799912pt;}
.y5d{bottom:221.279911pt;}
.yd7{bottom:222.079911pt;}
.y91{bottom:225.119910pt;}
.y113{bottom:235.039906pt;}
.ya8{bottom:236.639905pt;}
.y5c{bottom:237.119905pt;}
.yd6{bottom:237.759905pt;}
.y90{bottom:240.959904pt;}
.y2f{bottom:244.319902pt;}
.y112{bottom:249.599900pt;}
.ya7{bottom:252.319899pt;}
.ybf{bottom:252.479899pt;}
.y5b{bottom:252.959899pt;}
.yd5{bottom:253.599899pt;}
.y8f{bottom:256.959897pt;}
.y2e{bottom:260.159896pt;}
.y111{bottom:263.999894pt;}
.ybe{bottom:267.999893pt;}
.ya6{bottom:268.319893pt;}
.y5a{bottom:268.799892pt;}
.yd4{bottom:269.919892pt;}
.y8e{bottom:272.639891pt;}
.y2d{bottom:275.999890pt;}
.y110{bottom:278.399889pt;}
.ybd{bottom:283.999886pt;}
.ya5{bottom:284.159886pt;}
.y59{bottom:284.799886pt;}
.yd3{bottom:285.599886pt;}
.y8d{bottom:288.479885pt;}
.y2c{bottom:291.839883pt;}
.y10f{bottom:292.799883pt;}
.ya4{bottom:300.159880pt;}
.y58{bottom:300.479880pt;}
.yd2{bottom:301.599879pt;}
.y8c{bottom:304.479878pt;}
.y10e{bottom:307.199877pt;}
.y2b{bottom:307.679877pt;}
.ya3{bottom:315.839874pt;}
.y57{bottom:316.479873pt;}
.yd1{bottom:317.439873pt;}
.y8b{bottom:320.159872pt;}
.ye7{bottom:320.799872pt;}
.y10d{bottom:321.599871pt;}
.y2a{bottom:323.519871pt;}
.ya2{bottom:331.839867pt;}
.y56{bottom:332.319867pt;}
.yd0{bottom:332.799867pt;}
.y10c{bottom:335.999866pt;}
.y8a{bottom:336.159866pt;}
.y29{bottom:339.519864pt;}
.ye6{bottom:340.959864pt;}
.ya1{bottom:347.359861pt;}
.y55{bottom:347.999861pt;}
.ycf{bottom:349.119860pt;}
.y10b{bottom:350.399860pt;}
.y89{bottom:351.999859pt;}
.y28{bottom:355.359858pt;}
.ye5{bottom:358.239857pt;}
.ybc{bottom:363.199855pt;}
.ya0{bottom:363.359855pt;}
.y54{bottom:363.999854pt;}
.yce{bottom:364.959854pt;}
.y88{bottom:367.839853pt;}
.y27{bottom:371.039852pt;}
.ye4{bottom:375.519850pt;}
.y10a{bottom:379.199848pt;}
.y9f{bottom:379.359848pt;}
.y53{bottom:379.839848pt;}
.ycd{bottom:380.799848pt;}
.y87{bottom:383.679847pt;}
.y26{bottom:387.039845pt;}
.ye3{bottom:392.959843pt;}
.y109{bottom:393.599843pt;}
.y9e{bottom:395.199842pt;}
.y52{bottom:395.679842pt;}
.ycc{bottom:396.639841pt;}
.y86{bottom:399.519840pt;}
.y25{bottom:402.879839pt;}
.y108{bottom:407.999837pt;}
.ye2{bottom:410.239836pt;}
.y9d{bottom:411.039836pt;}
.y51{bottom:411.519835pt;}
.ycb{bottom:412.479835pt;}
.y85{bottom:415.519834pt;}
.y24{bottom:418.719833pt;}
.y107{bottom:422.559831pt;}
.y9c{bottom:426.879829pt;}
.ye1{bottom:427.039829pt;}
.y50{bottom:427.359829pt;}
.yca{bottom:428.319829pt;}
.y84{bottom:431.199828pt;}
.y23{bottom:434.559826pt;}
.y106{bottom:436.959825pt;}
.y9b{bottom:442.719823pt;}
.ybb{bottom:442.879823pt;}
.y4f{bottom:443.199823pt;}
.yc9{bottom:444.159822pt;}
.y83{bottom:447.039821pt;}
.y22{bottom:450.399820pt;}
.y105{bottom:451.359819pt;}
.y9a{bottom:458.559817pt;}
.y4e{bottom:459.039816pt;}
.yc8{bottom:459.839816pt;}
.yba{bottom:460.159816pt;}
.y82{bottom:463.039815pt;}
.y104{bottom:465.599814pt;}
.y21{bottom:466.879813pt;}
.y138{bottom:473.599811pt;}
.y99{bottom:474.399810pt;}
.y4d{bottom:475.039810pt;}
.yb9{bottom:475.839810pt;}
.y81{bottom:478.719809pt;}
.y103{bottom:480.159808pt;}
.y20{bottom:486.239806pt;}
.y137{bottom:490.239804pt;}
.y98{bottom:490.399804pt;}
.y4c{bottom:490.719804pt;}
.yb8{bottom:491.839803pt;}
.y102{bottom:494.559802pt;}
.y80{bottom:494.719802pt;}
.y1f{bottom:500.639800pt;}
.y136{bottom:504.639798pt;}
.y97{bottom:506.239798pt;}
.y4b{bottom:506.559797pt;}
.yb7{bottom:507.679797pt;}
.y101{bottom:508.959796pt;}
.y7f{bottom:511.039796pt;}
.y1e{bottom:515.199794pt;}
.y135{bottom:519.039792pt;}
.y4a{bottom:522.559791pt;}
.yb6{bottom:523.359791pt;}
.y96{bottom:523.999790pt;}
.y1d{bottom:529.599788pt;}
.y7e{bottom:531.199788pt;}
.y134{bottom:533.439787pt;}
.y100{bottom:537.919785pt;}
.y49{bottom:538.239785pt;}
.yb5{bottom:539.039784pt;}
.yc7{bottom:539.359784pt;}
.y1c{bottom:544.319782pt;}
.y133{bottom:547.999781pt;}
.y7d{bottom:551.359779pt;}
.yff{bottom:552.159779pt;}
.y48{bottom:554.239778pt;}
.yb4{bottom:555.199778pt;}
.y132{bottom:562.239775pt;}
.y1b{bottom:562.719775pt;}
.yfe{bottom:566.559773pt;}
.y47{bottom:570.079772pt;}
.yc6{bottom:570.879772pt;}
.y7c{bottom:571.039772pt;}
.y131{bottom:576.639769pt;}
.y1a{bottom:577.119769pt;}
.yfd{bottom:580.959768pt;}
.y46{bottom:585.919766pt;}
.y7b{bottom:586.879765pt;}
.y130{bottom:591.039764pt;}
.y19{bottom:591.519763pt;}
.yfc{bottom:595.519762pt;}
.y45{bottom:601.759759pt;}
.y7a{bottom:602.719759pt;}
.y12f{bottom:605.599758pt;}
.y18{bottom:605.919758pt;}
.yfb{bottom:609.919756pt;}
.y44{bottom:617.599753pt;}
.y79{bottom:618.559753pt;}
.y12e{bottom:619.999752pt;}
.y17{bottom:620.479752pt;}
.yfa{bottom:624.319750pt;}
.y43{bottom:633.599747pt;}
.ye0{bottom:634.079746pt;}
.y78{bottom:634.399746pt;}
.y16{bottom:634.719746pt;}
.yf9{bottom:638.559745pt;}
.y12d{bottom:648.639741pt;}
.y15{bottom:649.119740pt;}
.y42{bottom:649.279740pt;}
.y77{bottom:650.399740pt;}
.yf8{bottom:653.119739pt;}
.y12c{bottom:663.199735pt;}
.y14{bottom:663.839734pt;}
.y41{bottom:665.119734pt;}
.yb3{bottom:665.919734pt;}
.y76{bottom:666.079734pt;}
.yf7{bottom:667.519733pt;}
.y12b{bottom:677.599729pt;}
.y40{bottom:681.119728pt;}
.yb2{bottom:681.599727pt;}
.y75{bottom:681.919727pt;}
.y13{bottom:683.039727pt;}
.y12a{bottom:691.999723pt;}
.yf6{bottom:696.319721pt;}
.y3f{bottom:696.799721pt;}
.y74{bottom:697.919721pt;}
.y12{bottom:700.319720pt;}
.y129{bottom:706.399717pt;}
.y11{bottom:707.199717pt;}
.yf5{bottom:710.719716pt;}
.y3e{bottom:712.799715pt;}
.y73{bottom:713.759714pt;}
.y10{bottom:717.599713pt;}
.y128{bottom:720.959712pt;}
.yf4{bottom:725.119710pt;}
.y3d{bottom:728.639709pt;}
.y72{bottom:729.599708pt;}
.yf{bottom:734.879706pt;}
.y127{bottom:735.199706pt;}
.yf3{bottom:739.519704pt;}
.ye{bottom:741.759703pt;}
.y3c{bottom:744.479702pt;}
.yb1{bottom:745.119702pt;}
.y71{bottom:745.439702pt;}
.y126{bottom:749.599700pt;}
.yd{bottom:752.159699pt;}
.yf2{bottom:753.919698pt;}
.y3b{bottom:760.319696pt;}
.yc5{bottom:760.959696pt;}
.y70{bottom:761.279695pt;}
.y125{bottom:763.999694pt;}
.yf1{bottom:768.479693pt;}
.yc{bottom:769.439692pt;}
.y3a{bottom:776.159690pt;}
.yb{bottom:776.479689pt;}
.y6f{bottom:777.119689pt;}
.y124{bottom:778.559689pt;}
.yf0{bottom:782.879687pt;}
.ya{bottom:786.719685pt;}
.y39{bottom:791.999683pt;}
.y6e{bottom:792.959683pt;}
.yef{bottom:797.119681pt;}
.y8{bottom:805.599678pt;}
.y123{bottom:807.199677pt;}
.y38{bottom:807.839677pt;}
.y6d{bottom:808.959676pt;}
.yee{bottom:811.519675pt;}
.y9{bottom:813.119675pt;}
.y122{bottom:821.599671pt;}
.y37{bottom:823.839670pt;}
.y7{bottom:824.159670pt;}
.yc4{bottom:824.319670pt;}
.y6c{bottom:824.639670pt;}
.yed{bottom:826.079670pt;}
.y121{bottom:836.159666pt;}
.y36{bottom:839.519664pt;}
.y6b{bottom:840.479664pt;}
.y6{bottom:847.039661pt;}
.y120{bottom:850.559660pt;}
.yec{bottom:854.879658pt;}
.y35{bottom:855.359658pt;}
.y6a{bottom:856.479657pt;}
.y11f{bottom:864.959654pt;}
.yeb{bottom:869.279652pt;}
.y34{bottom:871.359651pt;}
.y69{bottom:872.159651pt;}
.y5{bottom:875.199650pt;}
.y11e{bottom:879.359648pt;}
.yea{bottom:884.319646pt;}
.y33{bottom:887.039645pt;}
.y68{bottom:888.159645pt;}
.y11d{bottom:893.759642pt;}
.y32{bottom:903.039639pt;}
.y4{bottom:903.519639pt;}
.y67{bottom:903.999638pt;}
.y11c{bottom:908.159637pt;}
.y31{bottom:918.879632pt;}
.ydf{bottom:919.519632pt;}
.y66{bottom:919.839632pt;}
.y11b{bottom:922.559631pt;}
.y3{bottom:929.439628pt;}
.y30{bottom:935.199626pt;}
.yc3{bottom:935.359626pt;}
.y65{bottom:935.679626pt;}
.y11a{bottom:936.959625pt;}
.y1{bottom:965.919614pt;}
.h8{height:27.730022pt;}
.h7{height:29.386064pt;}
.hb{height:34.104089pt;}
.hc{height:34.203954pt;}
.h1{height:34.353753pt;}
.he{height:36.887688pt;}
.hd{height:38.077391pt;}
.h10{height:38.409461pt;}
.h9{height:41.390063pt;}
.hf{height:41.751023pt;}
.ha{height:44.506350pt;}
.h6{height:44.701269pt;}
.h5{height:48.847217pt;}
.h2{height:55.528861pt;}
.h4{height:60.145288pt;}
.h3{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:136.159917pt;}
.x1{left:150.079940pt;}
.x29{left:158.719945pt;}
.xc{left:163.840423pt;}
.xd{left:176.629263pt;}
.x2a{left:181.279932pt;}
.x1e{left:186.719925pt;}
.x1f{left:191.839923pt;}
.x24{left:196.479921pt;}
.x25{left:201.599919pt;}
.x18{left:208.319917pt;}
.x21{left:210.879916pt;}
.x22{left:215.999914pt;}
.xe{left:238.559905pt;}
.x4{left:248.000261pt;}
.x5{left:252.959899pt;}
.xf{left:267.669226pt;}
.x6{left:269.749225pt;}
.x19{left:306.079878pt;}
.x1a{left:311.359875pt;}
.x7{left:331.999867pt;}
.x23{left:350.079937pt;}
.x8{left:355.199858pt;}
.x20{left:358.719669pt;}
.x15{left:367.839590pt;}
.x16{left:380.629181pt;}
.x3{left:406.879837pt;}
.x9{left:417.599833pt;}
.x26{left:426.719897pt;}
.x17{left:445.759822pt;}
.xa{left:446.879821pt;}
.x1b{left:454.399818pt;}
.x10{left:455.359818pt;}
.x1c{left:459.519816pt;}
.x11{left:474.399810pt;}
.x12{left:554.719778pt;}
.xb{left:571.359771pt;}
.x1d{left:599.839760pt;}
.x13{left:607.349090pt;}
.x28{left:648.159741pt;}
.x14{left:649.759740pt;}
.x27{left:665.119459pt;}
}




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