
    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_adff7d7e1998ea110b29e592.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_7b47b02f5b6d72f8606183c8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.692000;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_788960986873896a12efebc2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_364d785969d30c47c551002b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.998000;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_a0af8dd03622f2ceffd9c659.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690000;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_37f2d01de047a5206ce80684.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_239ee8d1b6fef34687bf3553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.598343px;}
.ls2{letter-spacing:-0.597149px;}
.ls6{letter-spacing:-0.530740px;}
.ls4{letter-spacing:-0.529929px;}
.ls5{letter-spacing:-0.430378px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.669475px;}
.ls7{letter-spacing:7.155016px;}
.ls0{letter-spacing:18.950332px;}
.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;}
}
.ws2{word-spacing:-13.449300px;}
.ws0{word-spacing:-12.852151px;}
.ws3{word-spacing:-9.414150px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-1461.238452px;}
._14{margin-left:-1433.006436px;}
._15{margin-left:-2.555627px;}
._13{width:1.008397px;}
._2{width:2.076572px;}
._b{width:3.814221px;}
._7{width:5.089215px;}
._5{width:6.192058px;}
._a{width:8.107238px;}
._16{width:9.236979px;}
._9{width:10.291404px;}
._4{width:11.378108px;}
._12{width:12.610025px;}
._10{width:14.062588px;}
._3{width:15.117013px;}
._f{width:16.279033px;}
._d{width:17.457191px;}
._8{width:18.651489px;}
._1b{width:19.684395px;}
._11{width:22.105269px;}
._0{width:24.154943px;}
._c{width:25.376139px;}
._6{width:27.103029px;}
._1a{width:29.109665px;}
._19{width:30.126432px;}
._17{width:31.170098px;}
._1{width:35.490013px;}
._1f{width:36.689690px;}
._18{width:53.463657px;}
._1c{width:69.753450px;}
._e{width:95.690714px;}
._1e{width:663.787176px;}
._1d{width:740.924540px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.891000px;}
.fs4{font-size:35.860800px;}
.fs8{font-size:37.656600px;}
.fs2{font-size:41.842200px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:50.211000px;}
.fs1{font-size:53.797200px;}
.fs5{font-size:59.775600px;}
.fs6{font-size:64.557000px;}
.fs0{font-size:119.551200px;}
.y0{bottom:0.000000px;}
.y69{bottom:55.106137px;}
.y57{bottom:55.106168px;}
.ye0{bottom:57.571998px;}
.y12f{bottom:57.572666px;}
.y124{bottom:57.572983px;}
.yd3{bottom:57.573770px;}
.y56{bottom:67.096050px;}
.y68{bottom:67.097066px;}
.ydf{bottom:69.477150px;}
.y12e{bottom:69.477818px;}
.y123{bottom:69.478135px;}
.yd2{bottom:69.478922px;}
.y55{bottom:71.773200px;}
.yde{bottom:74.154300px;}
.y67{bottom:79.002218px;}
.y54{bottom:79.003960px;}
.ydd{bottom:81.383318px;}
.y12d{bottom:81.467700px;}
.yd1{bottom:81.468805px;}
.y122{bottom:81.469064px;}
.y12c{bottom:86.059800px;}
.y53{bottom:90.909112px;}
.y66{bottom:90.992100px;}
.ydc{bottom:93.373200px;}
.y121{bottom:93.374216px;}
.y12b{bottom:93.374233px;}
.yd0{bottom:93.375003px;}
.y65{bottom:95.669250px;}
.ydb{bottom:97.965300px;}
.y64{bottom:102.899305px;}
.y52{bottom:102.900040px;}
.yda{bottom:105.195003px;}
.y12a{bottom:105.279385px;}
.y120{bottom:105.364098px;}
.ycf{bottom:105.364885px;}
.y51{bottom:114.889922px;}
.y63{bottom:114.890233px;}
.yd9{bottom:117.184885px;}
.y11f{bottom:117.269250px;}
.yce{bottom:117.270037px;}
.y129{bottom:117.270314px;}
.y11e{bottom:121.946400px;}
.y50{bottom:126.795074px;}
.y62{bottom:126.795385px;}
.y128{bottom:129.175466px;}
.yd8{bottom:129.175814px;}
.ycd{bottom:129.260966px;}
.y4f{bottom:138.786003px;}
.y61{bottom:138.786314px;}
.yd7{bottom:141.080966px;}
.y127{bottom:141.165348px;}
.ycc{bottom:141.250848px;}
.y4e{bottom:150.691155px;}
.y60{bottom:150.691466px;}
.y126{bottom:153.070500px;}
.yd6{bottom:153.070848px;}
.ycb{bottom:153.156000px;}
.y125{bottom:157.747500px;}
.yca{bottom:157.833000px;}
.y4d{bottom:162.681037px;}
.y5f{bottom:162.681348px;}
.yd5{bottom:164.976000px;}
.yc9{bottom:165.062618px;}
.yd4{bottom:169.653000px;}
.y5e{bottom:174.586500px;}
.y4c{bottom:174.587235px;}
.yc8{bottom:177.052500px;}
.y5d{bottom:179.263500px;}
.yc7{bottom:181.644000px;}
.y5c{bottom:186.492037px;}
.y4b{bottom:186.577118px;}
.yc6{bottom:188.958314px;}
.y5b{bottom:198.482966px;}
.y4a{bottom:198.567000px;}
.yc5{bottom:200.863466px;}
.y49{bottom:203.158500px;}
.yc1{bottom:210.134651px;}
.y5a{bottom:210.388118px;}
.yc4{bottom:212.853348px;}
.y59{bottom:222.378000px;}
.yc3{bottom:224.758500px;}
.yc0{bottom:225.441300px;}
.y58{bottom:227.055000px;}
.yc2{bottom:229.435500px;}
.ybf{bottom:240.663217px;}
.y47{bottom:252.312923px;}
.y95{bottom:254.694919px;}
.ybe{bottom:255.629598px;}
.y48{bottom:258.264000px;}
.y21{bottom:260.221055px;}
.y96{bottom:260.646000px;}
.y46{bottom:267.450110px;}
.y94{bottom:269.830761px;}
.ybd{bottom:270.851516px;}
.y20{bottom:275.527703px;}
.y45{bottom:282.672028px;}
.y93{bottom:285.052679px;}
.ybc{bottom:286.073434px;}
.y1f{bottom:290.834352px;}
.y44{bottom:297.893946px;}
.y92{bottom:300.189866px;}
.ybb{bottom:301.380082px;}
.y1e{bottom:306.141000px;}
.y43{bottom:312.775596px;}
.y91{bottom:315.327053px;}
.yba{bottom:316.602000px;}
.y42{bottom:327.997514px;}
.y90{bottom:330.548971px;}
.y1c{bottom:333.780150px;}
.y1d{bottom:338.371500px;}
.y41{bottom:343.219432px;}
.yb9{bottom:344.240364px;}
.y8f{bottom:345.686158px;}
.y1b{bottom:346.110000px;}
.yb8{bottom:356.485484px;}
.y40{bottom:358.187158px;}
.y8e{bottom:360.822000px;}
.y8c{bottom:360.823635px;}
.y8d{bottom:366.859500px;}
.yb7{bottom:368.731650px;}
.y3f{bottom:373.323000px;}
.y1a{bottom:373.663911px;}
.y8b{bottom:376.045553px;}
.yb6{bottom:381.061500px;}
.y3d{bottom:388.291896px;}
.y19{bottom:388.631637px;}
.y8a{bottom:391.182740px;}
.y3e{bottom:394.242000px;}
.y3c{bottom:403.513814px;}
.y18{bottom:403.938286px;}
.y89{bottom:406.318582px;}
.yb5{bottom:408.530651px;}
.y3b{bottom:418.651001px;}
.y17{bottom:419.244934px;}
.y88{bottom:421.540500px;}
.yb4{bottom:423.837300px;}
.y3a{bottom:433.872919px;}
.y16{bottom:434.551582px;}
.yfe{bottom:438.378000px;}
.yfc{bottom:438.378723px;}
.y11d{bottom:438.379595px;}
.yb3{bottom:438.718950px;}
.yfd{bottom:444.330000px;}
.y39{bottom:448.839300px;}
.y87{bottom:449.179101px;}
.y15{bottom:449.773500px;}
.y11c{bottom:450.455254px;}
.yfb{bottom:453.346449px;}
.yb2{bottom:454.025598px;}
.y86{bottom:461.339491px;}
.y11b{bottom:462.445137px;}
.y38{bottom:463.976487px;}
.yfa{bottom:468.312830px;}
.yb1{bottom:469.247516px;}
.y85{bottom:473.499880px;}
.y11a{bottom:474.520796px;}
.y13{bottom:477.495880px;}
.y37{bottom:479.198405px;}
.y14{bottom:482.088000px;}
.yf9{bottom:483.194480px;}
.yb0{bottom:484.469434px;}
.y84{bottom:485.745000px;}
.y119{bottom:486.511724px;}
.y12{bottom:489.741000px;}
.y36{bottom:494.420322px;}
.yf8{bottom:498.160862px;}
.y118{bottom:498.501606px;}
.yaf{bottom:499.776082px;}
.y35{bottom:509.556165px;}
.y117{bottom:510.577265px;}
.y83{bottom:513.044240px;}
.yf7{bottom:513.128587px;}
.yae{bottom:514.998000px;}
.yac{bottom:514.999016px;}
.y11{bottom:517.381034px;}
.yad{bottom:520.951500px;}
.y116{bottom:522.567148px;}
.y34{bottom:524.778082px;}
.yf6{bottom:528.010238px;}
.y82{bottom:528.266158px;}
.yab{bottom:530.220934px;}
.y10{bottom:532.687682px;}
.y115{bottom:534.642807px;}
.y33{bottom:540.000000px;}
.y31{bottom:540.001635px;}
.yf5{bottom:542.976619px;}
.y81{bottom:543.402000px;}
.yaa{bottom:545.527582px;}
.y32{bottom:545.953500px;}
.y114{bottom:546.633735px;}
.yf{bottom:547.995675px;}
.y30{bottom:555.138822px;}
.yf4{bottom:557.943000px;}
.y113{bottom:558.708348px;}
.ya9{bottom:560.749500px;}
.ya7{bottom:560.752437px;}
.ye{bottom:563.302324px;}
.ya8{bottom:566.701500px;}
.y2f{bottom:570.360740px;}
.y112{bottom:570.613500px;}
.y80{bottom:571.039721px;}
.yf2{bottom:572.913053px;}
.ya6{bottom:575.974355px;}
.yd{bottom:578.524241px;}
.yf3{bottom:578.863500px;}
.y111{bottom:582.690000px;}
.y7f{bottom:583.200111px;}
.y2e{bottom:585.496582px;}
.yf1{bottom:587.794703px;}
.ya5{bottom:591.281003px;}
.yc{bottom:593.830890px;}
.y7e{bottom:595.360500px;}
.y110{bottom:597.657000px;}
.y2d{bottom:600.718500px;}
.yf0{bottom:602.761084px;}
.ya4{bottom:606.502921px;}
.yb{bottom:609.137538px;}
.y10f{bottom:609.563670px;}
.yef{bottom:617.728810px;}
.ya3{bottom:621.724839px;}
.y7d{bottom:622.744761px;}
.ya{bottom:624.445531px;}
.y10e{bottom:624.530051px;}
.y2c{bottom:628.357871px;}
.yee{bottom:632.695192px;}
.ya2{bottom:637.031487px;}
.y7c{bottom:637.881948px;}
.y10d{bottom:639.582507px;}
.y9{bottom:639.752180px;}
.y2b{bottom:640.602991px;}
.yed{bottom:647.576842px;}
.ya1{bottom:652.253405px;}
.y2a{bottom:652.763380px;}
.y7b{bottom:653.103866px;}
.y10c{bottom:654.548888px;}
.y8{bottom:655.058828px;}
.yec{bottom:662.543223px;}
.y29{bottom:665.008500px;}
.ya0{bottom:667.475323px;}
.y7a{bottom:668.241053px;}
.y109{bottom:669.597021px;}
.y10b{bottom:669.600000px;}
.y7{bottom:670.365476px;}
.y10a{bottom:675.552000px;}
.yeb{bottom:677.510949px;}
.y9f{bottom:682.443049px;}
.y79{bottom:683.378240px;}
.y108{bottom:684.564747px;}
.y6{bottom:685.333202px;}
.y28{bottom:692.391082px;}
.yea{bottom:692.477330px;}
.y9e{bottom:697.664966px;}
.y78{bottom:698.600158px;}
.y107{bottom:699.615858px;}
.y5{bottom:700.555120px;}
.y138{bottom:700.642581px;}
.ye9{bottom:707.358980px;}
.y27{bottom:707.613000px;}
.y9d{bottom:712.971615px;}
.y77{bottom:713.736000px;}
.y75{bottom:713.736053px;}
.y137{bottom:714.078112px;}
.y106{bottom:714.668315px;}
.y4{bottom:715.861768px;}
.y76{bottom:719.688000px;}
.ye8{bottom:722.325361px;}
.y136{bottom:727.514688px;}
.y9c{bottom:728.193532px;}
.y74{bottom:728.957971px;}
.y3{bottom:729.297619px;}
.y105{bottom:729.634696px;}
.y26{bottom:735.251491px;}
.ye7{bottom:737.293087px;}
.y135{bottom:741.034949px;}
.y9b{bottom:743.415450px;}
.y73{bottom:744.095158px;}
.y2{bottom:744.264000px;}
.y104{bottom:744.687152px;}
.y25{bottom:747.411880px;}
.ye6{bottom:752.174738px;}
.y134{bottom:754.471525px;}
.y9a{bottom:758.722098px;}
.y72{bottom:759.231000px;}
.y103{bottom:759.653533px;}
.y24{bottom:759.657000px;}
.ye5{bottom:767.141119px;}
.y133{bottom:767.907056px;}
.y99{bottom:773.944016px;}
.y70{bottom:774.199553px;}
.y102{bottom:774.705990px;}
.y6c{bottom:779.475000px;}
.y71{bottom:780.151500px;}
.y132{bottom:781.343632px;}
.ye4{bottom:782.107500px;}
.y23{bottom:787.034171px;}
.y98{bottom:789.165934px;}
.y6f{bottom:789.336740px;}
.y101{bottom:789.672371px;}
.y1{bottom:790.611000px;}
.y131{bottom:794.779163px;}
.y22{bottom:802.256089px;}
.y97{bottom:804.472582px;}
.y6e{bottom:804.558658px;}
.y100{bottom:804.638752px;}
.y130{bottom:808.215739px;}
.ye3{bottom:809.746118px;}
.yff{bottom:819.691209px;}
.y6d{bottom:819.694500px;}
.ye2{bottom:821.736000px;}
.y6b{bottom:827.178619px;}
.ye1{bottom:842.059500px;}
.y6a{bottom:842.145000px;}
.h6{height:19.356354px;}
.h7{height:24.887395px;}
.h5{height:29.038487px;}
.h8{height:31.339808px;}
.hd{height:33.942636px;}
.hb{height:34.945312px;}
.h3{height:36.420704px;}
.h4{height:37.335257px;}
.h9{height:41.484266px;}
.ha{height:43.638056px;}
.hc{height:45.788110px;}
.h2{height:82.968533px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x4{left:72.284321px;}
.x20{left:74.069522px;}
.xf{left:82.743300px;}
.x2{left:86.229900px;}
.x10{left:89.971650px;}
.x31{left:93.798300px;}
.x5{left:108.169950px;}
.x16{left:116.503800px;}
.x17{left:128.664450px;}
.x3{left:146.606498px;}
.x1{left:178.242000px;}
.x15{left:217.956000px;}
.x18{left:222.378000px;}
.x19{left:233.602500px;}
.x6{left:267.024000px;}
.x7{left:269.064000px;}
.x23{left:282.841500px;}
.x24{left:305.121000px;}
.x22{left:332.163000px;}
.x1a{left:337.096500px;}
.x8{left:360.308578px;}
.x29{left:361.587000px;}
.x2b{left:363.543233px;}
.x2d{left:365.328849px;}
.x2f{left:366.519260px;}
.x11{left:370.771500px;}
.xa{left:373.747500px;}
.x2e{left:376.042545px;}
.x12{left:378.000000px;}
.x2a{left:379.274855px;}
.x21{left:381.741000px;}
.x2c{left:382.761356px;}
.x30{left:389.989596px;}
.x9{left:396.112500px;}
.x1f{left:406.572004px;}
.x1b{left:429.193500px;}
.x1c{left:448.668000px;}
.x28{left:458.191500px;}
.x27{left:478.262957px;}
.xb{left:548.929500px;}
.xc{left:553.947000px;}
.xd{left:561.514500px;}
.x1d{left:605.055000px;}
.x25{left:616.960500px;}
.x1e{left:619.257000px;}
.x13{left:622.828500px;}
.xe{left:625.125000px;}
.x26{left:626.910000px;}
.x14{left:668.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.531861pt;}
.ls2{letter-spacing:-0.530799pt;}
.ls6{letter-spacing:-0.471769pt;}
.ls4{letter-spacing:-0.471048pt;}
.ls5{letter-spacing:-0.382558pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.595089pt;}
.ls7{letter-spacing:6.360014pt;}
.ls0{letter-spacing:16.844740pt;}
.ws2{word-spacing:-11.954933pt;}
.ws0{word-spacing:-11.424134pt;}
.ws3{word-spacing:-8.368133pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-1298.878624pt;}
._14{margin-left:-1273.783499pt;}
._15{margin-left:-2.271668pt;}
._13{width:0.896353pt;}
._2{width:1.845842pt;}
._b{width:3.390419pt;}
._7{width:4.523747pt;}
._5{width:5.504051pt;}
._a{width:7.206434pt;}
._16{width:8.210648pt;}
._9{width:9.147915pt;}
._4{width:10.113874pt;}
._12{width:11.208912pt;}
._10{width:12.500078pt;}
._3{width:13.437345pt;}
._f{width:14.470251pt;}
._d{width:15.517503pt;}
._8{width:16.579102pt;}
._1b{width:17.497240pt;}
._11{width:19.649128pt;}
._0{width:21.471060pt;}
._c{width:22.556568pt;}
._6{width:24.091582pt;}
._1a{width:25.875258pt;}
._19{width:26.779051pt;}
._17{width:27.706753pt;}
._1{width:31.546678pt;}
._1f{width:32.613058pt;}
._18{width:47.523251pt;}
._1c{width:62.003066pt;}
._e{width:85.058412pt;}
._1e{width:590.033045pt;}
._1d{width:658.599591pt;}
.fs3{font-size:24.792000pt;}
.fs4{font-size:31.876267pt;}
.fs8{font-size:33.472533pt;}
.fs2{font-size:37.193067pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:44.632000pt;}
.fs1{font-size:47.819733pt;}
.fs5{font-size:53.133867pt;}
.fs6{font-size:57.384000pt;}
.fs0{font-size:106.267733pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:48.983233pt;}
.y57{bottom:48.983260pt;}
.ye0{bottom:51.175109pt;}
.y12f{bottom:51.175703pt;}
.y124{bottom:51.175985pt;}
.yd3{bottom:51.176685pt;}
.y56{bottom:59.640933pt;}
.y68{bottom:59.641836pt;}
.ydf{bottom:61.757467pt;}
.y12e{bottom:61.758060pt;}
.y123{bottom:61.758342pt;}
.yd2{bottom:61.759042pt;}
.y55{bottom:63.798400pt;}
.yde{bottom:65.914933pt;}
.y67{bottom:70.224193pt;}
.y54{bottom:70.225742pt;}
.ydd{bottom:72.340727pt;}
.y12d{bottom:72.415733pt;}
.yd1{bottom:72.416715pt;}
.y122{bottom:72.416945pt;}
.y12c{bottom:76.497600pt;}
.y53{bottom:80.808099pt;}
.y66{bottom:80.881867pt;}
.ydc{bottom:82.998400pt;}
.y121{bottom:82.999303pt;}
.y12b{bottom:82.999318pt;}
.yd0{bottom:83.000002pt;}
.y65{bottom:85.039333pt;}
.ydb{bottom:87.080267pt;}
.y64{bottom:91.466049pt;}
.y52{bottom:91.466702pt;}
.yda{bottom:93.506669pt;}
.y12a{bottom:93.581676pt;}
.y120{bottom:93.656976pt;}
.ycf{bottom:93.657676pt;}
.y51{bottom:102.124375pt;}
.y63{bottom:102.124652pt;}
.yd9{bottom:104.164342pt;}
.y11f{bottom:104.239333pt;}
.yce{bottom:104.240033pt;}
.y129{bottom:104.240279pt;}
.y11e{bottom:108.396800pt;}
.y50{bottom:112.706733pt;}
.y62{bottom:112.707009pt;}
.y128{bottom:114.822636pt;}
.yd8{bottom:114.822945pt;}
.ycd{bottom:114.898636pt;}
.y4f{bottom:123.365336pt;}
.y61{bottom:123.365612pt;}
.yd7{bottom:125.405303pt;}
.y127{bottom:125.480309pt;}
.ycc{bottom:125.556309pt;}
.y4e{bottom:133.947693pt;}
.y60{bottom:133.947969pt;}
.y126{bottom:136.062667pt;}
.yd6{bottom:136.062976pt;}
.ycb{bottom:136.138667pt;}
.y125{bottom:140.220000pt;}
.yca{bottom:140.296000pt;}
.y4d{bottom:144.605366pt;}
.y5f{bottom:144.605643pt;}
.yd5{bottom:146.645333pt;}
.yc9{bottom:146.722327pt;}
.yd4{bottom:150.802667pt;}
.y5e{bottom:155.188000pt;}
.y4c{bottom:155.188653pt;}
.yc8{bottom:157.380000pt;}
.y5d{bottom:159.345333pt;}
.yc7{bottom:161.461333pt;}
.y5c{bottom:165.770700pt;}
.y4b{bottom:165.846327pt;}
.yc6{bottom:167.962945pt;}
.y5b{bottom:176.429303pt;}
.y4a{bottom:176.504000pt;}
.yc5{bottom:178.545303pt;}
.y49{bottom:180.585333pt;}
.yc1{bottom:186.786357pt;}
.y5a{bottom:187.011660pt;}
.yc4{bottom:189.202976pt;}
.y59{bottom:197.669333pt;}
.yc3{bottom:199.785333pt;}
.yc0{bottom:200.392266pt;}
.y58{bottom:201.826667pt;}
.yc2{bottom:203.942667pt;}
.ybf{bottom:213.922860pt;}
.y47{bottom:224.278154pt;}
.y95{bottom:226.395483pt;}
.ybe{bottom:227.226310pt;}
.y48{bottom:229.568000pt;}
.y21{bottom:231.307604pt;}
.y96{bottom:231.685333pt;}
.y46{bottom:237.733431pt;}
.y94{bottom:239.849565pt;}
.ybd{bottom:240.756903pt;}
.y20{bottom:244.913514pt;}
.y45{bottom:251.264025pt;}
.y93{bottom:253.380159pt;}
.ybc{bottom:254.287497pt;}
.y1f{bottom:258.519424pt;}
.y44{bottom:264.794619pt;}
.y92{bottom:266.835436pt;}
.ybb{bottom:267.893406pt;}
.y1e{bottom:272.125333pt;}
.y43{bottom:278.022752pt;}
.y91{bottom:280.290714pt;}
.yba{bottom:281.424000pt;}
.y42{bottom:291.553346pt;}
.y90{bottom:293.821307pt;}
.y1c{bottom:296.693466pt;}
.y1d{bottom:300.774667pt;}
.y41{bottom:305.083939pt;}
.yb9{bottom:305.991435pt;}
.y8f{bottom:307.276585pt;}
.y1b{bottom:307.653333pt;}
.yb8{bottom:316.875986pt;}
.y40{bottom:318.388585pt;}
.y8e{bottom:320.730667pt;}
.y8c{bottom:320.732120pt;}
.y8d{bottom:326.097333pt;}
.yb7{bottom:327.761466pt;}
.y3f{bottom:331.842667pt;}
.y1a{bottom:332.145699pt;}
.y8b{bottom:334.262714pt;}
.yb6{bottom:338.721333pt;}
.y3d{bottom:345.148352pt;}
.y19{bottom:345.450344pt;}
.y8a{bottom:347.717991pt;}
.y3e{bottom:350.437333pt;}
.y3c{bottom:358.678946pt;}
.y18{bottom:359.056254pt;}
.y89{bottom:361.172073pt;}
.yb5{bottom:363.138357pt;}
.y3b{bottom:372.134223pt;}
.y17{bottom:372.662163pt;}
.y88{bottom:374.702667pt;}
.yb4{bottom:376.744266pt;}
.y3a{bottom:385.664817pt;}
.y16{bottom:386.268073pt;}
.yfe{bottom:389.669333pt;}
.yfc{bottom:389.669976pt;}
.y11d{bottom:389.670751pt;}
.yb3{bottom:389.972400pt;}
.yfd{bottom:394.960000pt;}
.y39{bottom:398.968266pt;}
.y87{bottom:399.270312pt;}
.y15{bottom:399.798667pt;}
.y11c{bottom:400.404670pt;}
.yfb{bottom:402.974621pt;}
.yb2{bottom:403.578310pt;}
.y86{bottom:410.079547pt;}
.y11b{bottom:411.062344pt;}
.y38{bottom:412.423544pt;}
.yfa{bottom:416.278071pt;}
.yb1{bottom:417.108903pt;}
.y85{bottom:420.888782pt;}
.y11a{bottom:421.796263pt;}
.y13{bottom:424.440782pt;}
.y37{bottom:425.954137pt;}
.y14{bottom:428.522667pt;}
.yf9{bottom:429.506205pt;}
.yb0{bottom:430.639497pt;}
.y84{bottom:431.773333pt;}
.y119{bottom:432.454866pt;}
.y12{bottom:435.325333pt;}
.y36{bottom:439.484731pt;}
.yf8{bottom:442.809655pt;}
.y118{bottom:443.112539pt;}
.yaf{bottom:444.245406pt;}
.y35{bottom:452.938813pt;}
.y117{bottom:453.846458pt;}
.y83{bottom:456.039324pt;}
.yf7{bottom:456.114300pt;}
.yae{bottom:457.776000pt;}
.yac{bottom:457.776903pt;}
.y11{bottom:459.894252pt;}
.yad{bottom:463.068000pt;}
.y116{bottom:464.504131pt;}
.y34{bottom:466.469406pt;}
.yf6{bottom:469.342434pt;}
.y82{bottom:469.569918pt;}
.yab{bottom:471.307497pt;}
.y10{bottom:473.500162pt;}
.y115{bottom:475.238050pt;}
.y33{bottom:480.000000pt;}
.y31{bottom:480.001453pt;}
.yf5{bottom:482.645884pt;}
.y81{bottom:483.024000pt;}
.yaa{bottom:484.913406pt;}
.y32{bottom:485.292000pt;}
.y114{bottom:485.896653pt;}
.yf{bottom:487.107267pt;}
.y30{bottom:493.456731pt;}
.yf4{bottom:495.949333pt;}
.y113{bottom:496.629643pt;}
.ya9{bottom:498.444000pt;}
.ya7{bottom:498.446611pt;}
.ye{bottom:500.713177pt;}
.ya8{bottom:503.734667pt;}
.y2f{bottom:506.987324pt;}
.y112{bottom:507.212000pt;}
.y80{bottom:507.590863pt;}
.yf2{bottom:509.256047pt;}
.ya6{bottom:511.977204pt;}
.yd{bottom:514.243770pt;}
.yf3{bottom:514.545333pt;}
.y111{bottom:517.946667pt;}
.y7f{bottom:518.400098pt;}
.y2e{bottom:520.441406pt;}
.yf1{bottom:522.484181pt;}
.ya5{bottom:525.583114pt;}
.yc{bottom:527.849680pt;}
.y7e{bottom:529.209333pt;}
.y110{bottom:531.250667pt;}
.y2d{bottom:533.972000pt;}
.yf0{bottom:535.787631pt;}
.ya4{bottom:539.113708pt;}
.yb{bottom:541.455589pt;}
.y10f{bottom:541.834373pt;}
.yef{bottom:549.092276pt;}
.ya3{bottom:552.644301pt;}
.y7d{bottom:553.550899pt;}
.ya{bottom:555.062694pt;}
.y10e{bottom:555.137823pt;}
.y2c{bottom:558.540330pt;}
.yee{bottom:562.395726pt;}
.ya2{bottom:566.250211pt;}
.y7c{bottom:567.006176pt;}
.y10d{bottom:568.517784pt;}
.y9{bottom:568.668604pt;}
.y2b{bottom:569.424881pt;}
.yed{bottom:575.623860pt;}
.ya1{bottom:579.780804pt;}
.y2a{bottom:580.234116pt;}
.y7b{bottom:580.536770pt;}
.y10c{bottom:581.821234pt;}
.y8{bottom:582.274514pt;}
.yec{bottom:588.927309pt;}
.y29{bottom:591.118667pt;}
.ya0{bottom:593.311398pt;}
.y7a{bottom:593.992047pt;}
.y109{bottom:595.197352pt;}
.y10b{bottom:595.200000pt;}
.y7{bottom:595.880423pt;}
.y10a{bottom:600.490667pt;}
.yeb{bottom:602.231955pt;}
.y9f{bottom:606.616043pt;}
.y79{bottom:607.447324pt;}
.y108{bottom:608.501997pt;}
.y6{bottom:609.185069pt;}
.y28{bottom:615.458740pt;}
.yea{bottom:615.535404pt;}
.y9e{bottom:620.146637pt;}
.y78{bottom:620.977918pt;}
.y107{bottom:621.880763pt;}
.y5{bottom:622.715662pt;}
.y138{bottom:622.793405pt;}
.ye9{bottom:628.763538pt;}
.y27{bottom:628.989333pt;}
.y9d{bottom:633.752546pt;}
.y77{bottom:634.432000pt;}
.y75{bottom:634.432047pt;}
.y137{bottom:634.736099pt;}
.y106{bottom:635.260724pt;}
.y4{bottom:636.321572pt;}
.y76{bottom:639.722667pt;}
.ye8{bottom:642.066988pt;}
.y136{bottom:646.679723pt;}
.y9c{bottom:647.283140pt;}
.y74{bottom:647.962641pt;}
.y3{bottom:648.264550pt;}
.y105{bottom:648.564174pt;}
.y26{bottom:653.556881pt;}
.ye7{bottom:655.371633pt;}
.y135{bottom:658.697732pt;}
.y9b{bottom:660.813733pt;}
.y73{bottom:661.417918pt;}
.y2{bottom:661.568000pt;}
.y104{bottom:661.944135pt;}
.y25{bottom:664.366116pt;}
.ye6{bottom:668.599767pt;}
.y134{bottom:670.641356pt;}
.y9a{bottom:674.419643pt;}
.y72{bottom:674.872000pt;}
.y103{bottom:675.247585pt;}
.y24{bottom:675.250667pt;}
.ye5{bottom:681.903217pt;}
.y133{bottom:682.584050pt;}
.y99{bottom:687.950237pt;}
.y70{bottom:688.177380pt;}
.y102{bottom:688.627547pt;}
.y6c{bottom:692.866667pt;}
.y71{bottom:693.468000pt;}
.y132{bottom:694.527673pt;}
.ye4{bottom:695.206667pt;}
.y23{bottom:699.585930pt;}
.y98{bottom:701.480830pt;}
.y6f{bottom:701.632658pt;}
.y101{bottom:701.930997pt;}
.y1{bottom:702.765333pt;}
.y131{bottom:706.470367pt;}
.y22{bottom:713.116523pt;}
.y97{bottom:715.086740pt;}
.y6e{bottom:715.163251pt;}
.y100{bottom:715.234446pt;}
.y130{bottom:718.413990pt;}
.ye3{bottom:719.774327pt;}
.yff{bottom:728.614408pt;}
.y6d{bottom:728.617333pt;}
.ye2{bottom:730.432000pt;}
.y6b{bottom:735.269884pt;}
.ye1{bottom:748.497333pt;}
.y6a{bottom:748.573333pt;}
.h6{height:17.205648pt;}
.h7{height:22.122129pt;}
.h5{height:25.811988pt;}
.h8{height:27.857607pt;}
.hd{height:30.171232pt;}
.hb{height:31.062500pt;}
.h3{height:32.373959pt;}
.h4{height:33.186895pt;}
.h9{height:36.874903pt;}
.ha{height:38.789383pt;}
.hc{height:40.700542pt;}
.h2{height:73.749807pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x4{left:64.252730pt;}
.x20{left:65.839575pt;}
.xf{left:73.549600pt;}
.x2{left:76.648800pt;}
.x10{left:79.974800pt;}
.x31{left:83.376267pt;}
.x5{left:96.151067pt;}
.x16{left:103.558933pt;}
.x17{left:114.368400pt;}
.x3{left:130.316887pt;}
.x1{left:158.437333pt;}
.x15{left:193.738667pt;}
.x18{left:197.669333pt;}
.x19{left:207.646667pt;}
.x6{left:237.354667pt;}
.x7{left:239.168000pt;}
.x23{left:251.414667pt;}
.x24{left:271.218667pt;}
.x22{left:295.256000pt;}
.x1a{left:299.641333pt;}
.x8{left:320.274292pt;}
.x29{left:321.410667pt;}
.x2b{left:323.149541pt;}
.x2d{left:324.736755pt;}
.x2f{left:325.794898pt;}
.x11{left:329.574667pt;}
.xa{left:332.220000pt;}
.x2e{left:334.260040pt;}
.x12{left:336.000000pt;}
.x2a{left:337.133204pt;}
.x21{left:339.325333pt;}
.x2c{left:340.232316pt;}
.x30{left:346.657419pt;}
.x9{left:352.100000pt;}
.x1f{left:361.397337pt;}
.x1b{left:381.505333pt;}
.x1c{left:398.816000pt;}
.x28{left:407.281333pt;}
.x27{left:425.122628pt;}
.xb{left:487.937333pt;}
.xc{left:492.397333pt;}
.xd{left:499.124000pt;}
.x1d{left:537.826667pt;}
.x25{left:548.409333pt;}
.x1e{left:550.450667pt;}
.x13{left:553.625333pt;}
.xe{left:555.666667pt;}
.x26{left:557.253333pt;}
.x14{left:594.053333pt;}
}




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