
    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_a8d36ca29a5c24ff7ea76d67.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b25864c2dbf7da1c7d0d17b4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_19af0ed79a890be3205e1d02.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_e9627ae3c3cb13063702a680.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5cd3acadde93a6e52e04fd44.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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(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;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.025920px;}
.ls9{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.025920px;}
.ls4{letter-spacing:0.034560px;}
.ls11{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.440000px;}
.ls13{letter-spacing:30.960000px;}
.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:-19.457280px;}
.wsc{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws8{word-spacing:-19.414080px;}
.wsd{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws0{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:0.000000px;}
._28{margin-left:-3.444000px;}
._3{margin-left:-1.327440px;}
._0{width:1.143840px;}
._5{width:2.175840px;}
._8{width:3.368160px;}
._d{width:4.719600px;}
._e{width:5.784960px;}
._15{width:7.229280px;}
._9{width:8.568000px;}
._6{width:9.648000px;}
._7{width:10.775760px;}
._f{width:12.744000px;}
._10{width:14.328000px;}
._12{width:15.561120px;}
._11{width:16.735440px;}
._16{width:19.767600px;}
._a{width:21.240000px;}
._b{width:22.364160px;}
._c{width:23.527680px;}
._1c{width:24.725760px;}
._19{width:26.064000px;}
._14{width:27.747360px;}
._13{width:28.831440px;}
._1f{width:29.918400px;}
._20{width:30.991440px;}
._21{width:32.472000px;}
._22{width:33.776160px;}
._1a{width:37.848000px;}
._1b{width:39.456000px;}
._1d{width:43.056000px;}
._1e{width:44.640000px;}
._17{width:46.584000px;}
._18{width:48.024000px;}
._25{width:50.400000px;}
._27{width:51.408000px;}
._26{width:52.527600px;}
._30{width:55.623600px;}
._2c{width:74.664000px;}
._2d{width:76.291440px;}
._2e{width:186.408000px;}
._2a{width:194.328000px;}
._2b{width:196.436160px;}
._4{width:219.175200px;}
._29{width:220.656000px;}
._24{width:349.452000px;}
._23{width:351.048000px;}
._32{width:380.088000px;}
._2f{width:452.343600px;}
._31{width:550.740000px;}
._1{width:1209.415680px;}
._2{width:2047.564560px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:40.982709px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:44.676000px;}
.y6{bottom:58.536000px;}
.y2c{bottom:131.076000px;}
.y107{bottom:142.416000px;}
.yde{bottom:142.596000px;}
.y57{bottom:143.496000px;}
.yd3{bottom:145.476000px;}
.y76{bottom:148.176000px;}
.y2b{bottom:148.356000px;}
.y2a{bottom:153.570000px;}
.y106{bottom:163.110000px;}
.ydd{bottom:163.290000px;}
.y56{bottom:164.190000px;}
.yd2{bottom:166.170000px;}
.y29{bottom:166.530000px;}
.y75{bottom:168.870000px;}
.y105{bottom:183.810000px;}
.ydc{bottom:183.990000px;}
.y55{bottom:184.890000px;}
.yd1{bottom:186.870000px;}
.yaa{bottom:187.590000px;}
.y99{bottom:188.850000px;}
.y74{bottom:189.570000px;}
.y28{bottom:201.090000px;}
.ydb{bottom:204.690000px;}
.y54{bottom:205.590000px;}
.yd0{bottom:207.570000px;}
.ya9{bottom:208.290000px;}
.y27{bottom:221.790000px;}
.y104{bottom:222.510000px;}
.y125{bottom:225.210000px;}
.yda{bottom:225.390000px;}
.ye7{bottom:226.290000px;}
.y73{bottom:227.910000px;}
.y98{bottom:228.990000px;}
.y26{bottom:242.490000px;}
.y103{bottom:243.210000px;}
.y53{bottom:244.650000px;}
.y124{bottom:245.910000px;}
.yd9{bottom:246.090000px;}
.ycf{bottom:246.450000px;}
.ye6{bottom:246.990000px;}
.y97{bottom:249.690000px;}
.y25{bottom:263.190000px;}
.y102{bottom:263.910000px;}
.y123{bottom:266.610000px;}
.yd8{bottom:266.790000px;}
.ye5{bottom:267.690000px;}
.y72{bottom:268.590000px;}
.y96{bottom:270.390000px;}
.y52{bottom:284.835000px;}
.yce{bottom:286.635000px;}
.yd7{bottom:287.535000px;}
.y71{bottom:289.335000px;}
.y95{bottom:291.135000px;}
.y24{bottom:301.755000px;}
.y101{bottom:302.655000px;}
.y122{bottom:305.355000px;}
.y51{bottom:305.535000px;}
.ye4{bottom:306.255000px;}
.ycd{bottom:307.335000px;}
.y70{bottom:310.035000px;}
.y94{bottom:311.835000px;}
.y100{bottom:323.355000px;}
.y121{bottom:326.055000px;}
.y50{bottom:326.235000px;}
.ycc{bottom:328.035000px;}
.y6f{bottom:330.735000px;}
.y93{bottom:332.535000px;}
.y23{bottom:341.535000px;}
.yff{bottom:344.055000px;}
.y120{bottom:346.755000px;}
.y4f{bottom:346.935000px;}
.ycb{bottom:348.735000px;}
.ya8{bottom:350.895000px;}
.y6e{bottom:351.435000px;}
.y92{bottom:353.235000px;}
.y22{bottom:358.815000px;}
.y4e{bottom:367.635000px;}
.yca{bottom:369.435000px;}
.y6d{bottom:372.135000px;}
.y91{bottom:373.935000px;}
.y21{bottom:376.095000px;}
.yfe{bottom:382.755000px;}
.y11f{bottom:385.455000px;}
.y4d{bottom:388.335000px;}
.yc9{bottom:390.135000px;}
.ya7{bottom:391.035000px;}
.y6c{bottom:392.835000px;}
.yfd{bottom:403.455000px;}
.y11e{bottom:406.155000px;}
.y4c{bottom:409.035000px;}
.yc8{bottom:410.835000px;}
.ya6{bottom:411.735000px;}
.y20{bottom:412.095000px;}
.y90{bottom:412.995000px;}
.y6b{bottom:413.535000px;}
.y11d{bottom:426.855000px;}
.y4b{bottom:429.735000px;}
.yc7{bottom:431.535000px;}
.ya5{bottom:432.435000px;}
.y6a{bottom:434.235000px;}
.yfc{bottom:442.155000px;}
.y4a{bottom:450.435000px;}
.yc6{bottom:452.235000px;}
.y1f{bottom:452.595000px;}
.y8f{bottom:453.135000px;}
.y69{bottom:454.935000px;}
.yfb{bottom:462.855000px;}
.y11c{bottom:465.555000px;}
.yd6{bottom:471.135000px;}
.yc5{bottom:472.935000px;}
.y1e{bottom:473.295000px;}
.y8e{bottom:473.835000px;}
.y68{bottom:475.635000px;}
.yfa{bottom:483.555000px;}
.y11b{bottom:486.255000px;}
.y49{bottom:489.135000px;}
.yd5{bottom:491.835000px;}
.y1d{bottom:493.995000px;}
.ya4{bottom:494.535000px;}
.yf9{bottom:504.255000px;}
.y11a{bottom:506.955000px;}
.y48{bottom:509.835000px;}
.yc4{bottom:511.635000px;}
.y8d{bottom:512.535000px;}
.y1c{bottom:514.695000px;}
.ya3{bottom:515.235000px;}
.y119{bottom:527.655000px;}
.y47{bottom:530.535000px;}
.yc3{bottom:532.335000px;}
.y8c{bottom:533.235000px;}
.y1b{bottom:535.395000px;}
.ya2{bottom:535.935000px;}
.yf8{bottom:542.955000px;}
.y46{bottom:551.235000px;}
.yc2{bottom:553.035000px;}
.y8b{bottom:553.935000px;}
.y67{bottom:554.835000px;}
.y1a{bottom:556.125000px;}
.ya1{bottom:556.665000px;}
.yf7{bottom:563.685000px;}
.y118{bottom:566.385000px;}
.y45{bottom:571.965000px;}
.yc1{bottom:573.765000px;}
.y8a{bottom:574.665000px;}
.y66{bottom:575.565000px;}
.y19{bottom:576.825000px;}
.yf6{bottom:584.385000px;}
.y117{bottom:587.085000px;}
.y44{bottom:592.665000px;}
.yc0{bottom:594.465000px;}
.y89{bottom:595.365000px;}
.y65{bottom:596.265000px;}
.y18{bottom:597.525000px;}
.y43{bottom:613.365000px;}
.ybf{bottom:615.165000px;}
.ya0{bottom:615.885000px;}
.y64{bottom:616.965000px;}
.y17{bottom:618.225000px;}
.yf5{bottom:623.085000px;}
.y116{bottom:625.785000px;}
.y88{bottom:633.705000px;}
.y42{bottom:633.885000px;}
.y9f{bottom:636.585000px;}
.y16{bottom:638.925000px;}
.yf4{bottom:643.785000px;}
.y115{bottom:646.485000px;}
.ybe{bottom:653.865000px;}
.yd4{bottom:654.405000px;}
.y41{bottom:654.585000px;}
.y63{bottom:655.845000px;}
.y9e{bottom:657.285000px;}
.y15{bottom:659.625000px;}
.yf3{bottom:664.485000px;}
.y114{bottom:667.185000px;}
.y87{bottom:674.385000px;}
.ybd{bottom:674.565000px;}
.y40{bottom:675.285000px;}
.y9d{bottom:677.985000px;}
.yf2{bottom:685.185000px;}
.y113{bottom:687.885000px;}
.y86{bottom:695.085000px;}
.ybc{bottom:695.265000px;}
.y62{bottom:695.985000px;}
.y14{bottom:697.965000px;}
.y9c{bottom:698.685000px;}
.y3f{bottom:713.805000px;}
.y85{bottom:715.785000px;}
.ybb{bottom:715.965000px;}
.y61{bottom:716.685000px;}
.ye3{bottom:719.385000px;}
.yf1{bottom:723.885000px;}
.y112{bottom:726.585000px;}
.y84{bottom:736.485000px;}
.yba{bottom:736.665000px;}
.y60{bottom:737.385000px;}
.y13{bottom:738.465000px;}
.ye2{bottom:740.085000px;}
.yf0{bottom:744.585000px;}
.y111{bottom:747.285000px;}
.y3e{bottom:754.485000px;}
.y83{bottom:757.185000px;}
.yb9{bottom:757.365000px;}
.y5f{bottom:758.085000px;}
.ye1{bottom:760.785000px;}
.yef{bottom:765.285000px;}
.y110{bottom:767.985000px;}
.y3d{bottom:775.185000px;}
.y82{bottom:777.885000px;}
.y5e{bottom:778.785000px;}
.y12{bottom:779.325000px;}
.yee{bottom:785.985000px;}
.y3c{bottom:795.885000px;}
.yb8{bottom:796.065000px;}
.y81{bottom:798.585000px;}
.ye0{bottom:799.305000px;}
.y5d{bottom:799.485000px;}
.y11{bottom:801.825000px;}
.y10f{bottom:806.685000px;}
.y3b{bottom:816.585000px;}
.yb7{bottom:816.765000px;}
.y80{bottom:819.285000px;}
.y5c{bottom:820.185000px;}
.y10{bottom:824.505000px;}
.yed{bottom:824.685000px;}
.y10e{bottom:827.385000px;}
.y3a{bottom:837.285000px;}
.yb6{bottom:837.465000px;}
.y7f{bottom:840.030000px;}
.y5b{bottom:840.930000px;}
.yec{bottom:845.430000px;}
.y10d{bottom:848.130000px;}
.y39{bottom:858.030000px;}
.yb5{bottom:858.210000px;}
.y7e{bottom:860.730000px;}
.y5a{bottom:861.630000px;}
.yeb{bottom:866.130000px;}
.yf{bottom:866.490000px;}
.y38{bottom:878.730000px;}
.yb4{bottom:878.910000px;}
.y7d{bottom:881.430000px;}
.y59{bottom:882.330000px;}
.y10c{bottom:886.830000px;}
.ye{bottom:888.810000px;}
.y37{bottom:899.430000px;}
.yb3{bottom:899.610000px;}
.y7c{bottom:902.130000px;}
.y9b{bottom:903.030000px;}
.yea{bottom:904.830000px;}
.y10b{bottom:907.530000px;}
.yc{bottom:911.490000px;}
.yd{bottom:919.050000px;}
.y36{bottom:920.130000px;}
.yb2{bottom:920.310000px;}
.y58{bottom:921.390000px;}
.y7b{bottom:922.830000px;}
.ye9{bottom:925.530000px;}
.yb{bottom:937.230000px;}
.y35{bottom:940.830000px;}
.yb1{bottom:941.010000px;}
.y9a{bottom:942.090000px;}
.y7a{bottom:943.530000px;}
.ye8{bottom:946.230000px;}
.y34{bottom:961.530000px;}
.yb0{bottom:961.710000px;}
.y79{bottom:964.230000px;}
.y10a{bottom:966.930000px;}
.y33{bottom:982.230000px;}
.yaf{bottom:982.410000px;}
.y78{bottom:984.930000px;}
.y109{bottom:987.630000px;}
.ya{bottom:989.790000px;}
.y32{bottom:1002.930000px;}
.yae{bottom:1003.110000px;}
.y77{bottom:1005.630000px;}
.y31{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.ydf{bottom:1026.330000px;}
.yad{bottom:1042.170000px;}
.y30{bottom:1044.330000px;}
.y108{bottom:1047.030000px;}
.y2f{bottom:1065.030000px;}
.y8{bottom:1076.730000px;}
.yac{bottom:1081.950000px;}
.y2e{bottom:1085.730000px;}
.yab{bottom:1104.450000px;}
.y2d{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.hf{height:28.455767px;}
.ha{height:37.494141px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.he{height:50.027344px;}
.h10{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h3{height:60.226875px;}
.hd{height:70.664062px;}
.h11{height:74.704922px;}
.h12{height:76.279219px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:136.282500px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:55.777500px;}
.x1{left:127.656000px;}
.x10{left:132.516000px;}
.xe{left:148.896000px;}
.x9{left:154.650000px;}
.xd{left:159.510000px;}
.x5{left:168.690000px;}
.x4{left:171.930000px;}
.xc{left:180.750000px;}
.xa{left:280.830000px;}
.xf{left:343.695000px;}
.xb{left:371.775000px;}
.x6{left:394.275000px;}
.x3{left:457.275000px;}
.x7{left:513.262500px;}
.x8{left:520.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.023040pt;}
.ls9{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.023040pt;}
.ls4{letter-spacing:0.030720pt;}
.ls11{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls13{letter-spacing:27.520000pt;}
.ws2{word-spacing:-17.295360pt;}
.wsc{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws8{word-spacing:-17.256960pt;}
.wsd{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:0.000000pt;}
._28{margin-left:-3.061333pt;}
._3{margin-left:-1.179947pt;}
._0{width:1.016747pt;}
._5{width:1.934080pt;}
._8{width:2.993920pt;}
._d{width:4.195200pt;}
._e{width:5.142187pt;}
._15{width:6.426027pt;}
._9{width:7.616000pt;}
._6{width:8.576000pt;}
._7{width:9.578453pt;}
._f{width:11.328000pt;}
._10{width:12.736000pt;}
._12{width:13.832107pt;}
._11{width:14.875947pt;}
._16{width:17.571200pt;}
._a{width:18.880000pt;}
._b{width:19.879253pt;}
._c{width:20.913493pt;}
._1c{width:21.978453pt;}
._19{width:23.168000pt;}
._14{width:24.664320pt;}
._13{width:25.627947pt;}
._1f{width:26.594133pt;}
._20{width:27.547947pt;}
._21{width:28.864000pt;}
._22{width:30.023253pt;}
._1a{width:33.642667pt;}
._1b{width:35.072000pt;}
._1d{width:38.272000pt;}
._1e{width:39.680000pt;}
._17{width:41.408000pt;}
._18{width:42.688000pt;}
._25{width:44.800000pt;}
._27{width:45.696000pt;}
._26{width:46.691200pt;}
._30{width:49.443200pt;}
._2c{width:66.368000pt;}
._2d{width:67.814613pt;}
._2e{width:165.696000pt;}
._2a{width:172.736000pt;}
._2b{width:174.609920pt;}
._4{width:194.822400pt;}
._29{width:196.138667pt;}
._24{width:310.624000pt;}
._23{width:312.042667pt;}
._32{width:337.856000pt;}
._2f{width:402.083200pt;}
._31{width:489.546667pt;}
._1{width:1075.036160pt;}
._2{width:1820.057387pt;}
.fs7{font-size:36.429074pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:39.712000pt;}
.y6{bottom:52.032000pt;}
.y2c{bottom:116.512000pt;}
.y107{bottom:126.592000pt;}
.yde{bottom:126.752000pt;}
.y57{bottom:127.552000pt;}
.yd3{bottom:129.312000pt;}
.y76{bottom:131.712000pt;}
.y2b{bottom:131.872000pt;}
.y2a{bottom:136.506667pt;}
.y106{bottom:144.986667pt;}
.ydd{bottom:145.146667pt;}
.y56{bottom:145.946667pt;}
.yd2{bottom:147.706667pt;}
.y29{bottom:148.026667pt;}
.y75{bottom:150.106667pt;}
.y105{bottom:163.386667pt;}
.ydc{bottom:163.546667pt;}
.y55{bottom:164.346667pt;}
.yd1{bottom:166.106667pt;}
.yaa{bottom:166.746667pt;}
.y99{bottom:167.866667pt;}
.y74{bottom:168.506667pt;}
.y28{bottom:178.746667pt;}
.ydb{bottom:181.946667pt;}
.y54{bottom:182.746667pt;}
.yd0{bottom:184.506667pt;}
.ya9{bottom:185.146667pt;}
.y27{bottom:197.146667pt;}
.y104{bottom:197.786667pt;}
.y125{bottom:200.186667pt;}
.yda{bottom:200.346667pt;}
.ye7{bottom:201.146667pt;}
.y73{bottom:202.586667pt;}
.y98{bottom:203.546667pt;}
.y26{bottom:215.546667pt;}
.y103{bottom:216.186667pt;}
.y53{bottom:217.466667pt;}
.y124{bottom:218.586667pt;}
.yd9{bottom:218.746667pt;}
.ycf{bottom:219.066667pt;}
.ye6{bottom:219.546667pt;}
.y97{bottom:221.946667pt;}
.y25{bottom:233.946667pt;}
.y102{bottom:234.586667pt;}
.y123{bottom:236.986667pt;}
.yd8{bottom:237.146667pt;}
.ye5{bottom:237.946667pt;}
.y72{bottom:238.746667pt;}
.y96{bottom:240.346667pt;}
.y52{bottom:253.186667pt;}
.yce{bottom:254.786667pt;}
.yd7{bottom:255.586667pt;}
.y71{bottom:257.186667pt;}
.y95{bottom:258.786667pt;}
.y24{bottom:268.226667pt;}
.y101{bottom:269.026667pt;}
.y122{bottom:271.426667pt;}
.y51{bottom:271.586667pt;}
.ye4{bottom:272.226667pt;}
.ycd{bottom:273.186667pt;}
.y70{bottom:275.586667pt;}
.y94{bottom:277.186667pt;}
.y100{bottom:287.426667pt;}
.y121{bottom:289.826667pt;}
.y50{bottom:289.986667pt;}
.ycc{bottom:291.586667pt;}
.y6f{bottom:293.986667pt;}
.y93{bottom:295.586667pt;}
.y23{bottom:303.586667pt;}
.yff{bottom:305.826667pt;}
.y120{bottom:308.226667pt;}
.y4f{bottom:308.386667pt;}
.ycb{bottom:309.986667pt;}
.ya8{bottom:311.906667pt;}
.y6e{bottom:312.386667pt;}
.y92{bottom:313.986667pt;}
.y22{bottom:318.946667pt;}
.y4e{bottom:326.786667pt;}
.yca{bottom:328.386667pt;}
.y6d{bottom:330.786667pt;}
.y91{bottom:332.386667pt;}
.y21{bottom:334.306667pt;}
.yfe{bottom:340.226667pt;}
.y11f{bottom:342.626667pt;}
.y4d{bottom:345.186667pt;}
.yc9{bottom:346.786667pt;}
.ya7{bottom:347.586667pt;}
.y6c{bottom:349.186667pt;}
.yfd{bottom:358.626667pt;}
.y11e{bottom:361.026667pt;}
.y4c{bottom:363.586667pt;}
.yc8{bottom:365.186667pt;}
.ya6{bottom:365.986667pt;}
.y20{bottom:366.306667pt;}
.y90{bottom:367.106667pt;}
.y6b{bottom:367.586667pt;}
.y11d{bottom:379.426667pt;}
.y4b{bottom:381.986667pt;}
.yc7{bottom:383.586667pt;}
.ya5{bottom:384.386667pt;}
.y6a{bottom:385.986667pt;}
.yfc{bottom:393.026667pt;}
.y4a{bottom:400.386667pt;}
.yc6{bottom:401.986667pt;}
.y1f{bottom:402.306667pt;}
.y8f{bottom:402.786667pt;}
.y69{bottom:404.386667pt;}
.yfb{bottom:411.426667pt;}
.y11c{bottom:413.826667pt;}
.yd6{bottom:418.786667pt;}
.yc5{bottom:420.386667pt;}
.y1e{bottom:420.706667pt;}
.y8e{bottom:421.186667pt;}
.y68{bottom:422.786667pt;}
.yfa{bottom:429.826667pt;}
.y11b{bottom:432.226667pt;}
.y49{bottom:434.786667pt;}
.yd5{bottom:437.186667pt;}
.y1d{bottom:439.106667pt;}
.ya4{bottom:439.586667pt;}
.yf9{bottom:448.226667pt;}
.y11a{bottom:450.626667pt;}
.y48{bottom:453.186667pt;}
.yc4{bottom:454.786667pt;}
.y8d{bottom:455.586667pt;}
.y1c{bottom:457.506667pt;}
.ya3{bottom:457.986667pt;}
.y119{bottom:469.026667pt;}
.y47{bottom:471.586667pt;}
.yc3{bottom:473.186667pt;}
.y8c{bottom:473.986667pt;}
.y1b{bottom:475.906667pt;}
.ya2{bottom:476.386667pt;}
.yf8{bottom:482.626667pt;}
.y46{bottom:489.986667pt;}
.yc2{bottom:491.586667pt;}
.y8b{bottom:492.386667pt;}
.y67{bottom:493.186667pt;}
.y1a{bottom:494.333333pt;}
.ya1{bottom:494.813333pt;}
.yf7{bottom:501.053333pt;}
.y118{bottom:503.453333pt;}
.y45{bottom:508.413333pt;}
.yc1{bottom:510.013333pt;}
.y8a{bottom:510.813333pt;}
.y66{bottom:511.613333pt;}
.y19{bottom:512.733333pt;}
.yf6{bottom:519.453333pt;}
.y117{bottom:521.853333pt;}
.y44{bottom:526.813333pt;}
.yc0{bottom:528.413333pt;}
.y89{bottom:529.213333pt;}
.y65{bottom:530.013333pt;}
.y18{bottom:531.133333pt;}
.y43{bottom:545.213333pt;}
.ybf{bottom:546.813333pt;}
.ya0{bottom:547.453333pt;}
.y64{bottom:548.413333pt;}
.y17{bottom:549.533333pt;}
.yf5{bottom:553.853333pt;}
.y116{bottom:556.253333pt;}
.y88{bottom:563.293333pt;}
.y42{bottom:563.453333pt;}
.y9f{bottom:565.853333pt;}
.y16{bottom:567.933333pt;}
.yf4{bottom:572.253333pt;}
.y115{bottom:574.653333pt;}
.ybe{bottom:581.213333pt;}
.yd4{bottom:581.693333pt;}
.y41{bottom:581.853333pt;}
.y63{bottom:582.973333pt;}
.y9e{bottom:584.253333pt;}
.y15{bottom:586.333333pt;}
.yf3{bottom:590.653333pt;}
.y114{bottom:593.053333pt;}
.y87{bottom:599.453333pt;}
.ybd{bottom:599.613333pt;}
.y40{bottom:600.253333pt;}
.y9d{bottom:602.653333pt;}
.yf2{bottom:609.053333pt;}
.y113{bottom:611.453333pt;}
.y86{bottom:617.853333pt;}
.ybc{bottom:618.013333pt;}
.y62{bottom:618.653333pt;}
.y14{bottom:620.413333pt;}
.y9c{bottom:621.053333pt;}
.y3f{bottom:634.493333pt;}
.y85{bottom:636.253333pt;}
.ybb{bottom:636.413333pt;}
.y61{bottom:637.053333pt;}
.ye3{bottom:639.453333pt;}
.yf1{bottom:643.453333pt;}
.y112{bottom:645.853333pt;}
.y84{bottom:654.653333pt;}
.yba{bottom:654.813333pt;}
.y60{bottom:655.453333pt;}
.y13{bottom:656.413333pt;}
.ye2{bottom:657.853333pt;}
.yf0{bottom:661.853333pt;}
.y111{bottom:664.253333pt;}
.y3e{bottom:670.653333pt;}
.y83{bottom:673.053333pt;}
.yb9{bottom:673.213333pt;}
.y5f{bottom:673.853333pt;}
.ye1{bottom:676.253333pt;}
.yef{bottom:680.253333pt;}
.y110{bottom:682.653333pt;}
.y3d{bottom:689.053333pt;}
.y82{bottom:691.453333pt;}
.y5e{bottom:692.253333pt;}
.y12{bottom:692.733333pt;}
.yee{bottom:698.653333pt;}
.y3c{bottom:707.453333pt;}
.yb8{bottom:707.613333pt;}
.y81{bottom:709.853333pt;}
.ye0{bottom:710.493333pt;}
.y5d{bottom:710.653333pt;}
.y11{bottom:712.733333pt;}
.y10f{bottom:717.053333pt;}
.y3b{bottom:725.853333pt;}
.yb7{bottom:726.013333pt;}
.y80{bottom:728.253333pt;}
.y5c{bottom:729.053333pt;}
.y10{bottom:732.893333pt;}
.yed{bottom:733.053333pt;}
.y10e{bottom:735.453333pt;}
.y3a{bottom:744.253333pt;}
.yb6{bottom:744.413333pt;}
.y7f{bottom:746.693333pt;}
.y5b{bottom:747.493333pt;}
.yec{bottom:751.493333pt;}
.y10d{bottom:753.893333pt;}
.y39{bottom:762.693333pt;}
.yb5{bottom:762.853333pt;}
.y7e{bottom:765.093333pt;}
.y5a{bottom:765.893333pt;}
.yeb{bottom:769.893333pt;}
.yf{bottom:770.213333pt;}
.y38{bottom:781.093333pt;}
.yb4{bottom:781.253333pt;}
.y7d{bottom:783.493333pt;}
.y59{bottom:784.293333pt;}
.y10c{bottom:788.293333pt;}
.ye{bottom:790.053333pt;}
.y37{bottom:799.493333pt;}
.yb3{bottom:799.653333pt;}
.y7c{bottom:801.893333pt;}
.y9b{bottom:802.693333pt;}
.yea{bottom:804.293333pt;}
.y10b{bottom:806.693333pt;}
.yc{bottom:810.213333pt;}
.yd{bottom:816.933333pt;}
.y36{bottom:817.893333pt;}
.yb2{bottom:818.053333pt;}
.y58{bottom:819.013333pt;}
.y7b{bottom:820.293333pt;}
.ye9{bottom:822.693333pt;}
.yb{bottom:833.093333pt;}
.y35{bottom:836.293333pt;}
.yb1{bottom:836.453333pt;}
.y9a{bottom:837.413333pt;}
.y7a{bottom:838.693333pt;}
.ye8{bottom:841.093333pt;}
.y34{bottom:854.693333pt;}
.yb0{bottom:854.853333pt;}
.y79{bottom:857.093333pt;}
.y10a{bottom:859.493333pt;}
.y33{bottom:873.093333pt;}
.yaf{bottom:873.253333pt;}
.y78{bottom:875.493333pt;}
.y109{bottom:877.893333pt;}
.ya{bottom:879.813333pt;}
.y32{bottom:891.493333pt;}
.yae{bottom:891.653333pt;}
.y77{bottom:893.893333pt;}
.y31{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.ydf{bottom:912.293333pt;}
.yad{bottom:926.373333pt;}
.y30{bottom:928.293333pt;}
.y108{bottom:930.693333pt;}
.y2f{bottom:946.693333pt;}
.y8{bottom:957.093333pt;}
.yac{bottom:961.733333pt;}
.y2e{bottom:965.093333pt;}
.yab{bottom:981.733333pt;}
.y2d{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.hf{height:25.294016pt;}
.ha{height:33.328125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.he{height:44.468750pt;}
.h10{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h3{height:53.535000pt;}
.hd{height:62.812500pt;}
.h11{height:66.404375pt;}
.h12{height:67.803750pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:121.140000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:49.580000pt;}
.x1{left:113.472000pt;}
.x10{left:117.792000pt;}
.xe{left:132.352000pt;}
.x9{left:137.466667pt;}
.xd{left:141.786667pt;}
.x5{left:149.946667pt;}
.x4{left:152.826667pt;}
.xc{left:160.666667pt;}
.xa{left:249.626667pt;}
.xf{left:305.506667pt;}
.xb{left:330.466667pt;}
.x6{left:350.466667pt;}
.x3{left:406.466667pt;}
.x7{left:456.233333pt;}
.x8{left:462.333333pt;}
}




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