
    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_fd833aa1413007813237bd2f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_c10b090225929061f76b9c57.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_30323e3133deacbc964811ee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.681152;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_6251d04d16a3bb99d948636b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_379040bfbc473c911862e3c9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.703000;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_29f64ce22d0139f3dff87883.woff')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_5625db8f43918820e8f9b8bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_31d19418f32b00e7cc1476d0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.363000;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_7010f8b017b66a9a1b5fb9ba.woff')format("woff");}.ff9{font-family:ff9;line-height:0.000000;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_d3a1ae7a4c2a90cc2843f818.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.383936px;}
.ls1{letter-spacing:0.393180px;}
.ls2{letter-spacing:0.410784px;}
.ls3{letter-spacing:50.468675px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.503591px;}
.ws2{word-spacing:-19.795792px;}
.ws5{word-spacing:-17.420297px;}
.ws8{word-spacing:-16.919993px;}
.ws3{word-spacing:-15.565794px;}
.ws7{word-spacing:-14.889594px;}
.ws1{word-spacing:-14.889414px;}
.ws6{word-spacing:-13.697899px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-378.427088px;}
._16{margin-left:-101.266662px;}
._14{margin-left:-63.125614px;}
._12{margin-left:-58.640620px;}
._11{margin-left:-15.994604px;}
._13{margin-left:-12.268523px;}
._1{margin-left:-1.447071px;}
._0{width:1.245853px;}
._a{width:2.252347px;}
._4{width:3.261171px;}
._3{width:4.433931px;}
._2{width:5.737162px;}
._5{width:6.969396px;}
._8{width:8.851308px;}
._10{width:9.988861px;}
._c{width:11.065657px;}
._b{width:12.072418px;}
._17{width:13.514518px;}
._7{width:17.273097px;}
._f{width:18.485033px;}
._9{width:20.260981px;}
._6{width:21.694876px;}
._e{width:22.967050px;}
._d{width:24.296518px;}
._19{width:25.468090px;}
._1a{width:26.951278px;}
._18{width:48.342085px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.343422px;}
.fs4{font-size:48.051341px;}
.fs0{font-size:56.174378px;}
.fs7{font-size:59.557656px;}
.fs9{font-size:62.263175px;}
.fsa{font-size:64.971574px;}
.fs6{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs8{font-size:79.183168px;}
.fs2{font-size:90.014364px;}
.fs1{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.yed{bottom:3.059578px;}
.y2{bottom:106.379957px;}
.yea{bottom:124.199950px;}
.y51{bottom:127.619949px;}
.y50{bottom:127.979949px;}
.y6a{bottom:129.599948px;}
.y82{bottom:132.839947px;}
.ye9{bottom:141.299943px;}
.ybd{bottom:145.079942px;}
.y69{bottom:147.599941px;}
.y81{bottom:149.039940px;}
.y4f{bottom:150.659940px;}
.y4e{bottom:151.019940px;}
.ye8{bottom:157.499937px;}
.ybc{bottom:162.899935px;}
.y80{bottom:163.259935px;}
.y68{bottom:163.979934px;}
.y4d{bottom:173.699931px;}
.ye7{bottom:173.879930px;}
.y4c{bottom:174.059930px;}
.y67{bottom:179.639928px;}
.ybb{bottom:180.719928px;}
.ye6{bottom:190.079924px;}
.y4b{bottom:196.739921px;}
.yba{bottom:198.719921px;}
.ye5{bottom:206.099918px;}
.y4a{bottom:214.379914px;}
.yb9{bottom:216.359913px;}
.yae{bottom:220.139912px;}
.ye4{bottom:222.299911px;}
.y49{bottom:232.199907px;}
.yb8{bottom:233.279907px;}
.ye3{bottom:238.679905px;}
.yad{bottom:239.579904px;}
.yb7{bottom:247.679901px;}
.y48{bottom:250.199900px;}
.ye2{bottom:254.879898px;}
.yac{bottom:261.179896px;}
.y47{bottom:267.839893px;}
.ye1{bottom:271.079892px;}
.yab{bottom:279.539888px;}
.y46{bottom:285.839886px;}
.ye0{bottom:287.279885px;}
.yaa{bottom:298.439881px;}
.ydf{bottom:303.479879px;}
.y45{bottom:303.659879px;}
.ya9{bottom:316.259873px;}
.yde{bottom:319.679872px;}
.y44{bottom:321.299871px;}
.ya8{bottom:334.259866px;}
.ydd{bottom:335.879866px;}
.y43{bottom:339.299864px;}
.y29{bottom:341.999863px;}
.ydc{bottom:352.079859px;}
.ya7{bottom:352.619859px;}
.y42{bottom:357.119857px;}
.y28{bottom:359.999856px;}
.ydb{bottom:368.459853px;}
.ya6{bottom:373.139851px;}
.y41{bottom:374.939850px;}
.y27{bottom:377.639849px;}
.yda{bottom:384.659846px;}
.ya5{bottom:390.959844px;}
.y40{bottom:392.759843px;}
.y26{bottom:395.639842px;}
.yd9{bottom:400.679840px;}
.ya4{bottom:408.599837px;}
.y3f{bottom:411.119836px;}
.y25{bottom:413.459835px;}
.yd8{bottom:416.879833px;}
.ya3{bottom:426.599829px;}
.y24{bottom:431.099828px;}
.yd7{bottom:433.259827px;}
.y3e{bottom:433.439827px;}
.ya2{bottom:444.419822px;}
.y23{bottom:449.099820px;}
.yd6{bottom:449.459820px;}
.y3d{bottom:451.079820px;}
.y7f{bottom:456.299817px;}
.y66{bottom:457.919817px;}
.ya1{bottom:462.239815px;}
.yd5{bottom:465.659814px;}
.y22{bottom:467.459813px;}
.y3c{bottom:468.899812px;}
.yb6{bottom:471.059812px;}
.y7e{bottom:474.299810px;}
.y65{bottom:477.359809px;}
.ya0{bottom:480.779808px;}
.yd4{bottom:482.579807px;}
.y3b{bottom:486.899805px;}
.yb5{bottom:489.959804px;}
.y21{bottom:490.139804px;}
.y7d{bottom:492.119803px;}
.y64{bottom:496.799801px;}
.y9f{bottom:501.299799px;}
.y3a{bottom:504.539798px;}
.yd3{bottom:505.799798px;}
.yb4{bottom:508.319797px;}
.y7c{bottom:509.759796px;}
.y20{bottom:511.739795px;}
.y63{bottom:516.239794px;}
.y9e{bottom:518.939792px;}
.y39{bottom:522.539791px;}
.yb3{bottom:526.319789px;}
.yd2{bottom:527.219789px;}
.y7b{bottom:527.759789px;}
.y1f{bottom:528.479789px;}
.y62{bottom:535.499786px;}
.y9d{bottom:536.759785px;}
.y38{bottom:540.899784px;}
.yb2{bottom:544.679782px;}
.yd1{bottom:545.219782px;}
.y1e{bottom:545.399782px;}
.y7a{bottom:545.579782px;}
.y61{bottom:551.879779px;}
.y9c{bottom:554.759778px;}
.y79{bottom:561.779775px;}
.yb1{bottom:562.859775px;}
.yd0{bottom:563.039775px;}
.y37{bottom:563.579775px;}
.y1d{bottom:564.299774px;}
.y9b{bottom:572.399771px;}
.y78{bottom:575.819770px;}
.yb0{bottom:579.239768px;}
.ycf{bottom:580.859768px;}
.y1c{bottom:585.179766px;}
.y36{bottom:585.359766px;}
.y9a{bottom:590.399764px;}
.yaf{bottom:593.279763px;}
.yce{bottom:598.679761px;}
.y1b{bottom:601.379759px;}
.y35{bottom:603.539759px;}
.y99{bottom:608.759756px;}
.ycd{bottom:616.499753px;}
.y1a{bottom:617.579753px;}
.y34{bottom:621.359751px;}
.y98{bottom:629.999748px;}
.y19{bottom:633.779746px;}
.ycc{bottom:634.319746px;}
.y33{bottom:639.359744px;}
.y18{bottom:649.979740px;}
.y97{bottom:650.339740px;}
.ycb{bottom:652.139739px;}
.y32{bottom:656.999737px;}
.y17{bottom:666.179734px;}
.y96{bottom:668.159733px;}
.yca{bottom:670.139732px;}
.y31{bottom:674.819730px;}
.y16{bottom:682.379727px;}
.y95{bottom:685.979726px;}
.yc9{bottom:687.779725px;}
.y30{bottom:692.819723px;}
.y15{bottom:698.579721px;}
.y94{bottom:703.799718px;}
.yc8{bottom:705.599718px;}
.y2f{bottom:710.459716px;}
.y14{bottom:715.499714px;}
.y93{bottom:721.619711px;}
.yc7{bottom:724.139710px;}
.y2e{bottom:728.459709px;}
.y13{bottom:734.759706px;}
.y92{bottom:739.439704px;}
.y2d{bottom:746.279701px;}
.yc6{bottom:746.819701px;}
.y12{bottom:755.639698px;}
.y91{bottom:757.439697px;}
.y2c{bottom:762.299695px;}
.yc5{bottom:768.959692px;}
.y90{bottom:776.879689px;}
.y11{bottom:777.239689px;}
.y2b{bottom:778.679689px;}
.yc4{bottom:786.779685px;}
.y2a{bottom:792.719683px;}
.y8f{bottom:796.319681px;}
.y10{bottom:796.679681px;}
.yf{bottom:804.419678px;}
.yc3{bottom:804.599678px;}
.y8e{bottom:815.759674px;}
.ye{bottom:816.119674px;}
.yc2{bottom:822.419671px;}
.y8d{bottom:835.199666px;}
.yd{bottom:835.559666px;}
.y77{bottom:836.819665px;}
.yc1{bottom:840.059664px;}
.yc{bottom:843.299663px;}
.y60{bottom:848.879660px;}
.y5f{bottom:849.239660px;}
.yf5{bottom:851.939659px;}
.y8c{bottom:853.019659px;}
.y76{bottom:854.639658px;}
.yc0{bottom:856.439657px;}
.yb{bottom:863.639655px;}
.y8b{bottom:870.659652px;}
.y5e{bottom:872.099651px;}
.y75{bottom:872.459651px;}
.ybf{bottom:872.639651px;}
.y9{bottom:876.239650px;}
.ya{bottom:884.699646px;}
.ybe{bottom:885.059646px;}
.yf4{bottom:887.039645px;}
.y8a{bottom:888.659645px;}
.y74{bottom:890.279644px;}
.y5d{bottom:891.899643px;}
.y8{bottom:896.579641px;}
.yf3{bottom:903.059639px;}
.y89{bottom:906.479637px;}
.y73{bottom:908.099637px;}
.y5c{bottom:911.699635px;}
.y7{bottom:916.019634px;}
.yf2{bottom:919.259632px;}
.y88{bottom:924.299630px;}
.y72{bottom:925.919630px;}
.y5b{bottom:931.499627px;}
.yf1{bottom:935.459626px;}
.y87{bottom:941.759623px;}
.y71{bottom:943.919622px;}
.y6{bottom:947.879621px;}
.y5a{bottom:950.039620px;}
.yf0{bottom:951.839619px;}
.y86{bottom:959.579616px;}
.y70{bottom:961.739615px;}
.yef{bottom:968.039613px;}
.y59{bottom:968.759612px;}
.y85{bottom:977.759609px;}
.y5{bottom:979.559608px;}
.y6f{bottom:981.179608px;}
.yee{bottom:984.239606px;}
.y58{bottom:987.299605px;}
.y84{bottom:997.379601px;}
.y6e{bottom:1000.439600px;}
.y57{bottom:1005.479598px;}
.y56{bottom:1005.839598px;}
.y4{bottom:1011.419595px;}
.y83{bottom:1016.819593px;}
.y6d{bottom:1018.259593px;}
.y55{bottom:1025.819590px;}
.y54{bottom:1026.179590px;}
.y6c{bottom:1036.259585px;}
.y3{bottom:1041.839583px;}
.y53{bottom:1049.039580px;}
.y52{bottom:1049.399580px;}
.yec{bottom:1051.920000px;}
.y6b{bottom:1053.899578px;}
.yeb{bottom:1054.979578px;}
.y1{bottom:1086.659565px;}
.h5{height:0.000000px;}
.h1b{height:15.840000px;}
.h8{height:31.196274px;}
.h7{height:33.059322px;}
.h1a{height:37.879304px;}
.hc{height:38.367100px;}
.h1{height:38.647972px;}
.hd{height:38.872669px;}
.hb{height:40.796994px;}
.h19{height:41.498649px;}
.h13{height:41.985080px;}
.h18{height:42.525749px;}
.h10{height:42.837064px;}
.hf{height:43.086117px;}
.h16{height:44.700443px;}
.h14{height:45.637716px;}
.h9{height:46.563821px;}
.h15{height:46.834541px;}
.h17{height:49.923455px;}
.ha{height:50.069644px;}
.h6{height:50.288927px;}
.h12{height:53.394510px;}
.h11{height:54.478020px;}
.he{height:54.794752px;}
.h4{height:59.994925px;}
.h3{height:75.330374px;}
.h2{height:78.212023px;}
.h0{height:1188.000000px;}
.w1{width:17.100000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:159.480627px;}
.x4{left:160.920026px;}
.x37{left:167.939933px;}
.x29{left:170.099932px;}
.x2c{left:171.719931px;}
.x2f{left:174.419930px;}
.x2a{left:175.859930px;}
.x30{left:178.379929px;}
.x5{left:183.059927px;}
.x42{left:184.859909px;}
.x31{left:186.119926px;}
.x38{left:190.259924px;}
.x3c{left:191.519923px;}
.x52{left:192.599923px;}
.x41{left:193.859922px;}
.x10{left:197.819921px;}
.x18{left:201.419919px;}
.x27{left:202.679919px;}
.x1{left:208.439917px;}
.x11{left:223.729411px;}
.x19{left:226.069410px;}
.x2d{left:237.599905px;}
.x33{left:241.739903px;}
.x2e{left:243.359903px;}
.x51{left:256.499897px;}
.x6{left:260.459896px;}
.x39{left:262.979895px;}
.x54{left:266.759893px;}
.x28{left:271.439963px;}
.x3a{left:273.959890px;}
.x7{left:279.179888px;}
.x23{left:281.159888px;}
.x3d{left:287.279885px;}
.x53{left:295.019882px;}
.x3e{left:301.679879px;}
.x32{left:304.019878px;}
.x2b{left:314.820254px;}
.x8{left:321.299871px;}
.x48{left:334.439866px;}
.x1a{left:340.379864px;}
.x9{left:343.439863px;}
.x36{left:348.479861px;}
.x4a{left:349.919860px;}
.x49{left:352.799859px;}
.x3f{left:355.319858px;}
.x1b{left:357.839857px;}
.x3b{left:362.699855px;}
.x4f{left:365.579854px;}
.x12{left:381.419847px;}
.x4b{left:387.359845px;}
.x44{left:392.939843px;}
.x1c{left:396.899841px;}
.x4d{left:403.739839px;}
.x13{left:406.799837px;}
.x1d{left:415.799834px;}
.x24{left:426.059830px;}
.x25{left:432.179827px;}
.x40{left:445.139822px;}
.x3{left:464.039814px;}
.x1e{left:511.379795px;}
.xa{left:512.999795px;}
.x45{left:524.339790px;}
.x14{left:527.579789px;}
.x1f{left:533.699787px;}
.xb{left:535.319786px;}
.x15{left:547.019781px;}
.xc{left:554.759778px;}
.xd{left:574.019770px;}
.x20{left:611.099756px;}
.x21{left:630.719748px;}
.x26{left:640.979744px;}
.x46{left:651.779739px;}
.xe{left:662.399735px;}
.x47{left:667.619733px;}
.x35{left:668.699733px;}
.x16{left:674.999730px;}
.xf{left:681.479727px;}
.x17{left:693.719723px;}
.x43{left:695.699722px;}
.x22{left:719.459712px;}
.x4e{left:720.899712px;}
.x50{left:733.499707px;}
.x34{left:754.560112px;}
.x4c{left:763.739695px;}
.x55{left:861.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.341277pt;}
.ls1{letter-spacing:0.349493pt;}
.ls2{letter-spacing:0.365141pt;}
.ls3{letter-spacing:44.861044pt;}
.ws0{word-spacing:-20.003192pt;}
.ws2{word-spacing:-17.596260pt;}
.ws5{word-spacing:-15.484708pt;}
.ws8{word-spacing:-15.039994pt;}
.ws3{word-spacing:-13.836261pt;}
.ws7{word-spacing:-13.235195pt;}
.ws1{word-spacing:-13.235035pt;}
.ws6{word-spacing:-12.175910pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-336.379634pt;}
._16{margin-left:-90.014811pt;}
._14{margin-left:-56.111657pt;}
._12{margin-left:-52.124996pt;}
._11{margin-left:-14.217426pt;}
._13{margin-left:-10.905354pt;}
._1{margin-left:-1.286285pt;}
._0{width:1.107425pt;}
._a{width:2.002086pt;}
._4{width:2.898819pt;}
._3{width:3.941272pt;}
._2{width:5.099699pt;}
._5{width:6.195019pt;}
._8{width:7.867829pt;}
._10{width:8.878988pt;}
._c{width:9.836140pt;}
._b{width:10.731039pt;}
._17{width:12.012905pt;}
._7{width:15.353864pt;}
._f{width:16.431141pt;}
._9{width:18.009761pt;}
._6{width:19.284334pt;}
._e{width:20.415156pt;}
._d{width:21.596905pt;}
._19{width:22.638303pt;}
._1a{width:23.956692pt;}
._18{width:42.970742pt;}
.fs5{font-size:40.305264pt;}
.fs4{font-size:42.712303pt;}
.fs0{font-size:49.932780pt;}
.fs7{font-size:52.940139pt;}
.fs9{font-size:55.345045pt;}
.fsa{font-size:57.752510pt;}
.fs6{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs8{font-size:70.385039pt;}
.fs2{font-size:80.012768pt;}
.fs1{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:2.719625pt;}
.y2{bottom:94.559962pt;}
.yea{bottom:110.399956pt;}
.y51{bottom:113.439955pt;}
.y50{bottom:113.759954pt;}
.y6a{bottom:115.199954pt;}
.y82{bottom:118.079953pt;}
.ye9{bottom:125.599950pt;}
.ybd{bottom:128.959948pt;}
.y69{bottom:131.199948pt;}
.y81{bottom:132.479947pt;}
.y4f{bottom:133.919946pt;}
.y4e{bottom:134.239946pt;}
.ye8{bottom:139.999944pt;}
.ybc{bottom:144.799942pt;}
.y80{bottom:145.119942pt;}
.y68{bottom:145.759942pt;}
.y4d{bottom:154.399938pt;}
.ye7{bottom:154.559938pt;}
.y4c{bottom:154.719938pt;}
.y67{bottom:159.679936pt;}
.ybb{bottom:160.639936pt;}
.ye6{bottom:168.959932pt;}
.y4b{bottom:174.879930pt;}
.yba{bottom:176.639929pt;}
.ye5{bottom:183.199927pt;}
.y4a{bottom:190.559924pt;}
.yb9{bottom:192.319923pt;}
.yae{bottom:195.679922pt;}
.ye4{bottom:197.599921pt;}
.y49{bottom:206.399917pt;}
.yb8{bottom:207.359917pt;}
.ye3{bottom:212.159915pt;}
.yad{bottom:212.959915pt;}
.yb7{bottom:220.159912pt;}
.y48{bottom:222.399911pt;}
.ye2{bottom:226.559909pt;}
.yac{bottom:232.159907pt;}
.y47{bottom:238.079905pt;}
.ye1{bottom:240.959904pt;}
.yab{bottom:248.479901pt;}
.y46{bottom:254.079898pt;}
.ye0{bottom:255.359898pt;}
.yaa{bottom:265.279894pt;}
.ydf{bottom:269.759892pt;}
.y45{bottom:269.919892pt;}
.ya9{bottom:281.119888pt;}
.yde{bottom:284.159886pt;}
.y44{bottom:285.599886pt;}
.ya8{bottom:297.119881pt;}
.ydd{bottom:298.559881pt;}
.y43{bottom:301.599879pt;}
.y29{bottom:303.999878pt;}
.ydc{bottom:312.959875pt;}
.ya7{bottom:313.439875pt;}
.y42{bottom:317.439873pt;}
.y28{bottom:319.999872pt;}
.ydb{bottom:327.519869pt;}
.ya6{bottom:331.679867pt;}
.y41{bottom:333.279867pt;}
.y27{bottom:335.679866pt;}
.yda{bottom:341.919863pt;}
.ya5{bottom:347.519861pt;}
.y40{bottom:349.119860pt;}
.y26{bottom:351.679859pt;}
.yd9{bottom:356.159858pt;}
.ya4{bottom:363.199855pt;}
.y3f{bottom:365.439854pt;}
.y25{bottom:367.519853pt;}
.yd8{bottom:370.559852pt;}
.ya3{bottom:379.199848pt;}
.y24{bottom:383.199847pt;}
.yd7{bottom:385.119846pt;}
.y3e{bottom:385.279846pt;}
.ya2{bottom:395.039842pt;}
.y23{bottom:399.199840pt;}
.yd6{bottom:399.519840pt;}
.y3d{bottom:400.959840pt;}
.y7f{bottom:405.599838pt;}
.y66{bottom:407.039837pt;}
.ya1{bottom:410.879836pt;}
.yd5{bottom:413.919834pt;}
.y22{bottom:415.519834pt;}
.y3c{bottom:416.799833pt;}
.yb6{bottom:418.719833pt;}
.y7e{bottom:421.599831pt;}
.y65{bottom:424.319830pt;}
.ya0{bottom:427.359829pt;}
.yd4{bottom:428.959828pt;}
.y3b{bottom:432.799827pt;}
.yb5{bottom:435.519826pt;}
.y21{bottom:435.679826pt;}
.y7d{bottom:437.439825pt;}
.y64{bottom:441.599823pt;}
.y9f{bottom:445.599822pt;}
.y3a{bottom:448.479821pt;}
.yd3{bottom:449.599820pt;}
.yb4{bottom:451.839819pt;}
.y7c{bottom:453.119819pt;}
.y20{bottom:454.879818pt;}
.y63{bottom:458.879816pt;}
.y9e{bottom:461.279815pt;}
.y39{bottom:464.479814pt;}
.yb3{bottom:467.839813pt;}
.yd2{bottom:468.639813pt;}
.y7b{bottom:469.119812pt;}
.y1f{bottom:469.759812pt;}
.y62{bottom:475.999810pt;}
.y9d{bottom:477.119809pt;}
.y38{bottom:480.799808pt;}
.yb2{bottom:484.159806pt;}
.yd1{bottom:484.639806pt;}
.y1e{bottom:484.799806pt;}
.y7a{bottom:484.959806pt;}
.y61{bottom:490.559804pt;}
.y9c{bottom:493.119803pt;}
.y79{bottom:499.359800pt;}
.yb1{bottom:500.319800pt;}
.yd0{bottom:500.479800pt;}
.y37{bottom:500.959800pt;}
.y1d{bottom:501.599799pt;}
.y9b{bottom:508.799796pt;}
.y78{bottom:511.839795pt;}
.yb0{bottom:514.879794pt;}
.ycf{bottom:516.319793pt;}
.y1c{bottom:520.159792pt;}
.y36{bottom:520.319792pt;}
.y9a{bottom:524.799790pt;}
.yaf{bottom:527.359789pt;}
.yce{bottom:532.159787pt;}
.y1b{bottom:534.559786pt;}
.y35{bottom:536.479785pt;}
.y99{bottom:541.119784pt;}
.ycd{bottom:547.999781pt;}
.y1a{bottom:548.959780pt;}
.y34{bottom:552.319779pt;}
.y98{bottom:559.999776pt;}
.y19{bottom:563.359775pt;}
.ycc{bottom:563.839774pt;}
.y33{bottom:568.319773pt;}
.y18{bottom:577.759769pt;}
.y97{bottom:578.079769pt;}
.ycb{bottom:579.679768pt;}
.y32{bottom:583.999766pt;}
.y17{bottom:592.159763pt;}
.y96{bottom:593.919762pt;}
.yca{bottom:595.679762pt;}
.y31{bottom:599.839760pt;}
.y16{bottom:606.559757pt;}
.y95{bottom:609.759756pt;}
.yc9{bottom:611.359755pt;}
.y30{bottom:615.839754pt;}
.y15{bottom:620.959752pt;}
.y94{bottom:625.599750pt;}
.yc8{bottom:627.199749pt;}
.y2f{bottom:631.519747pt;}
.y14{bottom:635.999746pt;}
.y93{bottom:641.439743pt;}
.yc7{bottom:643.679743pt;}
.y2e{bottom:647.519741pt;}
.y13{bottom:653.119739pt;}
.y92{bottom:657.279737pt;}
.y2d{bottom:663.359735pt;}
.yc6{bottom:663.839734pt;}
.y12{bottom:671.679731pt;}
.y91{bottom:673.279731pt;}
.y2c{bottom:677.599729pt;}
.yc5{bottom:683.519727pt;}
.y90{bottom:690.559724pt;}
.y11{bottom:690.879724pt;}
.y2b{bottom:692.159723pt;}
.yc4{bottom:699.359720pt;}
.y2a{bottom:704.639718pt;}
.y8f{bottom:707.839717pt;}
.y10{bottom:708.159717pt;}
.yf{bottom:715.039714pt;}
.yc3{bottom:715.199714pt;}
.y8e{bottom:725.119710pt;}
.ye{bottom:725.439710pt;}
.yc2{bottom:731.039708pt;}
.y8d{bottom:742.399703pt;}
.yd{bottom:742.719703pt;}
.y77{bottom:743.839702pt;}
.yc1{bottom:746.719701pt;}
.yc{bottom:749.599700pt;}
.y60{bottom:754.559698pt;}
.y5f{bottom:754.879698pt;}
.yf5{bottom:757.279697pt;}
.y8c{bottom:758.239697pt;}
.y76{bottom:759.679696pt;}
.yc0{bottom:761.279695pt;}
.yb{bottom:767.679693pt;}
.y8b{bottom:773.919690pt;}
.y5e{bottom:775.199690pt;}
.y75{bottom:775.519690pt;}
.ybf{bottom:775.679690pt;}
.y9{bottom:778.879688pt;}
.ya{bottom:786.399685pt;}
.ybe{bottom:786.719685pt;}
.yf4{bottom:788.479685pt;}
.y8a{bottom:789.919684pt;}
.y74{bottom:791.359683pt;}
.y5d{bottom:792.799683pt;}
.y8{bottom:796.959681pt;}
.yf3{bottom:802.719679pt;}
.y89{bottom:805.759678pt;}
.y73{bottom:807.199677pt;}
.y5c{bottom:810.399676pt;}
.y7{bottom:814.239674pt;}
.yf2{bottom:817.119673pt;}
.y88{bottom:821.599671pt;}
.y72{bottom:823.039671pt;}
.y5b{bottom:827.999669pt;}
.yf1{bottom:831.519667pt;}
.y87{bottom:837.119665pt;}
.y71{bottom:839.039664pt;}
.y6{bottom:842.559663pt;}
.y5a{bottom:844.479662pt;}
.yf0{bottom:846.079662pt;}
.y86{bottom:852.959659pt;}
.y70{bottom:854.879658pt;}
.yef{bottom:860.479656pt;}
.y59{bottom:861.119656pt;}
.y85{bottom:869.119652pt;}
.y5{bottom:870.719652pt;}
.y6f{bottom:872.159651pt;}
.yee{bottom:874.879650pt;}
.y58{bottom:877.599649pt;}
.y84{bottom:886.559645pt;}
.y6e{bottom:889.279644pt;}
.y57{bottom:893.759642pt;}
.y56{bottom:894.079642pt;}
.y4{bottom:899.039640pt;}
.y83{bottom:903.839638pt;}
.y6d{bottom:905.119638pt;}
.y55{bottom:911.839635pt;}
.y54{bottom:912.159635pt;}
.y6c{bottom:921.119632pt;}
.y3{bottom:926.079630pt;}
.y53{bottom:932.479627pt;}
.y52{bottom:932.799627pt;}
.yec{bottom:935.040000pt;}
.y6b{bottom:936.799625pt;}
.yeb{bottom:937.759625pt;}
.y1{bottom:965.919614pt;}
.h5{height:0.000000pt;}
.h1b{height:14.080000pt;}
.h8{height:27.730022pt;}
.h7{height:29.386064pt;}
.h1a{height:33.670493pt;}
.hc{height:34.104089pt;}
.h1{height:34.353753pt;}
.hd{height:34.553484pt;}
.hb{height:36.263995pt;}
.h19{height:36.887688pt;}
.h13{height:37.320072pt;}
.h18{height:37.800665pt;}
.h10{height:38.077391pt;}
.hf{height:38.298771pt;}
.h16{height:39.733727pt;}
.h14{height:40.566859pt;}
.h9{height:41.390063pt;}
.h15{height:41.630703pt;}
.h17{height:44.376405pt;}
.ha{height:44.506350pt;}
.h6{height:44.701269pt;}
.h12{height:47.461786pt;}
.h11{height:48.424906pt;}
.he{height:48.706447pt;}
.h4{height:53.328822pt;}
.h3{height:66.960333pt;}
.h2{height:69.521798pt;}
.h0{height:1056.000000pt;}
.w1{width:15.200000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.760558pt;}
.x4{left:143.040023pt;}
.x37{left:149.279940pt;}
.x29{left:151.199940pt;}
.x2c{left:152.639939pt;}
.x2f{left:155.039938pt;}
.x2a{left:156.319937pt;}
.x30{left:158.559937pt;}
.x5{left:162.719935pt;}
.x42{left:164.319919pt;}
.x31{left:165.439934pt;}
.x38{left:169.119932pt;}
.x3c{left:170.239932pt;}
.x52{left:171.199932pt;}
.x41{left:172.319931pt;}
.x10{left:175.839930pt;}
.x18{left:179.039928pt;}
.x27{left:180.159928pt;}
.x1{left:185.279926pt;}
.x11{left:198.870587pt;}
.x19{left:200.950586pt;}
.x2d{left:211.199916pt;}
.x33{left:214.879914pt;}
.x2e{left:216.319913pt;}
.x51{left:227.999909pt;}
.x6{left:231.519907pt;}
.x39{left:233.759906pt;}
.x54{left:237.119905pt;}
.x28{left:241.279967pt;}
.x3a{left:243.519903pt;}
.x7{left:248.159901pt;}
.x23{left:249.919900pt;}
.x3d{left:255.359898pt;}
.x53{left:262.239895pt;}
.x3e{left:268.159893pt;}
.x32{left:270.239892pt;}
.x2b{left:279.840226pt;}
.x8{left:285.599886pt;}
.x48{left:297.279881pt;}
.x1a{left:302.559879pt;}
.x9{left:305.279878pt;}
.x36{left:309.759876pt;}
.x4a{left:311.039876pt;}
.x49{left:313.599875pt;}
.x3f{left:315.839874pt;}
.x1b{left:318.079873pt;}
.x3b{left:322.399871pt;}
.x4f{left:324.959870pt;}
.x12{left:339.039864pt;}
.x4b{left:344.319862pt;}
.x44{left:349.279860pt;}
.x1c{left:352.799859pt;}
.x4d{left:358.879856pt;}
.x13{left:361.599855pt;}
.x1d{left:369.599852pt;}
.x24{left:378.719849pt;}
.x25{left:384.159846pt;}
.x40{left:395.679842pt;}
.x3{left:412.479835pt;}
.x1e{left:454.559818pt;}
.xa{left:455.999818pt;}
.x45{left:466.079814pt;}
.x14{left:468.959812pt;}
.x1f{left:474.399810pt;}
.xb{left:475.839810pt;}
.x15{left:486.239806pt;}
.xc{left:493.119803pt;}
.xd{left:510.239796pt;}
.x20{left:543.199783pt;}
.x21{left:560.639776pt;}
.x26{left:569.759772pt;}
.x46{left:579.359768pt;}
.xe{left:588.799764pt;}
.x47{left:593.439763pt;}
.x35{left:594.399762pt;}
.x16{left:599.999760pt;}
.xf{left:605.759758pt;}
.x17{left:616.639753pt;}
.x43{left:618.399753pt;}
.x22{left:639.519744pt;}
.x4e{left:640.799744pt;}
.x50{left:651.999739pt;}
.x34{left:670.720100pt;}
.x4c{left:678.879728pt;}
.x55{left:765.440000pt;}
}




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