
    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_411ad3de942c93a91079bae9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_776dc544b182161ecf468203.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ec1ad6fbf4e4813c94c989b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_65a5107758462ada5e2fd82e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_5ee1114395d9357ef85b923f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_637c4858ea42cabc5a2636b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_59bbd0401a7f8f28fa7aab5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_ad57c4c7d9c27ceec60ab08d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_ddb30f15fcdded7cd3e81196.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_8268d6241d188a2f4777cc09.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls13{letter-spacing:-5.472000px;}
.lsf{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.092400px;}
.ls9{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.720000px;}
.lsd{letter-spacing:4.320000px;}
.ls10{letter-spacing:5.940000px;}
.ls2{letter-spacing:6.480000px;}
.lse{letter-spacing:7.200000px;}
.ls1{letter-spacing:12.240000px;}
.ls5{letter-spacing:19.781280px;}
.lsa{letter-spacing:21.221280px;}
.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;}
}
.ws5{word-spacing:-66.147600px;}
.ws1{word-spacing:-23.921280px;}
.ws6{word-spacing:-21.420000px;}
.ws7{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.254600px;}
.wsd{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-12.257280px;}
._1b{margin-left:-9.576000px;}
._1{margin-left:-7.948800px;}
._8{margin-left:-6.395040px;}
._3{margin-left:-4.384080px;}
._5{margin-left:-2.789280px;}
._0{margin-left:-1.457280px;}
._4{width:1.128240px;}
._2{width:2.394000px;}
._15{width:3.528000px;}
._b{width:4.536000px;}
._c{width:5.760000px;}
._11{width:7.325280px;}
._f{width:8.352000px;}
._d{width:9.576000px;}
._e{width:10.715760px;}
._10{width:12.173040px;}
._14{width:13.680000px;}
._9{width:15.150960px;}
._13{width:16.992000px;}
._7{width:21.176400px;}
._12{width:22.384320px;}
._1d{width:24.120000px;}
._1e{width:25.217280px;}
._1c{width:26.496000px;}
._a{width:29.111040px;}
._16{width:30.888000px;}
._17{width:32.063760px;}
._1a{width:34.272000px;}
._18{width:110.808000px;}
._19{width:137.448000px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.ya0{bottom:-26.100000px;}
.ya6{bottom:-21.600000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:2.880000px;}
.y6d{bottom:3.960000px;}
.ya5{bottom:7.560000px;}
.yc2{bottom:9.540000px;}
.ybf{bottom:9.765000px;}
.yba{bottom:15.480000px;}
.y84{bottom:16.920000px;}
.y87{bottom:17.100000px;}
.y6c{bottom:24.660000px;}
.yc6{bottom:25.020000px;}
.yc5{bottom:34.560000px;}
.y6b{bottom:45.360000px;}
.y5{bottom:57.780000px;}
.y4{bottom:77.796000px;}
.yc9{bottom:94.356000px;}
.y3{bottom:97.056000px;}
.y9a{bottom:104.436000px;}
.ye9{bottom:105.696000px;}
.y2{bottom:115.956000px;}
.y51{bottom:119.376000px;}
.yc8{bottom:126.036000px;}
.y10a{bottom:130.176000px;}
.y90{bottom:134.856000px;}
.y1{bottom:135.036000px;}
.ya1{bottom:135.756000px;}
.ye8{bottom:136.836000px;}
.y50{bottom:150.330000px;}
.y109{bottom:150.870000px;}
.yc7{bottom:157.890000px;}
.y69{bottom:159.510000px;}
.y8f{bottom:165.990000px;}
.y32{bottom:166.350000px;}
.ye7{bottom:167.790000px;}
.y108{bottom:177.690000px;}
.y4f{bottom:181.470000px;}
.y31{bottom:187.050000px;}
.yc4{bottom:189.570000px;}
.y68{bottom:190.470000px;}
.y8e{bottom:196.950000px;}
.y107{bottom:198.390000px;}
.y30{bottom:207.750000px;}
.ye6{bottom:210.090000px;}
.y4e{bottom:212.430000px;}
.y106{bottom:219.090000px;}
.y67{bottom:221.430000px;}
.y8d{bottom:228.090000px;}
.y2f{bottom:228.450000px;}
.y9e{bottom:237.990000px;}
.yc3{bottom:240.330000px;}
.y4d{bottom:240.870000px;}
.y105{bottom:245.730000px;}
.ya4{bottom:246.999000px;}
.y2e{bottom:249.150000px;}
.y66{bottom:252.570000px;}
.ye5{bottom:253.110000px;}
.y9d{bottom:258.690000px;}
.y8c{bottom:259.050000px;}
.y104{bottom:266.430000px;}
.ya3{bottom:267.699000px;}
.y2d{bottom:269.850000px;}
.yc1{bottom:272.010000px;}
.y9c{bottom:279.390000px;}
.y65{bottom:283.530000px;}
.y4c{bottom:283.890000px;}
.ye4{bottom:284.250000px;}
.y103{bottom:287.130000px;}
.ya2{bottom:288.579000px;}
.y8b{bottom:290.190000px;}
.y2c{bottom:290.550000px;}
.yc0{bottom:303.510000px;}
.y102{bottom:307.830000px;}
.y2b{bottom:311.250000px;}
.y64{bottom:314.670000px;}
.y4b{bottom:314.850000px;}
.ye3{bottom:315.210000px;}
.y2a{bottom:331.950000px;}
.y8a{bottom:333.210000px;}
.y101{bottom:334.470000px;}
.ybe{bottom:335.190000px;}
.y63{bottom:345.675000px;}
.y4a{bottom:346.035000px;}
.ye2{bottom:346.215000px;}
.y89{bottom:350.715000px;}
.y29{bottom:352.695000px;}
.y100{bottom:355.215000px;}
.ybd{bottom:367.095000px;}
.y28{bottom:373.395000px;}
.yff{bottom:375.915000px;}
.y62{bottom:376.815000px;}
.y49{bottom:376.995000px;}
.ye1{bottom:377.355000px;}
.y88{bottom:384.015000px;}
.y27{bottom:394.095000px;}
.ybc{bottom:398.775000px;}
.yfe{bottom:402.555000px;}
.y48{bottom:408.135000px;}
.ye0{bottom:408.315000px;}
.y26{bottom:414.795000px;}
.y86{bottom:417.135000px;}
.y61{bottom:419.835000px;}
.yfd{bottom:423.255000px;}
.ybb{bottom:430.635000px;}
.y25{bottom:435.495000px;}
.ydf{bottom:439.455000px;}
.yfc{bottom:443.955000px;}
.y47{bottom:445.035000px;}
.y85{bottom:450.435000px;}
.y60{bottom:450.975000px;}
.y24{bottom:456.195000px;}
.yb9{bottom:462.315000px;}
.yfb{bottom:470.775000px;}
.yde{bottom:476.535000px;}
.y23{bottom:476.895000px;}
.y9b{bottom:477.795000px;}
.y5f{bottom:481.935000px;}
.y83{bottom:483.735000px;}
.y46{bottom:490.395000px;}
.yfa{bottom:491.475000px;}
.y22{bottom:497.595000px;}
.ydd{bottom:507.495000px;}
.yb8{bottom:511.635000px;}
.yf9{bottom:512.175000px;}
.y5e{bottom:513.075000px;}
.y21{bottom:518.295000px;}
.y45{bottom:533.415000px;}
.y82{bottom:537.195000px;}
.ydc{bottom:538.635000px;}
.yf8{bottom:538.815000px;}
.y20{bottom:538.995000px;}
.y5d{bottom:544.035000px;}
.yb7{bottom:554.655000px;}
.yf7{bottom:559.515000px;}
.y1f{bottom:559.695000px;}
.y44{bottom:564.555000px;}
.ydb{bottom:569.595000px;}
.y5c{bottom:572.295000px;}
.y81{bottom:574.275000px;}
.y1e{bottom:580.395000px;}
.yb6{bottom:585.615000px;}
.yf6{bottom:586.155000px;}
.y43{bottom:595.515000px;}
.yda{bottom:600.735000px;}
.y1d{bottom:601.095000px;}
.y80{bottom:605.265000px;}
.yf5{bottom:606.885000px;}
.y5b{bottom:615.525000px;}
.yb5{bottom:616.785000px;}
.y1c{bottom:621.645000px;}
.y42{bottom:626.685000px;}
.yd9{bottom:631.725000px;}
.yf4{bottom:633.705000px;}
.y7f{bottom:636.405000px;}
.y1b{bottom:642.345000px;}
.y5a{bottom:646.485000px;}
.yb4{bottom:647.745000px;}
.yf3{bottom:654.405000px;}
.y41{bottom:657.645000px;}
.yd8{bottom:662.865000px;}
.y1a{bottom:663.045000px;}
.y59{bottom:677.625000px;}
.y7e{bottom:678.705000px;}
.yf2{bottom:681.045000px;}
.y19{bottom:683.745000px;}
.yb3{bottom:690.945000px;}
.y40{bottom:694.725000px;}
.yd7{bottom:699.765000px;}
.yf1{bottom:701.745000px;}
.y18{bottom:704.445000px;}
.y58{bottom:714.525000px;}
.yb2{bottom:721.905000px;}
.yf0{bottom:722.445000px;}
.y7d{bottom:724.605000px;}
.y17{bottom:725.145000px;}
.y3f{bottom:725.685000px;}
.yd6{bottom:730.905000px;}
.y16{bottom:745.845000px;}
.yef{bottom:749.085000px;}
.yb1{bottom:753.045000px;}
.y7c{bottom:755.745000px;}
.y3e{bottom:756.825000px;}
.y57{bottom:757.725000px;}
.yd5{bottom:761.865000px;}
.y15{bottom:766.545000px;}
.yee{bottom:769.785000px;}
.yb0{bottom:784.005000px;}
.y7b{bottom:786.705000px;}
.y14{bottom:787.245000px;}
.y3d{bottom:787.785000px;}
.y56{bottom:788.685000px;}
.yd4{bottom:793.005000px;}
.y13{bottom:807.945000px;}
.y99{bottom:811.365000px;}
.yed{bottom:812.265000px;}
.y55{bottom:819.825000px;}
.yd3{bottom:823.965000px;}
.y3c{bottom:824.865000px;}
.yaf{bottom:827.025000px;}
.y7a{bottom:829.725000px;}
.y12{bottom:835.485000px;}
.y98{bottom:842.325000px;}
.y54{bottom:850.785000px;}
.yd2{bottom:855.105000px;}
.y3b{bottom:856.005000px;}
.y11{bottom:856.185000px;}
.yae{bottom:858.165000px;}
.y10{bottom:870.045000px;}
.y79{bottom:872.790000px;}
.y97{bottom:885.390000px;}
.y3a{bottom:887.010000px;}
.yad{bottom:889.170000px;}
.yf{bottom:890.790000px;}
.y53{bottom:893.850000px;}
.yd1{bottom:898.170000px;}
.y78{bottom:903.930000px;}
.y71{bottom:911.310000px;}
.ye{bottom:911.490000px;}
.y39{bottom:918.150000px;}
.yac{bottom:920.310000px;}
.y96{bottom:926.070000px;}
.yd0{bottom:929.310000px;}
.yec{bottom:932.190000px;}
.y70{bottom:932.730000px;}
.yd{bottom:933.630000px;}
.y77{bottom:934.890000px;}
.y95{bottom:940.830000px;}
.y38{bottom:949.110000px;}
.yab{bottom:951.270000px;}
.y6f{bottom:954.330000px;}
.ycf{bottom:960.270000px;}
.yc{bottom:961.170000px;}
.yeb{bottom:963.330000px;}
.y76{bottom:966.030000px;}
.y94{bottom:973.950000px;}
.y37{bottom:980.250000px;}
.yaa{bottom:982.410000px;}
.yb{bottom:988.710000px;}
.yce{bottom:993.570000px;}
.yea{bottom:994.290000px;}
.y6e{bottom:996.450000px;}
.y75{bottom:996.990000px;}
.y93{bottom:1007.250000px;}
.ycd{bottom:1008.330000px;}
.y36{bottom:1011.210000px;}
.ya{bottom:1014.990000px;}
.y6a{bottom:1017.870000px;}
.ya9{bottom:1025.430000px;}
.y74{bottom:1028.130000px;}
.y9{bottom:1037.130000px;}
.ycc{bottom:1040.190000px;}
.y92{bottom:1040.550000px;}
.y35{bottom:1042.350000px;}
.ya8{bottom:1056.390000px;}
.y73{bottom:1059.090000px;}
.y8{bottom:1064.670000px;}
.ycb{bottom:1071.870000px;}
.y34{bottom:1073.310000px;}
.y91{bottom:1073.670000px;}
.ya7{bottom:1087.530000px;}
.y72{bottom:1090.230000px;}
.y7{bottom:1092.210000px;}
.y52{bottom:1096.170000px;}
.yca{bottom:1103.550000px;}
.y33{bottom:1115.610000px;}
.y6{bottom:1118.490000px;}
.hc{height:20.700000px;}
.h16{height:30.780000px;}
.h14{height:30.960000px;}
.h15{height:31.176000px;}
.he{height:32.400000px;}
.h10{height:32.580000px;}
.hd{height:41.400000px;}
.h8{height:43.246406px;}
.h17{height:49.860000px;}
.h11{height:53.573906px;}
.h3{height:57.410156px;}
.hf{height:58.833281px;}
.h2{height:59.383125px;}
.hb{height:62.100000px;}
.h6{height:63.351562px;}
.ha{height:63.949219px;}
.h4{height:64.546875px;}
.h7{height:70.606406px;}
.h9{height:74.820586px;}
.h5{height:85.052461px;}
.h12{height:302.070000px;}
.h13{height:311.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:35.460000px;}
.wd{width:38.340000px;}
.wf{width:38.520000px;}
.we{width:38.556000px;}
.w10{width:49.500000px;}
.w7{width:158.430000px;}
.w8{width:169.380000px;}
.w6{width:169.410000px;}
.w9{width:179.670000px;}
.w4{width:224.130000px;}
.w5{width:237.450000px;}
.wc{width:494.175000px;}
.wa{width:675.645000px;}
.wb{width:677.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x1d{left:10.800000px;}
.x27{left:13.680000px;}
.x1e{left:14.940000px;}
.x19{left:16.380000px;}
.x1a{left:18.900000px;}
.x1b{left:52.554000px;}
.x21{left:117.396000px;}
.x1{left:127.655987px;}
.x18{left:128.916000px;}
.xc{left:130.895987px;}
.xa{left:148.895987px;}
.x5{left:153.749987px;}
.x4{left:154.829987px;}
.x20{left:163.649987px;}
.xf{left:164.730000px;}
.x7{left:170.129987px;}
.x14{left:176.969987px;}
.xb{left:180.749987px;}
.x8{left:212.789987px;}
.x3{left:214.589987px;}
.x17{left:262.829987px;}
.x6{left:295.454987px;}
.x15{left:309.135000px;}
.x12{left:313.635000px;}
.x10{left:389.595000px;}
.xd{left:451.334987px;}
.x13{left:472.785000px;}
.x1c{left:487.329000px;}
.x16{left:489.525000px;}
.x1f{left:496.329000px;}
.x22{left:612.285000px;}
.x11{left:627.765000px;}
.x23{left:651.345000px;}
.x24{left:690.630000px;}
.x25{left:729.690000px;}
.x26{left:768.930000px;}
.x9{left:781.709987px;}
.x2{left:808.169987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-4.864000pt;}
.lsf{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.082133pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls10{letter-spacing:5.280000pt;}
.ls2{letter-spacing:5.760000pt;}
.lse{letter-spacing:6.400000pt;}
.ls1{letter-spacing:10.880000pt;}
.ls5{letter-spacing:17.583360pt;}
.lsa{letter-spacing:18.863360pt;}
.ws5{word-spacing:-58.797867pt;}
.ws1{word-spacing:-21.263360pt;}
.ws6{word-spacing:-19.040000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.448533pt;}
.wsd{word-spacing:-11.136000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-10.895360pt;}
._1b{margin-left:-8.512000pt;}
._1{margin-left:-7.065600pt;}
._8{margin-left:-5.684480pt;}
._3{margin-left:-3.896960pt;}
._5{margin-left:-2.479360pt;}
._0{margin-left:-1.295360pt;}
._4{width:1.002880pt;}
._2{width:2.128000pt;}
._15{width:3.136000pt;}
._b{width:4.032000pt;}
._c{width:5.120000pt;}
._11{width:6.511360pt;}
._f{width:7.424000pt;}
._d{width:8.512000pt;}
._e{width:9.525120pt;}
._10{width:10.820480pt;}
._14{width:12.160000pt;}
._9{width:13.467520pt;}
._13{width:15.104000pt;}
._7{width:18.823467pt;}
._12{width:19.897173pt;}
._1d{width:21.440000pt;}
._1e{width:22.415360pt;}
._1c{width:23.552000pt;}
._a{width:25.876480pt;}
._16{width:27.456000pt;}
._17{width:28.501120pt;}
._1a{width:30.464000pt;}
._18{width:98.496000pt;}
._19{width:122.176000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.ya0{bottom:-23.200000pt;}
.ya6{bottom:-19.200000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:2.560000pt;}
.y6d{bottom:3.520000pt;}
.ya5{bottom:6.720000pt;}
.yc2{bottom:8.480000pt;}
.ybf{bottom:8.680000pt;}
.yba{bottom:13.760000pt;}
.y84{bottom:15.040000pt;}
.y87{bottom:15.200000pt;}
.y6c{bottom:21.920000pt;}
.yc6{bottom:22.240000pt;}
.yc5{bottom:30.720000pt;}
.y6b{bottom:40.320000pt;}
.y5{bottom:51.360000pt;}
.y4{bottom:69.152000pt;}
.yc9{bottom:83.872000pt;}
.y3{bottom:86.272000pt;}
.y9a{bottom:92.832000pt;}
.ye9{bottom:93.952000pt;}
.y2{bottom:103.072000pt;}
.y51{bottom:106.112000pt;}
.yc8{bottom:112.032000pt;}
.y10a{bottom:115.712000pt;}
.y90{bottom:119.872000pt;}
.y1{bottom:120.032000pt;}
.ya1{bottom:120.672000pt;}
.ye8{bottom:121.632000pt;}
.y50{bottom:133.626667pt;}
.y109{bottom:134.106667pt;}
.yc7{bottom:140.346667pt;}
.y69{bottom:141.786667pt;}
.y8f{bottom:147.546667pt;}
.y32{bottom:147.866667pt;}
.ye7{bottom:149.146667pt;}
.y108{bottom:157.946667pt;}
.y4f{bottom:161.306667pt;}
.y31{bottom:166.266667pt;}
.yc4{bottom:168.506667pt;}
.y68{bottom:169.306667pt;}
.y8e{bottom:175.066667pt;}
.y107{bottom:176.346667pt;}
.y30{bottom:184.666667pt;}
.ye6{bottom:186.746667pt;}
.y4e{bottom:188.826667pt;}
.y106{bottom:194.746667pt;}
.y67{bottom:196.826667pt;}
.y8d{bottom:202.746667pt;}
.y2f{bottom:203.066667pt;}
.y9e{bottom:211.546667pt;}
.yc3{bottom:213.626667pt;}
.y4d{bottom:214.106667pt;}
.y105{bottom:218.426667pt;}
.ya4{bottom:219.554667pt;}
.y2e{bottom:221.466667pt;}
.y66{bottom:224.506667pt;}
.ye5{bottom:224.986667pt;}
.y9d{bottom:229.946667pt;}
.y8c{bottom:230.266667pt;}
.y104{bottom:236.826667pt;}
.ya3{bottom:237.954667pt;}
.y2d{bottom:239.866667pt;}
.yc1{bottom:241.786667pt;}
.y9c{bottom:248.346667pt;}
.y65{bottom:252.026667pt;}
.y4c{bottom:252.346667pt;}
.ye4{bottom:252.666667pt;}
.y103{bottom:255.226667pt;}
.ya2{bottom:256.514667pt;}
.y8b{bottom:257.946667pt;}
.y2c{bottom:258.266667pt;}
.yc0{bottom:269.786667pt;}
.y102{bottom:273.626667pt;}
.y2b{bottom:276.666667pt;}
.y64{bottom:279.706667pt;}
.y4b{bottom:279.866667pt;}
.ye3{bottom:280.186667pt;}
.y2a{bottom:295.066667pt;}
.y8a{bottom:296.186667pt;}
.y101{bottom:297.306667pt;}
.ybe{bottom:297.946667pt;}
.y63{bottom:307.266667pt;}
.y4a{bottom:307.586667pt;}
.ye2{bottom:307.746667pt;}
.y89{bottom:311.746667pt;}
.y29{bottom:313.506667pt;}
.y100{bottom:315.746667pt;}
.ybd{bottom:326.306667pt;}
.y28{bottom:331.906667pt;}
.yff{bottom:334.146667pt;}
.y62{bottom:334.946667pt;}
.y49{bottom:335.106667pt;}
.ye1{bottom:335.426667pt;}
.y88{bottom:341.346667pt;}
.y27{bottom:350.306667pt;}
.ybc{bottom:354.466667pt;}
.yfe{bottom:357.826667pt;}
.y48{bottom:362.786667pt;}
.ye0{bottom:362.946667pt;}
.y26{bottom:368.706667pt;}
.y86{bottom:370.786667pt;}
.y61{bottom:373.186667pt;}
.yfd{bottom:376.226667pt;}
.ybb{bottom:382.786667pt;}
.y25{bottom:387.106667pt;}
.ydf{bottom:390.626667pt;}
.yfc{bottom:394.626667pt;}
.y47{bottom:395.586667pt;}
.y85{bottom:400.386667pt;}
.y60{bottom:400.866667pt;}
.y24{bottom:405.506667pt;}
.yb9{bottom:410.946667pt;}
.yfb{bottom:418.466667pt;}
.yde{bottom:423.586667pt;}
.y23{bottom:423.906667pt;}
.y9b{bottom:424.706667pt;}
.y5f{bottom:428.386667pt;}
.y83{bottom:429.986667pt;}
.y46{bottom:435.906667pt;}
.yfa{bottom:436.866667pt;}
.y22{bottom:442.306667pt;}
.ydd{bottom:451.106667pt;}
.yb8{bottom:454.786667pt;}
.yf9{bottom:455.266667pt;}
.y5e{bottom:456.066667pt;}
.y21{bottom:460.706667pt;}
.y45{bottom:474.146667pt;}
.y82{bottom:477.506667pt;}
.ydc{bottom:478.786667pt;}
.yf8{bottom:478.946667pt;}
.y20{bottom:479.106667pt;}
.y5d{bottom:483.586667pt;}
.yb7{bottom:493.026667pt;}
.yf7{bottom:497.346667pt;}
.y1f{bottom:497.506667pt;}
.y44{bottom:501.826667pt;}
.ydb{bottom:506.306667pt;}
.y5c{bottom:508.706667pt;}
.y81{bottom:510.466667pt;}
.y1e{bottom:515.906667pt;}
.yb6{bottom:520.546667pt;}
.yf6{bottom:521.026667pt;}
.y43{bottom:529.346667pt;}
.yda{bottom:533.986667pt;}
.y1d{bottom:534.306667pt;}
.y80{bottom:538.013333pt;}
.yf5{bottom:539.453333pt;}
.y5b{bottom:547.133333pt;}
.yb5{bottom:548.253333pt;}
.y1c{bottom:552.573333pt;}
.y42{bottom:557.053333pt;}
.yd9{bottom:561.533333pt;}
.yf4{bottom:563.293333pt;}
.y7f{bottom:565.693333pt;}
.y1b{bottom:570.973333pt;}
.y5a{bottom:574.653333pt;}
.yb4{bottom:575.773333pt;}
.yf3{bottom:581.693333pt;}
.y41{bottom:584.573333pt;}
.yd8{bottom:589.213333pt;}
.y1a{bottom:589.373333pt;}
.y59{bottom:602.333333pt;}
.y7e{bottom:603.293333pt;}
.yf2{bottom:605.373333pt;}
.y19{bottom:607.773333pt;}
.yb3{bottom:614.173333pt;}
.y40{bottom:617.533333pt;}
.yd7{bottom:622.013333pt;}
.yf1{bottom:623.773333pt;}
.y18{bottom:626.173333pt;}
.y58{bottom:635.133333pt;}
.yb2{bottom:641.693333pt;}
.yf0{bottom:642.173333pt;}
.y7d{bottom:644.093333pt;}
.y17{bottom:644.573333pt;}
.y3f{bottom:645.053333pt;}
.yd6{bottom:649.693333pt;}
.y16{bottom:662.973333pt;}
.yef{bottom:665.853333pt;}
.yb1{bottom:669.373333pt;}
.y7c{bottom:671.773333pt;}
.y3e{bottom:672.733333pt;}
.y57{bottom:673.533333pt;}
.yd5{bottom:677.213333pt;}
.y15{bottom:681.373333pt;}
.yee{bottom:684.253333pt;}
.yb0{bottom:696.893333pt;}
.y7b{bottom:699.293333pt;}
.y14{bottom:699.773333pt;}
.y3d{bottom:700.253333pt;}
.y56{bottom:701.053333pt;}
.yd4{bottom:704.893333pt;}
.y13{bottom:718.173333pt;}
.y99{bottom:721.213333pt;}
.yed{bottom:722.013333pt;}
.y55{bottom:728.733333pt;}
.yd3{bottom:732.413333pt;}
.y3c{bottom:733.213333pt;}
.yaf{bottom:735.133333pt;}
.y7a{bottom:737.533333pt;}
.y12{bottom:742.653333pt;}
.y98{bottom:748.733333pt;}
.y54{bottom:756.253333pt;}
.yd2{bottom:760.093333pt;}
.y3b{bottom:760.893333pt;}
.y11{bottom:761.053333pt;}
.yae{bottom:762.813333pt;}
.y10{bottom:773.373333pt;}
.y79{bottom:775.813333pt;}
.y97{bottom:787.013333pt;}
.y3a{bottom:788.453333pt;}
.yad{bottom:790.373333pt;}
.yf{bottom:791.813333pt;}
.y53{bottom:794.533333pt;}
.yd1{bottom:798.373333pt;}
.y78{bottom:803.493333pt;}
.y71{bottom:810.053333pt;}
.ye{bottom:810.213333pt;}
.y39{bottom:816.133333pt;}
.yac{bottom:818.053333pt;}
.y96{bottom:823.173333pt;}
.yd0{bottom:826.053333pt;}
.yec{bottom:828.613333pt;}
.y70{bottom:829.093333pt;}
.yd{bottom:829.893333pt;}
.y77{bottom:831.013333pt;}
.y95{bottom:836.293333pt;}
.y38{bottom:843.653333pt;}
.yab{bottom:845.573333pt;}
.y6f{bottom:848.293333pt;}
.ycf{bottom:853.573333pt;}
.yc{bottom:854.373333pt;}
.yeb{bottom:856.293333pt;}
.y76{bottom:858.693333pt;}
.y94{bottom:865.733333pt;}
.y37{bottom:871.333333pt;}
.yaa{bottom:873.253333pt;}
.yb{bottom:878.853333pt;}
.yce{bottom:883.173333pt;}
.yea{bottom:883.813333pt;}
.y6e{bottom:885.733333pt;}
.y75{bottom:886.213333pt;}
.y93{bottom:895.333333pt;}
.ycd{bottom:896.293333pt;}
.y36{bottom:898.853333pt;}
.ya{bottom:902.213333pt;}
.y6a{bottom:904.773333pt;}
.ya9{bottom:911.493333pt;}
.y74{bottom:913.893333pt;}
.y9{bottom:921.893333pt;}
.ycc{bottom:924.613333pt;}
.y92{bottom:924.933333pt;}
.y35{bottom:926.533333pt;}
.ya8{bottom:939.013333pt;}
.y73{bottom:941.413333pt;}
.y8{bottom:946.373333pt;}
.ycb{bottom:952.773333pt;}
.y34{bottom:954.053333pt;}
.y91{bottom:954.373333pt;}
.ya7{bottom:966.693333pt;}
.y72{bottom:969.093333pt;}
.y7{bottom:970.853333pt;}
.y52{bottom:974.373333pt;}
.yca{bottom:980.933333pt;}
.y33{bottom:991.653333pt;}
.y6{bottom:994.213333pt;}
.hc{height:18.400000pt;}
.h16{height:27.360000pt;}
.h14{height:27.520000pt;}
.h15{height:27.712000pt;}
.he{height:28.800000pt;}
.h10{height:28.960000pt;}
.hd{height:36.800000pt;}
.h8{height:38.441250pt;}
.h17{height:44.320000pt;}
.h11{height:47.621250pt;}
.h3{height:51.031250pt;}
.hf{height:52.296250pt;}
.h2{height:52.785000pt;}
.hb{height:55.200000pt;}
.h6{height:56.312500pt;}
.ha{height:56.843750pt;}
.h4{height:57.375000pt;}
.h7{height:62.761250pt;}
.h9{height:66.507188pt;}
.h5{height:75.602187pt;}
.h12{height:268.506667pt;}
.h13{height:276.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:31.520000pt;}
.wd{width:34.080000pt;}
.wf{width:34.240000pt;}
.we{width:34.272000pt;}
.w10{width:44.000000pt;}
.w7{width:140.826667pt;}
.w8{width:150.560000pt;}
.w6{width:150.586667pt;}
.w9{width:159.706667pt;}
.w4{width:199.226667pt;}
.w5{width:211.066667pt;}
.wc{width:439.266667pt;}
.wa{width:600.573333pt;}
.wb{width:601.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x1d{left:9.600000pt;}
.x27{left:12.160000pt;}
.x1e{left:13.280000pt;}
.x19{left:14.560000pt;}
.x1a{left:16.800000pt;}
.x1b{left:46.714667pt;}
.x21{left:104.352000pt;}
.x1{left:113.471988pt;}
.x18{left:114.592000pt;}
.xc{left:116.351988pt;}
.xa{left:132.351988pt;}
.x5{left:136.666655pt;}
.x4{left:137.626655pt;}
.x20{left:145.466655pt;}
.xf{left:146.426667pt;}
.x7{left:151.226655pt;}
.x14{left:157.306655pt;}
.xb{left:160.666655pt;}
.x8{left:189.146655pt;}
.x3{left:190.746655pt;}
.x17{left:233.626655pt;}
.x6{left:262.626655pt;}
.x15{left:274.786667pt;}
.x12{left:278.786667pt;}
.x10{left:346.306667pt;}
.xd{left:401.186655pt;}
.x13{left:420.253333pt;}
.x1c{left:433.181333pt;}
.x16{left:435.133333pt;}
.x1f{left:441.181333pt;}
.x22{left:544.253333pt;}
.x11{left:558.013333pt;}
.x23{left:578.973333pt;}
.x24{left:613.893333pt;}
.x25{left:648.613333pt;}
.x26{left:683.493333pt;}
.x9{left:694.853322pt;}
.x2{left:718.373322pt;}
}




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