
    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_929afee1f9827ee5098dac32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_e3c15eeb5ecc5848c01c199a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_82f3b89ad2fd4d1ceda2d06d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_2ba5e899010f5ac8b7364a6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_ecff4f686674a37295bdc113.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_315f2a7e2da85948d332d1cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.018555;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_feb42f62ee123c61a5648f15.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018555;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_86fe35439a8bbe6ee7c22c81.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.216309;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_98ccb21ab442fba20a3c1b41.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.216309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f43573eacbf4431a251a3717.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_17bc151bc7b44f32a2a024ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.840820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f8c57c4fe0a35b3f576928c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ef3cdc5d20f54b1b74fe2c79.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000003px;}
.ls11{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls10{letter-spacing:33.984000px;}
.ls3{letter-spacing:576.876000px;}
.ls4{letter-spacing:589.836000px;}
.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:-72.000000px;}
.ws6{word-spacing:-40.608000px;}
.ws8{word-spacing:-18.648000px;}
.ws9{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws1{word-spacing:-14.328000px;}
.ws4{word-spacing:0.000000px;}
._44{margin-left:-6.924000px;}
._2{margin-left:-5.256000px;}
._4{margin-left:-4.212000px;}
._1{margin-left:-2.808000px;}
._0{margin-left:-1.008000px;}
._3{width:1.452000px;}
._11{width:2.616000px;}
._e{width:4.176000px;}
._f{width:5.472000px;}
._27{width:6.612000px;}
._29{width:7.644000px;}
._b{width:9.432000px;}
._c{width:10.812000px;}
._2c{width:11.832000px;}
._12{width:12.888000px;}
._23{width:14.256000px;}
._1a{width:15.264000px;}
._1b{width:16.548000px;}
._9{width:19.080000px;}
._8{width:20.160000px;}
._7{width:21.312000px;}
._1c{width:23.184000px;}
._22{width:24.696000px;}
._2b{width:25.776000px;}
._24{width:27.000000px;}
._2a{width:28.584000px;}
._25{width:29.664000px;}
._26{width:30.816000px;}
._17{width:32.328000px;}
._3b{width:33.372000px;}
._18{width:34.452000px;}
._10{width:35.856000px;}
._28{width:37.080000px;}
._a{width:38.232000px;}
._33{width:39.960000px;}
._13{width:41.544000px;}
._14{width:42.552000px;}
._19{width:43.632000px;}
._20{width:44.640000px;}
._d{width:45.720000px;}
._2e{width:47.448000px;}
._2d{width:48.672000px;}
._32{width:49.752000px;}
._16{width:51.624000px;}
._15{width:52.776000px;}
._40{width:54.144000px;}
._30{width:55.152000px;}
._2f{width:56.448000px;}
._1e{width:58.320000px;}
._1d{width:59.532000px;}
._3e{width:63.720000px;}
._3f{width:64.812000px;}
._38{width:66.312000px;}
._3a{width:70.704000px;}
._31{width:72.792000px;}
._1f{width:73.872000px;}
._43{width:77.328000px;}
._42{width:78.696000px;}
._3d{width:81.360000px;}
._37{width:82.800000px;}
._35{width:86.040000px;}
._36{width:87.120000px;}
._34{width:88.992000px;}
._39{width:91.368000px;}
._21{width:102.528000px;}
._5{width:131.832000px;}
._6{width:133.200000px;}
._3c{width:162.432000px;}
._41{width:166.248000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.996000px;}
.y2{bottom:79.956000px;}
.y3c{bottom:104.616000px;}
.yf9{bottom:105.156000px;}
.y59{bottom:107.856000px;}
.ydd{bottom:108.216000px;}
.y11a{bottom:108.396000px;}
.y1f{bottom:113.436000px;}
.ycc{bottom:116.856000px;}
.yc1{bottom:117.216000px;}
.y7b{bottom:118.656000px;}
.y9a{bottom:119.916000px;}
.yf5{bottom:120.276000px;}
.y3b{bottom:128.916000px;}
.ye5{bottom:129.096000px;}
.yf8{bottom:129.456000px;}
.y10e{bottom:129.816000px;}
.y58{bottom:132.156000px;}
.ydc{bottom:132.516000px;}
.y119{bottom:132.696000px;}
.y1e{bottom:137.736000px;}
.ycb{bottom:141.156000px;}
.yb2{bottom:141.516000px;}
.y7a{bottom:142.956000px;}
.y99{bottom:144.216000px;}
.yf4{bottom:144.576000px;}
.y3a{bottom:153.210000px;}
.ye4{bottom:153.390000px;}
.y10d{bottom:154.110000px;}
.y57{bottom:156.450000px;}
.yfe{bottom:156.810000px;}
.y118{bottom:156.990000px;}
.y92{bottom:159.150000px;}
.y1d{bottom:162.030000px;}
.yca{bottom:165.450000px;}
.yb1{bottom:165.810000px;}
.y79{bottom:167.250000px;}
.y98{bottom:168.510000px;}
.ydb{bottom:168.690000px;}
.y39{bottom:177.510000px;}
.ye3{bottom:177.690000px;}
.y10c{bottom:178.230000px;}
.y56{bottom:180.750000px;}
.yfd{bottom:181.110000px;}
.y91{bottom:183.450000px;}
.y1c{bottom:186.330000px;}
.yc9{bottom:189.750000px;}
.yb0{bottom:190.110000px;}
.y78{bottom:191.550000px;}
.y97{bottom:192.810000px;}
.yda{bottom:192.990000px;}
.y117{bottom:193.350000px;}
.y68{bottom:201.855000px;}
.yc0{bottom:202.035000px;}
.yb6{bottom:205.095000px;}
.yfc{bottom:205.455000px;}
.y90{bottom:207.795000px;}
.y1b{bottom:210.675000px;}
.y38{bottom:213.735000px;}
.yc8{bottom:214.095000px;}
.yaf{bottom:214.275000px;}
.y10b{bottom:214.635000px;}
.y55{bottom:217.155000px;}
.yd9{bottom:217.335000px;}
.y116{bottom:217.695000px;}
.y67{bottom:226.155000px;}
.ybf{bottom:226.335000px;}
.y77{bottom:227.775000px;}
.yb5{bottom:229.395000px;}
.yfb{bottom:229.755000px;}
.y8f{bottom:232.095000px;}
.y37{bottom:238.035000px;}
.yae{bottom:238.575000px;}
.y1a{bottom:238.755000px;}
.y10a{bottom:238.935000px;}
.y54{bottom:241.455000px;}
.yd8{bottom:241.635000px;}
.y115{bottom:241.995000px;}
.y66{bottom:250.275000px;}
.ybe{bottom:250.635000px;}
.y76{bottom:252.615000px;}
.yc6{bottom:253.695000px;}
.y8e{bottom:256.395000px;}
.y36{bottom:262.335000px;}
.y19{bottom:263.055000px;}
.y109{bottom:263.235000px;}
.yb4{bottom:265.575000px;}
.y53{bottom:265.755000px;}
.yd7{bottom:265.935000px;}
.y65{bottom:274.575000px;}
.yad{bottom:274.935000px;}
.y75{bottom:276.915000px;}
.yf3{bottom:277.995000px;}
.y114{bottom:278.175000px;}
.y35{bottom:286.635000px;}
.ye2{bottom:286.995000px;}
.y18{bottom:287.355000px;}
.y108{bottom:287.535000px;}
.y52{bottom:289.875000px;}
.yd6{bottom:290.235000px;}
.y8d{bottom:292.575000px;}
.y64{bottom:298.875000px;}
.yac{bottom:299.235000px;}
.y74{bottom:301.215000px;}
.yf2{bottom:302.295000px;}
.y113{bottom:302.475000px;}
.y34{bottom:310.935000px;}
.ye7{bottom:311.115000px;}
.ye1{bottom:311.295000px;}
.y17{bottom:311.655000px;}
.y51{bottom:314.175000px;}
.yd5{bottom:314.535000px;}
.y8c{bottom:316.875000px;}
.y63{bottom:323.175000px;}
.yab{bottom:323.535000px;}
.y107{bottom:323.715000px;}
.y73{bottom:325.515000px;}
.yf1{bottom:326.595000px;}
.y112{bottom:326.775000px;}
.y33{bottom:335.235000px;}
.ye0{bottom:335.415000px;}
.y16{bottom:335.955000px;}
.y50{bottom:338.475000px;}
.yfa{bottom:338.835000px;}
.y8b{bottom:341.175000px;}
.y62{bottom:347.475000px;}
.yaa{bottom:347.835000px;}
.y106{bottom:348.015000px;}
.y72{bottom:350.355000px;}
.yd4{bottom:350.715000px;}
.yf0{bottom:350.895000px;}
.y32{bottom:359.535000px;}
.ybd{bottom:359.715000px;}
.y15{bottom:360.075000px;}
.y4f{bottom:362.775000px;}
.y111{bottom:363.135000px;}
.y8a{bottom:365.475000px;}
.y61{bottom:371.775000px;}
.ya9{bottom:372.135000px;}
.y105{bottom:372.315000px;}
.yd3{bottom:375.015000px;}
.y31{bottom:383.835000px;}
.ybc{bottom:384.015000px;}
.y14{bottom:384.375000px;}
.y71{bottom:386.535000px;}
.y4e{bottom:387.075000px;}
.y110{bottom:387.435000px;}
.y89{bottom:389.775000px;}
.y60{bottom:396.075000px;}
.ya8{bottom:396.255000px;}
.y104{bottom:396.615000px;}
.yd2{bottom:399.345000px;}
.yc7{bottom:407.985000px;}
.y30{bottom:408.165000px;}
.ybb{bottom:408.345000px;}
.y13{bottom:408.705000px;}
.y70{bottom:410.865000px;}
.y4d{bottom:411.405000px;}
.y10f{bottom:411.765000px;}
.y5f{bottom:420.405000px;}
.ya7{bottom:420.585000px;}
.ye6{bottom:423.465000px;}
.yd1{bottom:423.645000px;}
.y88{bottom:425.985000px;}
.y2f{bottom:432.285000px;}
.yba{bottom:432.645000px;}
.y12{bottom:433.005000px;}
.y6f{bottom:435.165000px;}
.y4c{bottom:435.705000px;}
.y5e{bottom:444.705000px;}
.yf7{bottom:444.885000px;}
.y96{bottom:447.765000px;}
.yd0{bottom:447.945000px;}
.y87{bottom:450.285000px;}
.y2e{bottom:456.585000px;}
.ya6{bottom:456.945000px;}
.y11{bottom:457.305000px;}
.y6e{bottom:460.005000px;}
.y5d{bottom:469.005000px;}
.y4b{bottom:471.885000px;}
.y95{bottom:472.065000px;}
.ycf{bottom:472.245000px;}
.y86{bottom:474.585000px;}
.y2d{bottom:480.885000px;}
.ya5{bottom:481.245000px;}
.y10{bottom:481.605000px;}
.y6d{bottom:484.305000px;}
.ydf{bottom:493.125000px;}
.y5c{bottom:493.305000px;}
.y103{bottom:493.485000px;}
.y4a{bottom:496.185000px;}
.yce{bottom:496.545000px;}
.y85{bottom:498.885000px;}
.y2c{bottom:505.185000px;}
.ya4{bottom:505.545000px;}
.y6c{bottom:508.605000px;}
.yf{bottom:514.905000px;}
.y5b{bottom:517.425000px;}
.y102{bottom:517.785000px;}
.y49{bottom:520.485000px;}
.ycd{bottom:520.845000px;}
.y84{bottom:523.185000px;}
.y2b{bottom:529.485000px;}
.ya3{bottom:529.845000px;}
.y6b{bottom:532.905000px;}
.ye{bottom:539.205000px;}
.y5a{bottom:541.725000px;}
.y101{bottom:542.085000px;}
.y48{bottom:544.785000px;}
.y83{bottom:547.485000px;}
.y2a{bottom:553.785000px;}
.ya2{bottom:554.145000px;}
.y6a{bottom:557.025000px;}
.yd{bottom:563.505000px;}
.yb9{bottom:566.025000px;}
.y100{bottom:566.385000px;}
.y47{bottom:569.085000px;}
.y82{bottom:571.785000px;}
.y29{bottom:578.085000px;}
.ya1{bottom:578.445000px;}
.yc5{bottom:581.145000px;}
.yef{bottom:581.325000px;}
.yc{bottom:587.805000px;}
.yb8{bottom:590.325000px;}
.y46{bottom:593.385000px;}
.y28{bottom:602.430000px;}
.ya0{bottom:602.610000px;}
.yc4{bottom:605.490000px;}
.yee{bottom:605.670000px;}
.y81{bottom:608.010000px;}
.yb7{bottom:614.670000px;}
.y45{bottom:617.730000px;}
.yb{bottom:621.150000px;}
.y27{bottom:626.730000px;}
.yf6{bottom:626.910000px;}
.yc3{bottom:629.790000px;}
.yed{bottom:629.970000px;}
.y80{bottom:632.310000px;}
.y9f{bottom:638.970000px;}
.y44{bottom:642.030000px;}
.ya{bottom:645.270000px;}
.y26{bottom:651.030000px;}
.yff{bottom:651.210000px;}
.yc2{bottom:654.090000px;}
.yec{bottom:654.270000px;}
.y7f{bottom:656.610000px;}
.y9e{bottom:663.270000px;}
.y43{bottom:666.330000px;}
.y9{bottom:669.570000px;}
.y25{bottom:675.330000px;}
.y94{bottom:678.210000px;}
.yeb{bottom:678.570000px;}
.y7e{bottom:680.910000px;}
.y9d{bottom:687.570000px;}
.y42{bottom:690.630000px;}
.y8{bottom:693.870000px;}
.yde{bottom:699.450000px;}
.y24{bottom:699.630000px;}
.y93{bottom:702.510000px;}
.yea{bottom:702.870000px;}
.y7d{bottom:705.210000px;}
.y9c{bottom:711.870000px;}
.y69{bottom:714.930000px;}
.y7{bottom:718.170000px;}
.y23{bottom:723.750000px;}
.y41{bottom:726.810000px;}
.ye9{bottom:727.170000px;}
.y9b{bottom:736.170000px;}
.yb3{bottom:739.230000px;}
.y7c{bottom:744.270000px;}
.y6{bottom:746.250000px;}
.y22{bottom:748.050000px;}
.y40{bottom:751.110000px;}
.ye8{bottom:763.350000px;}
.y5{bottom:770.550000px;}
.y21{bottom:772.350000px;}
.y3f{bottom:775.410000px;}
.y4{bottom:794.850000px;}
.y20{bottom:796.650000px;}
.y3e{bottom:799.740000px;}
.y1{bottom:820.980000px;}
.y3d{bottom:823.320000px;}
.h2{height:52.769531px;}
.h5{height:53.015625px;}
.h4{height:62.226562px;}
.h3{height:62.507812px;}
.h6{height:66.585938px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x3{left:71.315991px;}
.x8{left:73.655991px;}
.x16{left:98.315991px;}
.xf{left:111.815991px;}
.x15{left:125.315991px;}
.xc{left:152.309991px;}
.x11{left:155.369991px;}
.x10{left:160.949991px;}
.xd{left:167.069991px;}
.x14{left:173.549991px;}
.xa{left:177.014991px;}
.xe{left:200.414991px;}
.x7{left:223.634991px;}
.xb{left:232.274991px;}
.x5{left:235.874991px;}
.x4{left:263.774991px;}
.x12{left:270.794991px;}
.x9{left:280.694991px;}
.x13{left:289.694991px;}
.x17{left:297.284991px;}
.x2{left:300.344991px;}
.x6{left:314.744991px;}
.x1{left:417.389991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000003pt;}
.ls11{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls10{letter-spacing:30.208000pt;}
.ls3{letter-spacing:512.778667pt;}
.ls4{letter-spacing:524.298667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws6{word-spacing:-36.096000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws9{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws1{word-spacing:-12.736000pt;}
.ws4{word-spacing:0.000000pt;}
._44{margin-left:-6.154667pt;}
._2{margin-left:-4.672000pt;}
._4{margin-left:-3.744000pt;}
._1{margin-left:-2.496000pt;}
._0{margin-left:-0.896000pt;}
._3{width:1.290667pt;}
._11{width:2.325333pt;}
._e{width:3.712000pt;}
._f{width:4.864000pt;}
._27{width:5.877333pt;}
._29{width:6.794667pt;}
._b{width:8.384000pt;}
._c{width:9.610667pt;}
._2c{width:10.517333pt;}
._12{width:11.456000pt;}
._23{width:12.672000pt;}
._1a{width:13.568000pt;}
._1b{width:14.709333pt;}
._9{width:16.960000pt;}
._8{width:17.920000pt;}
._7{width:18.944000pt;}
._1c{width:20.608000pt;}
._22{width:21.952000pt;}
._2b{width:22.912000pt;}
._24{width:24.000000pt;}
._2a{width:25.408000pt;}
._25{width:26.368000pt;}
._26{width:27.392000pt;}
._17{width:28.736000pt;}
._3b{width:29.664000pt;}
._18{width:30.624000pt;}
._10{width:31.872000pt;}
._28{width:32.960000pt;}
._a{width:33.984000pt;}
._33{width:35.520000pt;}
._13{width:36.928000pt;}
._14{width:37.824000pt;}
._19{width:38.784000pt;}
._20{width:39.680000pt;}
._d{width:40.640000pt;}
._2e{width:42.176000pt;}
._2d{width:43.264000pt;}
._32{width:44.224000pt;}
._16{width:45.888000pt;}
._15{width:46.912000pt;}
._40{width:48.128000pt;}
._30{width:49.024000pt;}
._2f{width:50.176000pt;}
._1e{width:51.840000pt;}
._1d{width:52.917333pt;}
._3e{width:56.640000pt;}
._3f{width:57.610667pt;}
._38{width:58.944000pt;}
._3a{width:62.848000pt;}
._31{width:64.704000pt;}
._1f{width:65.664000pt;}
._43{width:68.736000pt;}
._42{width:69.952000pt;}
._3d{width:72.320000pt;}
._37{width:73.600000pt;}
._35{width:76.480000pt;}
._36{width:77.440000pt;}
._34{width:79.104000pt;}
._39{width:81.216000pt;}
._21{width:91.136000pt;}
._5{width:117.184000pt;}
._6{width:118.400000pt;}
._3c{width:144.384000pt;}
._41{width:147.776000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.552000pt;}
.y2{bottom:71.072000pt;}
.y3c{bottom:92.992000pt;}
.yf9{bottom:93.472000pt;}
.y59{bottom:95.872000pt;}
.ydd{bottom:96.192000pt;}
.y11a{bottom:96.352000pt;}
.y1f{bottom:100.832000pt;}
.ycc{bottom:103.872000pt;}
.yc1{bottom:104.192000pt;}
.y7b{bottom:105.472000pt;}
.y9a{bottom:106.592000pt;}
.yf5{bottom:106.912000pt;}
.y3b{bottom:114.592000pt;}
.ye5{bottom:114.752000pt;}
.yf8{bottom:115.072000pt;}
.y10e{bottom:115.392000pt;}
.y58{bottom:117.472000pt;}
.ydc{bottom:117.792000pt;}
.y119{bottom:117.952000pt;}
.y1e{bottom:122.432000pt;}
.ycb{bottom:125.472000pt;}
.yb2{bottom:125.792000pt;}
.y7a{bottom:127.072000pt;}
.y99{bottom:128.192000pt;}
.yf4{bottom:128.512000pt;}
.y3a{bottom:136.186667pt;}
.ye4{bottom:136.346667pt;}
.y10d{bottom:136.986667pt;}
.y57{bottom:139.066667pt;}
.yfe{bottom:139.386667pt;}
.y118{bottom:139.546667pt;}
.y92{bottom:141.466667pt;}
.y1d{bottom:144.026667pt;}
.yca{bottom:147.066667pt;}
.yb1{bottom:147.386667pt;}
.y79{bottom:148.666667pt;}
.y98{bottom:149.786667pt;}
.ydb{bottom:149.946667pt;}
.y39{bottom:157.786667pt;}
.ye3{bottom:157.946667pt;}
.y10c{bottom:158.426667pt;}
.y56{bottom:160.666667pt;}
.yfd{bottom:160.986667pt;}
.y91{bottom:163.066667pt;}
.y1c{bottom:165.626667pt;}
.yc9{bottom:168.666667pt;}
.yb0{bottom:168.986667pt;}
.y78{bottom:170.266667pt;}
.y97{bottom:171.386667pt;}
.yda{bottom:171.546667pt;}
.y117{bottom:171.866667pt;}
.y68{bottom:179.426667pt;}
.yc0{bottom:179.586667pt;}
.yb6{bottom:182.306667pt;}
.yfc{bottom:182.626667pt;}
.y90{bottom:184.706667pt;}
.y1b{bottom:187.266667pt;}
.y38{bottom:189.986667pt;}
.yc8{bottom:190.306667pt;}
.yaf{bottom:190.466667pt;}
.y10b{bottom:190.786667pt;}
.y55{bottom:193.026667pt;}
.yd9{bottom:193.186667pt;}
.y116{bottom:193.506667pt;}
.y67{bottom:201.026667pt;}
.ybf{bottom:201.186667pt;}
.y77{bottom:202.466667pt;}
.yb5{bottom:203.906667pt;}
.yfb{bottom:204.226667pt;}
.y8f{bottom:206.306667pt;}
.y37{bottom:211.586667pt;}
.yae{bottom:212.066667pt;}
.y1a{bottom:212.226667pt;}
.y10a{bottom:212.386667pt;}
.y54{bottom:214.626667pt;}
.yd8{bottom:214.786667pt;}
.y115{bottom:215.106667pt;}
.y66{bottom:222.466667pt;}
.ybe{bottom:222.786667pt;}
.y76{bottom:224.546667pt;}
.yc6{bottom:225.506667pt;}
.y8e{bottom:227.906667pt;}
.y36{bottom:233.186667pt;}
.y19{bottom:233.826667pt;}
.y109{bottom:233.986667pt;}
.yb4{bottom:236.066667pt;}
.y53{bottom:236.226667pt;}
.yd7{bottom:236.386667pt;}
.y65{bottom:244.066667pt;}
.yad{bottom:244.386667pt;}
.y75{bottom:246.146667pt;}
.yf3{bottom:247.106667pt;}
.y114{bottom:247.266667pt;}
.y35{bottom:254.786667pt;}
.ye2{bottom:255.106667pt;}
.y18{bottom:255.426667pt;}
.y108{bottom:255.586667pt;}
.y52{bottom:257.666667pt;}
.yd6{bottom:257.986667pt;}
.y8d{bottom:260.066667pt;}
.y64{bottom:265.666667pt;}
.yac{bottom:265.986667pt;}
.y74{bottom:267.746667pt;}
.yf2{bottom:268.706667pt;}
.y113{bottom:268.866667pt;}
.y34{bottom:276.386667pt;}
.ye7{bottom:276.546667pt;}
.ye1{bottom:276.706667pt;}
.y17{bottom:277.026667pt;}
.y51{bottom:279.266667pt;}
.yd5{bottom:279.586667pt;}
.y8c{bottom:281.666667pt;}
.y63{bottom:287.266667pt;}
.yab{bottom:287.586667pt;}
.y107{bottom:287.746667pt;}
.y73{bottom:289.346667pt;}
.yf1{bottom:290.306667pt;}
.y112{bottom:290.466667pt;}
.y33{bottom:297.986667pt;}
.ye0{bottom:298.146667pt;}
.y16{bottom:298.626667pt;}
.y50{bottom:300.866667pt;}
.yfa{bottom:301.186667pt;}
.y8b{bottom:303.266667pt;}
.y62{bottom:308.866667pt;}
.yaa{bottom:309.186667pt;}
.y106{bottom:309.346667pt;}
.y72{bottom:311.426667pt;}
.yd4{bottom:311.746667pt;}
.yf0{bottom:311.906667pt;}
.y32{bottom:319.586667pt;}
.ybd{bottom:319.746667pt;}
.y15{bottom:320.066667pt;}
.y4f{bottom:322.466667pt;}
.y111{bottom:322.786667pt;}
.y8a{bottom:324.866667pt;}
.y61{bottom:330.466667pt;}
.ya9{bottom:330.786667pt;}
.y105{bottom:330.946667pt;}
.yd3{bottom:333.346667pt;}
.y31{bottom:341.186667pt;}
.ybc{bottom:341.346667pt;}
.y14{bottom:341.666667pt;}
.y71{bottom:343.586667pt;}
.y4e{bottom:344.066667pt;}
.y110{bottom:344.386667pt;}
.y89{bottom:346.466667pt;}
.y60{bottom:352.066667pt;}
.ya8{bottom:352.226667pt;}
.y104{bottom:352.546667pt;}
.yd2{bottom:354.973333pt;}
.yc7{bottom:362.653333pt;}
.y30{bottom:362.813333pt;}
.ybb{bottom:362.973333pt;}
.y13{bottom:363.293333pt;}
.y70{bottom:365.213333pt;}
.y4d{bottom:365.693333pt;}
.y10f{bottom:366.013333pt;}
.y5f{bottom:373.693333pt;}
.ya7{bottom:373.853333pt;}
.ye6{bottom:376.413333pt;}
.yd1{bottom:376.573333pt;}
.y88{bottom:378.653333pt;}
.y2f{bottom:384.253333pt;}
.yba{bottom:384.573333pt;}
.y12{bottom:384.893333pt;}
.y6f{bottom:386.813333pt;}
.y4c{bottom:387.293333pt;}
.y5e{bottom:395.293333pt;}
.yf7{bottom:395.453333pt;}
.y96{bottom:398.013333pt;}
.yd0{bottom:398.173333pt;}
.y87{bottom:400.253333pt;}
.y2e{bottom:405.853333pt;}
.ya6{bottom:406.173333pt;}
.y11{bottom:406.493333pt;}
.y6e{bottom:408.893333pt;}
.y5d{bottom:416.893333pt;}
.y4b{bottom:419.453333pt;}
.y95{bottom:419.613333pt;}
.ycf{bottom:419.773333pt;}
.y86{bottom:421.853333pt;}
.y2d{bottom:427.453333pt;}
.ya5{bottom:427.773333pt;}
.y10{bottom:428.093333pt;}
.y6d{bottom:430.493333pt;}
.ydf{bottom:438.333333pt;}
.y5c{bottom:438.493333pt;}
.y103{bottom:438.653333pt;}
.y4a{bottom:441.053333pt;}
.yce{bottom:441.373333pt;}
.y85{bottom:443.453333pt;}
.y2c{bottom:449.053333pt;}
.ya4{bottom:449.373333pt;}
.y6c{bottom:452.093333pt;}
.yf{bottom:457.693333pt;}
.y5b{bottom:459.933333pt;}
.y102{bottom:460.253333pt;}
.y49{bottom:462.653333pt;}
.ycd{bottom:462.973333pt;}
.y84{bottom:465.053333pt;}
.y2b{bottom:470.653333pt;}
.ya3{bottom:470.973333pt;}
.y6b{bottom:473.693333pt;}
.ye{bottom:479.293333pt;}
.y5a{bottom:481.533333pt;}
.y101{bottom:481.853333pt;}
.y48{bottom:484.253333pt;}
.y83{bottom:486.653333pt;}
.y2a{bottom:492.253333pt;}
.ya2{bottom:492.573333pt;}
.y6a{bottom:495.133333pt;}
.yd{bottom:500.893333pt;}
.yb9{bottom:503.133333pt;}
.y100{bottom:503.453333pt;}
.y47{bottom:505.853333pt;}
.y82{bottom:508.253333pt;}
.y29{bottom:513.853333pt;}
.ya1{bottom:514.173333pt;}
.yc5{bottom:516.573333pt;}
.yef{bottom:516.733333pt;}
.yc{bottom:522.493333pt;}
.yb8{bottom:524.733333pt;}
.y46{bottom:527.453333pt;}
.y28{bottom:535.493333pt;}
.ya0{bottom:535.653333pt;}
.yc4{bottom:538.213333pt;}
.yee{bottom:538.373333pt;}
.y81{bottom:540.453333pt;}
.yb7{bottom:546.373333pt;}
.y45{bottom:549.093333pt;}
.yb{bottom:552.133333pt;}
.y27{bottom:557.093333pt;}
.yf6{bottom:557.253333pt;}
.yc3{bottom:559.813333pt;}
.yed{bottom:559.973333pt;}
.y80{bottom:562.053333pt;}
.y9f{bottom:567.973333pt;}
.y44{bottom:570.693333pt;}
.ya{bottom:573.573333pt;}
.y26{bottom:578.693333pt;}
.yff{bottom:578.853333pt;}
.yc2{bottom:581.413333pt;}
.yec{bottom:581.573333pt;}
.y7f{bottom:583.653333pt;}
.y9e{bottom:589.573333pt;}
.y43{bottom:592.293333pt;}
.y9{bottom:595.173333pt;}
.y25{bottom:600.293333pt;}
.y94{bottom:602.853333pt;}
.yeb{bottom:603.173333pt;}
.y7e{bottom:605.253333pt;}
.y9d{bottom:611.173333pt;}
.y42{bottom:613.893333pt;}
.y8{bottom:616.773333pt;}
.yde{bottom:621.733333pt;}
.y24{bottom:621.893333pt;}
.y93{bottom:624.453333pt;}
.yea{bottom:624.773333pt;}
.y7d{bottom:626.853333pt;}
.y9c{bottom:632.773333pt;}
.y69{bottom:635.493333pt;}
.y7{bottom:638.373333pt;}
.y23{bottom:643.333333pt;}
.y41{bottom:646.053333pt;}
.ye9{bottom:646.373333pt;}
.y9b{bottom:654.373333pt;}
.yb3{bottom:657.093333pt;}
.y7c{bottom:661.573333pt;}
.y6{bottom:663.333333pt;}
.y22{bottom:664.933333pt;}
.y40{bottom:667.653333pt;}
.ye8{bottom:678.533333pt;}
.y5{bottom:684.933333pt;}
.y21{bottom:686.533333pt;}
.y3f{bottom:689.253333pt;}
.y4{bottom:706.533333pt;}
.y20{bottom:708.133333pt;}
.y3e{bottom:710.880000pt;}
.y1{bottom:729.760000pt;}
.y3d{bottom:731.840000pt;}
.h2{height:46.906250pt;}
.h5{height:47.125000pt;}
.h4{height:55.312500pt;}
.h3{height:55.562500pt;}
.h6{height:59.187500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x3{left:63.391992pt;}
.x8{left:65.471992pt;}
.x16{left:87.391992pt;}
.xf{left:99.391992pt;}
.x15{left:111.391992pt;}
.xc{left:135.386658pt;}
.x11{left:138.106658pt;}
.x10{left:143.066658pt;}
.xd{left:148.506658pt;}
.x14{left:154.266658pt;}
.xa{left:157.346658pt;}
.xe{left:178.146658pt;}
.x7{left:198.786658pt;}
.xb{left:206.466658pt;}
.x5{left:209.666658pt;}
.x4{left:234.466658pt;}
.x12{left:240.706658pt;}
.x9{left:249.506658pt;}
.x13{left:257.506658pt;}
.x17{left:264.253325pt;}
.x2{left:266.973325pt;}
.x6{left:279.773325pt;}
.x1{left:371.013325pt;}
}




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