
    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_cf99e572b2e6ce216a3f3c04.woff')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_7bfa349daf506dc0da6d9ad8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_4b2c81be0a3a664a58b9af4a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_a5e45989bfbab9117116a418.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_0d8799f0dcf45ac4c3b97156.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c2f891129dcf17e8852352c7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.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;}
}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.716000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-5.642880px;}
._f{margin-left:-3.504000px;}
._3{margin-left:-2.232000px;}
._2{margin-left:-1.125120px;}
._0{width:1.195200px;}
._1{width:2.606640px;}
._6{width:4.233360px;}
._5{width:5.304000px;}
._9{width:6.566640px;}
._a{width:7.703040px;}
._12{width:8.929920px;}
._13{width:10.222080px;}
._14{width:11.356800px;}
._1a{width:12.477120px;}
._15{width:13.968000px;}
._4{width:15.768000px;}
._c{width:16.992000px;}
._1f{width:19.224000px;}
._7{width:20.232000px;}
._b{width:21.700800px;}
._1e{width:22.824000px;}
._1d{width:24.019200px;}
._26{width:25.029120px;}
._d{width:26.064000px;}
._e{width:27.129600px;}
._22{width:29.088000px;}
._23{width:30.528000px;}
._20{width:32.184000px;}
._21{width:33.192000px;}
._29{width:34.365120px;}
._18{width:35.640000px;}
._19{width:36.732000px;}
._2a{width:37.861920px;}
._1b{width:39.240000px;}
._1c{width:40.464000px;}
._28{width:41.616000px;}
._24{width:43.272000px;}
._25{width:44.524800px;}
._2d{width:46.872000px;}
._2b{width:48.096000px;}
._2c{width:50.188800px;}
._10{width:99.720000px;}
._11{width:100.860000px;}
._30{width:155.880000px;}
._31{width:156.960000px;}
._2e{width:165.204000px;}
._2f{width:166.252800px;}
._32{width:188.496000px;}
._33{width:190.080000px;}
._17{width:193.680000px;}
._16{width:194.820000px;}
._27{width:1967.520000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:2.880000px;}
.y77{bottom:3.060000px;}
.yb3{bottom:9.180000px;}
.yae{bottom:9.360000px;}
.yab{bottom:9.720000px;}
.yb1{bottom:9.900000px;}
.y96{bottom:10.620000px;}
.y6d{bottom:10.650000px;}
.y71{bottom:10.800000px;}
.y8b{bottom:13.860000px;}
.yad{bottom:15.660000px;}
.yb0{bottom:16.740000px;}
.yb5{bottom:16.920000px;}
.y97{bottom:18.360000px;}
.y73{bottom:18.540000px;}
.y6e{bottom:18.570000px;}
.y94{bottom:18.720000px;}
.y8d{bottom:20.700000px;}
.y88{bottom:22.500000px;}
.y70{bottom:26.280000px;}
.y6b{bottom:26.640000px;}
.y86{bottom:33.300000px;}
.y72{bottom:34.020000px;}
.y93{bottom:34.380000px;}
.y83{bottom:41.040000px;}
.y6a{bottom:42.120000px;}
.y84{bottom:48.960000px;}
.y82{bottom:56.700000px;}
.y7{bottom:56.880000px;}
.y80{bottom:57.060000px;}
.y85{bottom:64.440000px;}
.y7f{bottom:72.540000px;}
.y66{bottom:118.620000px;}
.yd0{bottom:129.960000px;}
.y8f{bottom:133.740000px;}
.ye4{bottom:138.780000px;}
.y52{bottom:139.320000px;}
.y29{bottom:147.960000px;}
.y65{bottom:149.760000px;}
.y8e{bottom:151.200000px;}
.ycf{bottom:160.920000px;}
.y28{bottom:168.660000px;}
.ye3{bottom:169.740000px;}
.y51{bottom:170.460000px;}
.y64{bottom:180.750000px;}
.y8c{bottom:186.330000px;}
.y27{bottom:189.390000px;}
.yce{bottom:192.090000px;}
.ye2{bottom:200.910000px;}
.y50{bottom:201.450000px;}
.y26{bottom:210.090000px;}
.y63{bottom:211.890000px;}
.y8a{bottom:219.630000px;}
.ycd{bottom:223.050000px;}
.ye8{bottom:224.850000px;}
.y25{bottom:230.790000px;}
.ye1{bottom:231.870000px;}
.y4f{bottom:232.590000px;}
.y62{bottom:242.850000px;}
.y89{bottom:246.090000px;}
.ya7{bottom:250.410000px;}
.y24{bottom:251.490000px;}
.ycc{bottom:254.010000px;}
.ye7{bottom:255.990000px;}
.y87{bottom:261.570000px;}
.ye0{bottom:263.010000px;}
.y4e{bottom:263.550000px;}
.y23{bottom:272.190000px;}
.y61{bottom:273.990000px;}
.ya6{bottom:281.370000px;}
.ycb{bottom:285.150000px;}
.ye6{bottom:286.950000px;}
.ydf{bottom:293.970000px;}
.y4d{bottom:294.690000px;}
.y7e{bottom:296.670000px;}
.y22{bottom:297.750000px;}
.y60{bottom:304.950000px;}
.ya5{bottom:312.510000px;}
.yca{bottom:316.110000px;}
.ye5{bottom:318.090000px;}
.yde{bottom:325.110000px;}
.y4c{bottom:325.650000px;}
.y81{bottom:328.530000px;}
.y5f{bottom:336.090000px;}
.y21{bottom:336.450000px;}
.ya4{bottom:343.470000px;}
.yc9{bottom:347.250000px;}
.ydd{bottom:356.070000px;}
.y4b{bottom:356.790000px;}
.y5e{bottom:367.050000px;}
.y20{bottom:375.150000px;}
.yc8{bottom:378.210000px;}
.ya3{bottom:380.730000px;}
.ydc{bottom:387.210000px;}
.y4a{bottom:387.750000px;}
.y1f{bottom:395.850000px;}
.y5d{bottom:398.190000px;}
.y49{bottom:408.450000px;}
.yc7{bottom:409.350000px;}
.ya2{bottom:415.290000px;}
.ydb{bottom:418.170000px;}
.y48{bottom:429.195000px;}
.ya1{bottom:429.375000px;}
.y1e{bottom:434.595000px;}
.y7d{bottom:439.995000px;}
.yc6{bottom:440.355000px;}
.yda{bottom:449.355000px;}
.y47{bottom:449.895000px;}
.y7c{bottom:457.275000px;}
.y5c{bottom:460.155000px;}
.y46{bottom:470.595000px;}
.yc5{bottom:471.495000px;}
.y1d{bottom:473.295000px;}
.yd9{bottom:480.315000px;}
.y7b{bottom:485.535000px;}
.y45{bottom:491.295000px;}
.y1c{bottom:493.995000px;}
.yc4{bottom:502.455000px;}
.yd8{bottom:511.455000px;}
.y44{bottom:511.995000px;}
.y1b{bottom:514.695000px;}
.y7a{bottom:516.675000px;}
.y5b{bottom:522.255000px;}
.y43{bottom:532.695000px;}
.yc3{bottom:533.595000px;}
.y79{bottom:534.135000px;}
.y1a{bottom:535.395000px;}
.yd7{bottom:542.415000px;}
.y78{bottom:549.615000px;}
.y42{bottom:553.395000px;}
.y19{bottom:556.095000px;}
.yc2{bottom:564.555000px;}
.y76{bottom:565.095000px;}
.yd6{bottom:573.555000px;}
.y41{bottom:574.095000px;}
.y75{bottom:580.755000px;}
.y5a{bottom:584.355000px;}
.y18{bottom:587.055000px;}
.y40{bottom:594.795000px;}
.yc1{bottom:595.695000px;}
.y74{bottom:596.235000px;}
.yd5{bottom:604.515000px;}
.y69{bottom:611.715000px;}
.y3f{bottom:615.495000px;}
.y17{bottom:615.675000px;}
.yc0{bottom:626.655000px;}
.yd4{bottom:635.655000px;}
.y3e{bottom:636.195000px;}
.y16{bottom:641.595000px;}
.y59{bottom:646.455000px;}
.y3d{bottom:656.895000px;}
.ybf{bottom:657.795000px;}
.y6c{bottom:659.055000px;}
.y15{bottom:659.595000px;}
.yd3{bottom:666.645000px;}
.y3c{bottom:677.625000px;}
.y14{bottom:680.325000px;}
.ybe{bottom:688.785000px;}
.y68{bottom:694.185000px;}
.yd2{bottom:697.785000px;}
.y3b{bottom:698.325000px;}
.y13{bottom:704.085000px;}
.y58{bottom:708.585000px;}
.ybd{bottom:709.485000px;}
.y67{bottom:711.465000px;}
.y3a{bottom:719.025000px;}
.y12{bottom:727.845000px;}
.ybc{bottom:730.185000px;}
.ya0{bottom:738.465000px;}
.y39{bottom:739.725000px;}
.yd1{bottom:749.625000px;}
.ybb{bottom:750.885000px;}
.y11{bottom:751.785000px;}
.y38{bottom:760.425000px;}
.yba{bottom:768.345000px;}
.y9f{bottom:769.425000px;}
.y57{bottom:770.685000px;}
.y10{bottom:775.545000px;}
.y37{bottom:781.125000px;}
.yb9{bottom:784.005000px;}
.y9e{bottom:790.125000px;}
.yf{bottom:799.305000px;}
.yb8{bottom:799.485000px;}
.y36{bottom:801.825000px;}
.y9d{bottom:810.825000px;}
.y35{bottom:822.525000px;}
.ye{bottom:823.065000px;}
.yb7{bottom:827.745000px;}
.y9c{bottom:828.285000px;}
.y56{bottom:832.785000px;}
.y34{bottom:843.225000px;}
.y9b{bottom:843.945000px;}
.yd{bottom:854.205000px;}
.yb6{bottom:857.085000px;}
.y9a{bottom:859.425000px;}
.y33{bottom:863.925000px;}
.y99{bottom:874.905000px;}
.yc{bottom:877.965000px;}
.y32{bottom:884.625000px;}
.yb4{bottom:885.345000px;}
.y98{bottom:890.385000px;}
.y55{bottom:894.885000px;}
.y31{bottom:905.325000px;}
.y92{bottom:906.810000px;}
.yb2{bottom:914.910000px;}
.yb{bottom:921.030000px;}
.y30{bottom:926.070000px;}
.y95{bottom:938.490000px;}
.yaf{bottom:943.170000px;}
.y2f{bottom:946.770000px;}
.ya{bottom:951.990000px;}
.y54{bottom:957.030000px;}
.y2e{bottom:967.470000px;}
.yac{bottom:972.510000px;}
.y91{bottom:973.590000px;}
.y2d{bottom:988.170000px;}
.y90{bottom:990.870000px;}
.y9{bottom:1001.130000px;}
.yaa{bottom:1001.490000px;}
.y2c{bottom:1008.870000px;}
.y53{bottom:1019.130000px;}
.y2b{bottom:1029.570000px;}
.y8{bottom:1032.270000px;}
.ya9{bottom:1035.690000px;}
.y2a{bottom:1050.270000px;}
.ya8{bottom:1052.970000px;}
.y6{bottom:1070.250000px;}
.y5{bottom:1087.530000px;}
.y4{bottom:1104.630000px;}
.y3{bottom:1121.910000px;}
.y2{bottom:1138.470000px;}
.y1{bottom:1149.840000px;}
.he{height:15.480000px;}
.h10{height:15.660000px;}
.h15{height:26.460000px;}
.h1c{height:28.260000px;}
.h1d{height:29.340000px;}
.h1e{height:29.556000px;}
.h1a{height:30.240000px;}
.h19{height:30.960000px;}
.h13{height:31.140000px;}
.hc{height:31.176000px;}
.h16{height:33.300000px;}
.h14{height:35.100000px;}
.h17{height:35.136000px;}
.hb{height:39.102539px;}
.h2{height:43.246406px;}
.h1b{height:43.273477px;}
.hd{height:46.620000px;}
.hf{height:48.410156px;}
.h7{height:49.255313px;}
.h5{height:52.136719px;}
.h3{height:53.573906px;}
.h9{height:59.343750px;}
.h8{height:60.679688px;}
.h18{height:62.820000px;}
.h4{height:64.546875px;}
.h6{height:70.606406px;}
.ha{height:78.516000px;}
.h12{height:107.496000px;}
.h11{height:139.356000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:37.620000px;}
.w11{width:45.900000px;}
.w16{width:45.936000px;}
.w14{width:54.756000px;}
.w9{width:66.600000px;}
.w7{width:67.176000px;}
.wb{width:67.320000px;}
.wa{width:69.516000px;}
.wc{width:69.660000px;}
.w8{width:70.200000px;}
.w13{width:73.080000px;}
.w12{width:73.116000px;}
.w1b{width:86.436000px;}
.w1d{width:86.796000px;}
.w1f{width:86.976000px;}
.w21{width:87.516000px;}
.w1c{width:88.380000px;}
.w1e{width:88.740000px;}
.w15{width:89.460000px;}
.wd{width:91.080000px;}
.w3{width:91.260000px;}
.w17{width:110.880000px;}
.wf{width:118.980000px;}
.we{width:119.016000px;}
.w23{width:119.196000px;}
.w5{width:136.116000px;}
.w6{width:136.980000px;}
.w4{width:137.376000px;}
.w10{width:144.216000px;}
.w20{width:169.770000px;}
.w18{width:174.990000px;}
.w19{width:175.530000px;}
.w1a{width:175.710000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:5.220000px;}
.x53{left:7.020000px;}
.x40{left:8.460000px;}
.x24{left:9.900000px;}
.x31{left:10.980000px;}
.x3d{left:13.320000px;}
.x23{left:14.940000px;}
.x16{left:16.020000px;}
.x38{left:17.640000px;}
.x21{left:19.260000px;}
.x3a{left:20.520000px;}
.x2a{left:21.600000px;}
.x2c{left:22.890000px;}
.x2b{left:24.840000px;}
.x2e{left:26.640000px;}
.x34{left:27.900000px;}
.x15{left:30.234000px;}
.x29{left:31.680000px;}
.x43{left:33.165000px;}
.x2d{left:36.894000px;}
.x28{left:40.674000px;}
.x20{left:43.380000px;}
.x1a{left:45.900000px;}
.x1d{left:47.340000px;}
.x18{left:51.165000px;}
.x1c{left:55.080000px;}
.x36{left:56.910000px;}
.x52{left:58.545000px;}
.x59{left:59.580000px;}
.x57{left:61.965000px;}
.x1f{left:63.000000px;}
.x45{left:66.825000px;}
.x55{left:70.965000px;}
.x56{left:72.945000px;}
.x54{left:76.725000px;}
.x30{left:90.936000px;}
.x4f{left:92.385000px;}
.x58{left:106.065000px;}
.xe{left:127.835987px;}
.x3{left:140.975987px;}
.x9{left:146.195987px;}
.xa{left:149.255987px;}
.x7{left:152.669987px;}
.x11{left:160.769987px;}
.x10{left:170.129987px;}
.x13{left:172.829987px;}
.x12{left:180.749987px;}
.x32{left:182.010000px;}
.xc{left:190.469987px;}
.x4c{left:192.809987px;}
.x17{left:218.910000px;}
.x3c{left:227.910000px;}
.x44{left:238.890000px;}
.x4{left:255.674987px;}
.x2f{left:263.774987px;}
.x4d{left:279.794987px;}
.x22{left:286.095000px;}
.x14{left:294.734987px;}
.x5{left:299.234987px;}
.x33{left:301.035000px;}
.x8{left:306.434987px;}
.x4e{left:323.534987px;}
.x48{left:325.515000px;}
.x3e{left:346.935000px;}
.x19{left:356.295000px;}
.x2{left:409.214987px;}
.x46{left:413.895000px;}
.x35{left:420.015000px;}
.x25{left:422.895000px;}
.xf{left:425.984987px;}
.x5a{left:437.504987px;}
.x6{left:442.004987px;}
.xd{left:444.344987px;}
.xb{left:446.504987px;}
.x4b{left:467.744987px;}
.x3f{left:474.765000px;}
.x1b{left:492.405000px;}
.x50{left:496.725000px;}
.x49{left:500.685000px;}
.x51{left:534.345000px;}
.x26{left:559.005000px;}
.x37{left:564.225000px;}
.x47{left:589.425000px;}
.x41{left:610.170000px;}
.x1e{left:628.530000px;}
.x4a{left:676.410000px;}
.x39{left:683.250000px;}
.x27{left:695.850000px;}
.x42{left:729.150000px;}
.x1{left:869.039987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-5.015893pt;}
._f{margin-left:-3.114667pt;}
._3{margin-left:-1.984000pt;}
._2{margin-left:-1.000107pt;}
._0{width:1.062400pt;}
._1{width:2.317013pt;}
._6{width:3.762987pt;}
._5{width:4.714667pt;}
._9{width:5.837013pt;}
._a{width:6.847147pt;}
._12{width:7.937707pt;}
._13{width:9.086293pt;}
._14{width:10.094933pt;}
._1a{width:11.090773pt;}
._15{width:12.416000pt;}
._4{width:14.016000pt;}
._c{width:15.104000pt;}
._1f{width:17.088000pt;}
._7{width:17.984000pt;}
._b{width:19.289600pt;}
._1e{width:20.288000pt;}
._1d{width:21.350400pt;}
._26{width:22.248107pt;}
._d{width:23.168000pt;}
._e{width:24.115200pt;}
._22{width:25.856000pt;}
._23{width:27.136000pt;}
._20{width:28.608000pt;}
._21{width:29.504000pt;}
._29{width:30.546773pt;}
._18{width:31.680000pt;}
._19{width:32.650667pt;}
._2a{width:33.655040pt;}
._1b{width:34.880000pt;}
._1c{width:35.968000pt;}
._28{width:36.992000pt;}
._24{width:38.464000pt;}
._25{width:39.577600pt;}
._2d{width:41.664000pt;}
._2b{width:42.752000pt;}
._2c{width:44.612267pt;}
._10{width:88.640000pt;}
._11{width:89.653333pt;}
._30{width:138.560000pt;}
._31{width:139.520000pt;}
._2e{width:146.848000pt;}
._2f{width:147.780267pt;}
._32{width:167.552000pt;}
._33{width:168.960000pt;}
._17{width:172.160000pt;}
._16{width:173.173333pt;}
._27{width:1748.906667pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:2.560000pt;}
.y77{bottom:2.720000pt;}
.yb3{bottom:8.160000pt;}
.yae{bottom:8.320000pt;}
.yab{bottom:8.640000pt;}
.yb1{bottom:8.800000pt;}
.y96{bottom:9.440000pt;}
.y6d{bottom:9.466667pt;}
.y71{bottom:9.600000pt;}
.y8b{bottom:12.320000pt;}
.yad{bottom:13.920000pt;}
.yb0{bottom:14.880000pt;}
.yb5{bottom:15.040000pt;}
.y97{bottom:16.320000pt;}
.y73{bottom:16.480000pt;}
.y6e{bottom:16.506667pt;}
.y94{bottom:16.640000pt;}
.y8d{bottom:18.400000pt;}
.y88{bottom:20.000000pt;}
.y70{bottom:23.360000pt;}
.y6b{bottom:23.680000pt;}
.y86{bottom:29.600000pt;}
.y72{bottom:30.240000pt;}
.y93{bottom:30.560000pt;}
.y83{bottom:36.480000pt;}
.y6a{bottom:37.440000pt;}
.y84{bottom:43.520000pt;}
.y82{bottom:50.400000pt;}
.y7{bottom:50.560000pt;}
.y80{bottom:50.720000pt;}
.y85{bottom:57.280000pt;}
.y7f{bottom:64.480000pt;}
.y66{bottom:105.440000pt;}
.yd0{bottom:115.520000pt;}
.y8f{bottom:118.880000pt;}
.ye4{bottom:123.360000pt;}
.y52{bottom:123.840000pt;}
.y29{bottom:131.520000pt;}
.y65{bottom:133.120000pt;}
.y8e{bottom:134.400000pt;}
.ycf{bottom:143.040000pt;}
.y28{bottom:149.920000pt;}
.ye3{bottom:150.880000pt;}
.y51{bottom:151.520000pt;}
.y64{bottom:160.666667pt;}
.y8c{bottom:165.626667pt;}
.y27{bottom:168.346667pt;}
.yce{bottom:170.746667pt;}
.ye2{bottom:178.586667pt;}
.y50{bottom:179.066667pt;}
.y26{bottom:186.746667pt;}
.y63{bottom:188.346667pt;}
.y8a{bottom:195.226667pt;}
.ycd{bottom:198.266667pt;}
.ye8{bottom:199.866667pt;}
.y25{bottom:205.146667pt;}
.ye1{bottom:206.106667pt;}
.y4f{bottom:206.746667pt;}
.y62{bottom:215.866667pt;}
.y89{bottom:218.746667pt;}
.ya7{bottom:222.586667pt;}
.y24{bottom:223.546667pt;}
.ycc{bottom:225.786667pt;}
.ye7{bottom:227.546667pt;}
.y87{bottom:232.506667pt;}
.ye0{bottom:233.786667pt;}
.y4e{bottom:234.266667pt;}
.y23{bottom:241.946667pt;}
.y61{bottom:243.546667pt;}
.ya6{bottom:250.106667pt;}
.ycb{bottom:253.466667pt;}
.ye6{bottom:255.066667pt;}
.ydf{bottom:261.306667pt;}
.y4d{bottom:261.946667pt;}
.y7e{bottom:263.706667pt;}
.y22{bottom:264.666667pt;}
.y60{bottom:271.066667pt;}
.ya5{bottom:277.786667pt;}
.yca{bottom:280.986667pt;}
.ye5{bottom:282.746667pt;}
.yde{bottom:288.986667pt;}
.y4c{bottom:289.466667pt;}
.y81{bottom:292.026667pt;}
.y5f{bottom:298.746667pt;}
.y21{bottom:299.066667pt;}
.ya4{bottom:305.306667pt;}
.yc9{bottom:308.666667pt;}
.ydd{bottom:316.506667pt;}
.y4b{bottom:317.146667pt;}
.y5e{bottom:326.266667pt;}
.y20{bottom:333.466667pt;}
.yc8{bottom:336.186667pt;}
.ya3{bottom:338.426667pt;}
.ydc{bottom:344.186667pt;}
.y4a{bottom:344.666667pt;}
.y1f{bottom:351.866667pt;}
.y5d{bottom:353.946667pt;}
.y49{bottom:363.066667pt;}
.yc7{bottom:363.866667pt;}
.ya2{bottom:369.146667pt;}
.ydb{bottom:371.706667pt;}
.y48{bottom:381.506667pt;}
.ya1{bottom:381.666667pt;}
.y1e{bottom:386.306667pt;}
.y7d{bottom:391.106667pt;}
.yc6{bottom:391.426667pt;}
.yda{bottom:399.426667pt;}
.y47{bottom:399.906667pt;}
.y7c{bottom:406.466667pt;}
.y5c{bottom:409.026667pt;}
.y46{bottom:418.306667pt;}
.yc5{bottom:419.106667pt;}
.y1d{bottom:420.706667pt;}
.yd9{bottom:426.946667pt;}
.y7b{bottom:431.586667pt;}
.y45{bottom:436.706667pt;}
.y1c{bottom:439.106667pt;}
.yc4{bottom:446.626667pt;}
.yd8{bottom:454.626667pt;}
.y44{bottom:455.106667pt;}
.y1b{bottom:457.506667pt;}
.y7a{bottom:459.266667pt;}
.y5b{bottom:464.226667pt;}
.y43{bottom:473.506667pt;}
.yc3{bottom:474.306667pt;}
.y79{bottom:474.786667pt;}
.y1a{bottom:475.906667pt;}
.yd7{bottom:482.146667pt;}
.y78{bottom:488.546667pt;}
.y42{bottom:491.906667pt;}
.y19{bottom:494.306667pt;}
.yc2{bottom:501.826667pt;}
.y76{bottom:502.306667pt;}
.yd6{bottom:509.826667pt;}
.y41{bottom:510.306667pt;}
.y75{bottom:516.226667pt;}
.y5a{bottom:519.426667pt;}
.y18{bottom:521.826667pt;}
.y40{bottom:528.706667pt;}
.yc1{bottom:529.506667pt;}
.y74{bottom:529.986667pt;}
.yd5{bottom:537.346667pt;}
.y69{bottom:543.746667pt;}
.y3f{bottom:547.106667pt;}
.y17{bottom:547.266667pt;}
.yc0{bottom:557.026667pt;}
.yd4{bottom:565.026667pt;}
.y3e{bottom:565.506667pt;}
.y16{bottom:570.306667pt;}
.y59{bottom:574.626667pt;}
.y3d{bottom:583.906667pt;}
.ybf{bottom:584.706667pt;}
.y6c{bottom:585.826667pt;}
.y15{bottom:586.306667pt;}
.yd3{bottom:592.573333pt;}
.y3c{bottom:602.333333pt;}
.y14{bottom:604.733333pt;}
.ybe{bottom:612.253333pt;}
.y68{bottom:617.053333pt;}
.yd2{bottom:620.253333pt;}
.y3b{bottom:620.733333pt;}
.y13{bottom:625.853333pt;}
.y58{bottom:629.853333pt;}
.ybd{bottom:630.653333pt;}
.y67{bottom:632.413333pt;}
.y3a{bottom:639.133333pt;}
.y12{bottom:646.973333pt;}
.ybc{bottom:649.053333pt;}
.ya0{bottom:656.413333pt;}
.y39{bottom:657.533333pt;}
.yd1{bottom:666.333333pt;}
.ybb{bottom:667.453333pt;}
.y11{bottom:668.253333pt;}
.y38{bottom:675.933333pt;}
.yba{bottom:682.973333pt;}
.y9f{bottom:683.933333pt;}
.y57{bottom:685.053333pt;}
.y10{bottom:689.373333pt;}
.y37{bottom:694.333333pt;}
.yb9{bottom:696.893333pt;}
.y9e{bottom:702.333333pt;}
.yf{bottom:710.493333pt;}
.yb8{bottom:710.653333pt;}
.y36{bottom:712.733333pt;}
.y9d{bottom:720.733333pt;}
.y35{bottom:731.133333pt;}
.ye{bottom:731.613333pt;}
.yb7{bottom:735.773333pt;}
.y9c{bottom:736.253333pt;}
.y56{bottom:740.253333pt;}
.y34{bottom:749.533333pt;}
.y9b{bottom:750.173333pt;}
.yd{bottom:759.293333pt;}
.yb6{bottom:761.853333pt;}
.y9a{bottom:763.933333pt;}
.y33{bottom:767.933333pt;}
.y99{bottom:777.693333pt;}
.yc{bottom:780.413333pt;}
.y32{bottom:786.333333pt;}
.yb4{bottom:786.973333pt;}
.y98{bottom:791.453333pt;}
.y55{bottom:795.453333pt;}
.y31{bottom:804.733333pt;}
.y92{bottom:806.053333pt;}
.yb2{bottom:813.253333pt;}
.yb{bottom:818.693333pt;}
.y30{bottom:823.173333pt;}
.y95{bottom:834.213333pt;}
.yaf{bottom:838.373333pt;}
.y2f{bottom:841.573333pt;}
.ya{bottom:846.213333pt;}
.y54{bottom:850.693333pt;}
.y2e{bottom:859.973333pt;}
.yac{bottom:864.453333pt;}
.y91{bottom:865.413333pt;}
.y2d{bottom:878.373333pt;}
.y90{bottom:880.773333pt;}
.y9{bottom:889.893333pt;}
.yaa{bottom:890.213333pt;}
.y2c{bottom:896.773333pt;}
.y53{bottom:905.893333pt;}
.y2b{bottom:915.173333pt;}
.y8{bottom:917.573333pt;}
.ya9{bottom:920.613333pt;}
.y2a{bottom:933.573333pt;}
.ya8{bottom:935.973333pt;}
.y6{bottom:951.333333pt;}
.y5{bottom:966.693333pt;}
.y4{bottom:981.893333pt;}
.y3{bottom:997.253333pt;}
.y2{bottom:1011.973333pt;}
.y1{bottom:1022.080000pt;}
.he{height:13.760000pt;}
.h10{height:13.920000pt;}
.h15{height:23.520000pt;}
.h1c{height:25.120000pt;}
.h1d{height:26.080000pt;}
.h1e{height:26.272000pt;}
.h1a{height:26.880000pt;}
.h19{height:27.520000pt;}
.h13{height:27.680000pt;}
.hc{height:27.712000pt;}
.h16{height:29.600000pt;}
.h14{height:31.200000pt;}
.h17{height:31.232000pt;}
.hb{height:34.757812pt;}
.h2{height:38.441250pt;}
.h1b{height:38.465312pt;}
.hd{height:41.440000pt;}
.hf{height:43.031250pt;}
.h7{height:43.782500pt;}
.h5{height:46.343750pt;}
.h3{height:47.621250pt;}
.h9{height:52.750000pt;}
.h8{height:53.937500pt;}
.h18{height:55.840000pt;}
.h4{height:57.375000pt;}
.h6{height:62.761250pt;}
.ha{height:69.792000pt;}
.h12{height:95.552000pt;}
.h11{height:123.872000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:33.440000pt;}
.w11{width:40.800000pt;}
.w16{width:40.832000pt;}
.w14{width:48.672000pt;}
.w9{width:59.200000pt;}
.w7{width:59.712000pt;}
.wb{width:59.840000pt;}
.wa{width:61.792000pt;}
.wc{width:61.920000pt;}
.w8{width:62.400000pt;}
.w13{width:64.960000pt;}
.w12{width:64.992000pt;}
.w1b{width:76.832000pt;}
.w1d{width:77.152000pt;}
.w1f{width:77.312000pt;}
.w21{width:77.792000pt;}
.w1c{width:78.560000pt;}
.w1e{width:78.880000pt;}
.w15{width:79.520000pt;}
.wd{width:80.960000pt;}
.w3{width:81.120000pt;}
.w17{width:98.560000pt;}
.wf{width:105.760000pt;}
.we{width:105.792000pt;}
.w23{width:105.952000pt;}
.w5{width:120.992000pt;}
.w6{width:121.760000pt;}
.w4{width:122.112000pt;}
.w10{width:128.192000pt;}
.w20{width:150.906667pt;}
.w18{width:155.546667pt;}
.w19{width:156.026667pt;}
.w1a{width:156.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:4.640000pt;}
.x53{left:6.240000pt;}
.x40{left:7.520000pt;}
.x24{left:8.800000pt;}
.x31{left:9.760000pt;}
.x3d{left:11.840000pt;}
.x23{left:13.280000pt;}
.x16{left:14.240000pt;}
.x38{left:15.680000pt;}
.x21{left:17.120000pt;}
.x3a{left:18.240000pt;}
.x2a{left:19.200000pt;}
.x2c{left:20.346667pt;}
.x2b{left:22.080000pt;}
.x2e{left:23.680000pt;}
.x34{left:24.800000pt;}
.x15{left:26.874667pt;}
.x29{left:28.160000pt;}
.x43{left:29.480000pt;}
.x2d{left:32.794667pt;}
.x28{left:36.154667pt;}
.x20{left:38.560000pt;}
.x1a{left:40.800000pt;}
.x1d{left:42.080000pt;}
.x18{left:45.480000pt;}
.x1c{left:48.960000pt;}
.x36{left:50.586667pt;}
.x52{left:52.040000pt;}
.x59{left:52.960000pt;}
.x57{left:55.080000pt;}
.x1f{left:56.000000pt;}
.x45{left:59.400000pt;}
.x55{left:63.080000pt;}
.x56{left:64.840000pt;}
.x54{left:68.200000pt;}
.x30{left:80.832000pt;}
.x4f{left:82.120000pt;}
.x58{left:94.280000pt;}
.xe{left:113.631988pt;}
.x3{left:125.311988pt;}
.x9{left:129.951988pt;}
.xa{left:132.671988pt;}
.x7{left:135.706655pt;}
.x11{left:142.906655pt;}
.x10{left:151.226655pt;}
.x13{left:153.626655pt;}
.x12{left:160.666655pt;}
.x32{left:161.786667pt;}
.xc{left:169.306655pt;}
.x4c{left:171.386655pt;}
.x17{left:194.586667pt;}
.x3c{left:202.586667pt;}
.x44{left:212.346667pt;}
.x4{left:227.266655pt;}
.x2f{left:234.466655pt;}
.x4d{left:248.706655pt;}
.x22{left:254.306667pt;}
.x14{left:261.986655pt;}
.x5{left:265.986655pt;}
.x33{left:267.586667pt;}
.x8{left:272.386655pt;}
.x4e{left:287.586655pt;}
.x48{left:289.346667pt;}
.x3e{left:308.386667pt;}
.x19{left:316.706667pt;}
.x2{left:363.746655pt;}
.x46{left:367.906667pt;}
.x35{left:373.346667pt;}
.x25{left:375.906667pt;}
.xf{left:378.653322pt;}
.x5a{left:388.893322pt;}
.x6{left:392.893322pt;}
.xd{left:394.973322pt;}
.xb{left:396.893322pt;}
.x4b{left:415.773322pt;}
.x3f{left:422.013333pt;}
.x1b{left:437.693333pt;}
.x50{left:441.533333pt;}
.x49{left:445.053333pt;}
.x51{left:474.973333pt;}
.x26{left:496.893333pt;}
.x37{left:501.533333pt;}
.x47{left:523.933333pt;}
.x41{left:542.373333pt;}
.x1e{left:558.693333pt;}
.x4a{left:601.253333pt;}
.x39{left:607.333333pt;}
.x27{left:618.533333pt;}
.x42{left:648.133333pt;}
.x1{left:772.479988pt;}
}




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