
    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_3e195b70dac03b958e9292e4.woff2')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_e90ec8b0319f8d743de7fc8d.woff2')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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ca9594894d2540d00845f94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_0ad7a95eeeaca3c48623bd05.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_51b40ceaec4636e6b0dade19.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943359;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_d7e3f24c536df43127d3e2d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0c4e43cef55e9bd1ce8c66ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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:ffc;src:url('chunks/assets/font_731fad752e84933f54f6559a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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:ffd;src:url('chunks/assets/font_a52d5707494d9ed262dc9f60.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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:ffe;src:url('chunks/assets/font_5527cabc09e80a4f6e8c9269.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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:fff;src:url('chunks/assets/font_35d415dd419998bea515fb30.woff2')format("woff");}.fff{font-family:fff;line-height:0.950684;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:ff10;src:url('chunks/assets/font_7de64d9fda7fe1aeb65e1648.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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:ff11;src:url('chunks/assets/font_79fa23345f209026a5e06c75.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;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:ff12;src:url('chunks/assets/font_11c76d521a7357e3c942a32a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.396000px;}
.lsb{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.234000px;}
.ls10{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.091200px;}
.ls12{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.054000px;}
.ls9{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.lse{letter-spacing:0.036000px;}
.ls18{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.187800px;}
.ls1a{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.234000px;}
.ls0{letter-spacing:0.234720px;}
.ls14{letter-spacing:0.252000px;}
.ls19{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.331200px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.486000px;}
.lsf{letter-spacing:0.540000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws3{word-spacing:-19.152000px;}
.wsc{word-spacing:-18.954000px;}
.wsb{word-spacing:-18.468000px;}
.ws5{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.640000px;}
.ws7{word-spacing:-16.824960px;}
.ws16{word-spacing:-13.716000px;}
.ws19{word-spacing:-13.320000px;}
.ws13{word-spacing:-13.266000px;}
.ws17{word-spacing:-13.230000px;}
.wsf{word-spacing:-13.104000px;}
.ws18{word-spacing:-13.068000px;}
.ws9{word-spacing:-13.032000px;}
.ws8{word-spacing:-13.014000px;}
.ws1b{word-spacing:-12.978000px;}
.ws11{word-spacing:-12.960000px;}
.ws10{word-spacing:-12.924000px;}
.ws14{word-spacing:-12.780000px;}
.ws1a{word-spacing:-12.726000px;}
.ws15{word-spacing:-11.813640px;}
.ws2{word-spacing:-10.342080px;}
.ws12{word-spacing:-8.676000px;}
.wse{word-spacing:-8.496000px;}
.wsd{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._2{width:1.149120px;}
._e{width:2.268000px;}
._9{width:3.564000px;}
._a{width:5.022000px;}
._3{width:6.696000px;}
._b{width:7.992000px;}
._6{width:9.234000px;}
._7{width:10.865760px;}
._15{width:11.880000px;}
._23{width:14.100480px;}
._8{width:15.120000px;}
._5{width:16.632000px;}
._4{width:18.027600px;}
._1c{width:19.132800px;}
._20{width:20.163600px;}
._1b{width:21.222000px;}
._f{width:22.842000px;}
._10{width:24.116880px;}
._2a{width:25.542000px;}
._1d{width:26.568000px;}
._24{width:28.188000px;}
._1f{width:29.268000px;}
._13{width:30.834000px;}
._14{width:32.076000px;}
._16{width:33.642000px;}
._17{width:34.799760px;}
._18{width:36.072000px;}
._1e{width:37.314000px;}
._11{width:38.502000px;}
._12{width:39.582000px;}
._19{width:41.256000px;}
._1a{width:42.402000px;}
._27{width:43.578000px;}
._28{width:45.252000px;}
._1{width:47.209680px;}
._25{width:49.140000px;}
._c{width:50.544000px;}
._d{width:51.840000px;}
._21{width:64.260000px;}
._22{width:65.502000px;}
._26{width:146.142000px;}
._29{width:202.962000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs7{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y3b{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1f{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y26{bottom:3.600000px;}
.y28{bottom:3.960000px;}
.y97{bottom:4.125000px;}
.y4{bottom:4.140000px;}
.y95{bottom:4.305000px;}
.y9a{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y8a{bottom:4.665000px;}
.y76{bottom:4.680000px;}
.y24{bottom:4.860000px;}
.y6d{bottom:6.120000px;}
.y6b{bottom:6.300000px;}
.y3a{bottom:9.000000px;}
.y33{bottom:10.965000px;}
.y1d{bottom:10.980000px;}
.y21{bottom:14.970000px;}
.y22{bottom:15.150000px;}
.y15{bottom:15.300000px;}
.y35{bottom:16.365000px;}
.yf{bottom:19.980000px;}
.y1a{bottom:21.060000px;}
.y39{bottom:30.240000px;}
.y32{bottom:33.825000px;}
.y14{bottom:45.720000px;}
.y38{bottom:51.660000px;}
.y31{bottom:56.910000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y37{bottom:75.810000px;}
.y13{bottom:76.365000px;}
.y30{bottom:79.950000px;}
.ya{bottom:80.460000px;}
.y19{bottom:82.260000px;}
.y9{bottom:91.440000px;}
.y2f{bottom:102.990000px;}
.y99{bottom:118.440000px;}
.y2e{bottom:126.030000px;}
.y69{bottom:130.320000px;}
.y98{bottom:134.640000px;}
.y2d{bottom:149.070000px;}
.y96{bottom:150.885000px;}
.y68{bottom:153.210000px;}
.y94{bottom:167.985000px;}
.y2c{bottom:171.930000px;}
.y67{bottom:176.250000px;}
.y2b{bottom:194.970000px;}
.y93{bottom:196.230000px;}
.y66{bottom:199.290000px;}
.y2a{bottom:218.010000px;}
.y92{bottom:219.270000px;}
.y65{bottom:222.330000px;}
.y91{bottom:242.310000px;}
.y64{bottom:245.370000px;}
.y90{bottom:265.350000px;}
.y63{bottom:268.410000px;}
.y8f{bottom:288.210000px;}
.y62{bottom:291.270000px;}
.y8e{bottom:311.250000px;}
.y61{bottom:314.310000px;}
.y34{bottom:323.865000px;}
.y8d{bottom:334.290000px;}
.y60{bottom:337.350000px;}
.y8c{bottom:348.705000px;}
.y29{bottom:349.785000px;}
.y5f{bottom:360.390000px;}
.y8b{bottom:366.705000px;}
.y5e{bottom:383.430000px;}
.y89{bottom:384.705000px;}
.y88{bottom:403.815000px;}
.y5d{bottom:406.515000px;}
.y5c{bottom:429.375000px;}
.y87{bottom:433.875000px;}
.y5b{bottom:452.415000px;}
.y86{bottom:456.915000px;}
.y5a{bottom:475.455000px;}
.y85{bottom:479.775000px;}
.y59{bottom:498.495000px;}
.y84{bottom:502.815000px;}
.y58{bottom:521.535000px;}
.y83{bottom:525.855000px;}
.y57{bottom:544.575000px;}
.y82{bottom:548.895000px;}
.y56{bottom:567.435000px;}
.y81{bottom:571.935000px;}
.y27{bottom:579.855000px;}
.y55{bottom:590.475000px;}
.y80{bottom:594.975000px;}
.y25{bottom:595.155000px;}
.y54{bottom:613.515000px;}
.y23{bottom:613.875000px;}
.y7f{bottom:617.835000px;}
.y20{bottom:633.855000px;}
.y53{bottom:636.555000px;}
.y7e{bottom:640.905000px;}
.y52{bottom:659.625000px;}
.y1e{bottom:663.945000px;}
.y1c{bottom:677.265000px;}
.y51{bottom:682.485000px;}
.y7d{bottom:686.985000px;}
.y1b{bottom:700.305000px;}
.y7c{bottom:701.205000px;}
.y50{bottom:705.525000px;}
.y18{bottom:717.405000px;}
.y7b{bottom:719.205000px;}
.y4f{bottom:728.565000px;}
.y7a{bottom:737.205000px;}
.y4e{bottom:751.605000px;}
.y79{bottom:755.205000px;}
.y78{bottom:773.205000px;}
.y4d{bottom:774.645000px;}
.y77{bottom:791.205000px;}
.y4c{bottom:797.685000px;}
.y16{bottom:809.205000px;}
.y75{bottom:810.465000px;}
.y4b{bottom:820.545000px;}
.y12{bottom:823.785000px;}
.y74{bottom:840.525000px;}
.y4a{bottom:843.585000px;}
.y73{bottom:863.385000px;}
.y49{bottom:866.625000px;}
.y72{bottom:877.785000px;}
.y48{bottom:889.710000px;}
.y71{bottom:897.270000px;}
.y47{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.y70{bottom:916.890000px;}
.yd{bottom:929.130000px;}
.y46{bottom:935.790000px;}
.y6f{bottom:936.510000px;}
.y6e{bottom:955.950000px;}
.y45{bottom:958.650000px;}
.y6c{bottom:975.570000px;}
.y44{bottom:981.690000px;}
.y6a{bottom:996.090000px;}
.y43{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y42{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y41{bottom:1050.810000px;}
.y36{bottom:1065.210000px;}
.y40{bottom:1073.850000px;}
.y3f{bottom:1096.710000px;}
.y3e{bottom:1119.750000px;}
.y3d{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3c{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1b{height:13.320000px;}
.hf{height:13.665000px;}
.h13{height:14.580000px;}
.h35{height:14.925000px;}
.h36{height:14.976000px;}
.h33{height:15.105000px;}
.h37{height:15.118500px;}
.h22{height:15.285000px;}
.h31{height:16.725000px;}
.h2f{height:16.740000px;}
.h32{height:16.761000px;}
.h30{height:16.920000px;}
.h17{height:17.100000px;}
.h2d{height:18.345000px;}
.h2e{height:18.382500px;}
.h2c{height:18.525000px;}
.h20{height:18.705000px;}
.h1f{height:19.965000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h19{height:23.040000px;}
.h16{height:25.001719px;}
.h25{height:25.905000px;}
.h26{height:29.145586px;}
.h1d{height:30.090000px;}
.h10{height:32.670352px;}
.h1c{height:33.588984px;}
.h34{height:36.721758px;}
.h14{height:36.886641px;}
.h18{height:40.472227px;}
.h23{height:40.842773px;}
.h1a{height:41.106445px;}
.h29{height:41.291016px;}
.h2b{height:42.524297px;}
.h38{height:42.644297px;}
.h12{height:48.761719px;}
.h21{height:50.100469px;}
.h1e{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h28{height:55.054688px;}
.h2a{height:55.209375px;}
.h6{height:57.051211px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h11{height:91.642500px;}
.h15{height:91.800000px;}
.h27{height:93.810000px;}
.h8{height:108.030000px;}
.h24{height:230.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w6{width:76.669500px;}
.w5{width:124.005000px;}
.wa{width:332.115000px;}
.wd{width:337.515000px;}
.wc{width:337.564500px;}
.wf{width:338.235000px;}
.we{width:340.035000px;}
.w9{width:356.464500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x10{left:16.740000px;}
.x2{left:21.049500px;}
.x7{left:39.780000px;}
.xd{left:73.785000px;}
.x20{left:82.065000px;}
.x25{left:94.485000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x26{left:113.745000px;}
.x23{left:123.285000px;}
.x27{left:127.965000px;}
.x1f{left:134.445000px;}
.x1a{left:135.705000px;}
.x16{left:137.503500px;}
.x18{left:139.485000px;}
.x19{left:141.643500px;}
.x1c{left:146.683500px;}
.x21{left:149.923500px;}
.x22{left:151.723500px;}
.x1d{left:152.803500px;}
.x24{left:153.885000px;}
.x1e{left:155.143500px;}
.x3{left:157.005000px;}
.x1b{left:158.968500px;}
.xa{left:176.805000px;}
.x13{left:230.430000px;}
.x12{left:263.910000px;}
.xf{left:325.875000px;}
.x17{left:445.620000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x6{left:661.650000px;}
.xe{left:680.323500px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.352000pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.208000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.081067pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.lse{letter-spacing:0.032000pt;}
.ls18{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.166933pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.208000pt;}
.ls0{letter-spacing:0.208640pt;}
.ls14{letter-spacing:0.224000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.432000pt;}
.lsf{letter-spacing:0.480000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws3{word-spacing:-17.024000pt;}
.wsc{word-spacing:-16.848000pt;}
.wsb{word-spacing:-16.416000pt;}
.ws5{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.680000pt;}
.ws7{word-spacing:-14.955520pt;}
.ws16{word-spacing:-12.192000pt;}
.ws19{word-spacing:-11.840000pt;}
.ws13{word-spacing:-11.792000pt;}
.ws17{word-spacing:-11.760000pt;}
.wsf{word-spacing:-11.648000pt;}
.ws18{word-spacing:-11.616000pt;}
.ws9{word-spacing:-11.584000pt;}
.ws8{word-spacing:-11.568000pt;}
.ws1b{word-spacing:-11.536000pt;}
.ws11{word-spacing:-11.520000pt;}
.ws10{word-spacing:-11.488000pt;}
.ws14{word-spacing:-11.360000pt;}
.ws1a{word-spacing:-11.312000pt;}
.ws15{word-spacing:-10.501013pt;}
.ws2{word-spacing:-9.192960pt;}
.ws12{word-spacing:-7.712000pt;}
.wse{word-spacing:-7.552000pt;}
.wsd{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._2{width:1.021440pt;}
._e{width:2.016000pt;}
._9{width:3.168000pt;}
._a{width:4.464000pt;}
._3{width:5.952000pt;}
._b{width:7.104000pt;}
._6{width:8.208000pt;}
._7{width:9.658453pt;}
._15{width:10.560000pt;}
._23{width:12.533760pt;}
._8{width:13.440000pt;}
._5{width:14.784000pt;}
._4{width:16.024533pt;}
._1c{width:17.006933pt;}
._20{width:17.923200pt;}
._1b{width:18.864000pt;}
._f{width:20.304000pt;}
._10{width:21.437227pt;}
._2a{width:22.704000pt;}
._1d{width:23.616000pt;}
._24{width:25.056000pt;}
._1f{width:26.016000pt;}
._13{width:27.408000pt;}
._14{width:28.512000pt;}
._16{width:29.904000pt;}
._17{width:30.933120pt;}
._18{width:32.064000pt;}
._1e{width:33.168000pt;}
._11{width:34.224000pt;}
._12{width:35.184000pt;}
._19{width:36.672000pt;}
._1a{width:37.690667pt;}
._27{width:38.736000pt;}
._28{width:40.224000pt;}
._1{width:41.964160pt;}
._25{width:43.680000pt;}
._c{width:44.928000pt;}
._d{width:46.080000pt;}
._21{width:57.120000pt;}
._22{width:58.224000pt;}
._26{width:129.904000pt;}
._29{width:180.410667pt;}
.fs3{font-size:10.880000pt;}
.fs7{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y3b{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1f{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y26{bottom:3.200000pt;}
.y28{bottom:3.520000pt;}
.y97{bottom:3.666667pt;}
.y4{bottom:3.680000pt;}
.y95{bottom:3.826667pt;}
.y9a{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y8a{bottom:4.146667pt;}
.y76{bottom:4.160000pt;}
.y24{bottom:4.320000pt;}
.y6d{bottom:5.440000pt;}
.y6b{bottom:5.600000pt;}
.y3a{bottom:8.000000pt;}
.y33{bottom:9.746667pt;}
.y1d{bottom:9.760000pt;}
.y21{bottom:13.306667pt;}
.y22{bottom:13.466667pt;}
.y15{bottom:13.600000pt;}
.y35{bottom:14.546667pt;}
.yf{bottom:17.760000pt;}
.y1a{bottom:18.720000pt;}
.y39{bottom:26.880000pt;}
.y32{bottom:30.066667pt;}
.y14{bottom:40.640000pt;}
.y38{bottom:45.920000pt;}
.y31{bottom:50.586667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y37{bottom:67.386667pt;}
.y13{bottom:67.880000pt;}
.y30{bottom:71.066667pt;}
.ya{bottom:71.520000pt;}
.y19{bottom:73.120000pt;}
.y9{bottom:81.280000pt;}
.y2f{bottom:91.546667pt;}
.y99{bottom:105.280000pt;}
.y2e{bottom:112.026667pt;}
.y69{bottom:115.840000pt;}
.y98{bottom:119.680000pt;}
.y2d{bottom:132.506667pt;}
.y96{bottom:134.120000pt;}
.y68{bottom:136.186667pt;}
.y94{bottom:149.320000pt;}
.y2c{bottom:152.826667pt;}
.y67{bottom:156.666667pt;}
.y2b{bottom:173.306667pt;}
.y93{bottom:174.426667pt;}
.y66{bottom:177.146667pt;}
.y2a{bottom:193.786667pt;}
.y92{bottom:194.906667pt;}
.y65{bottom:197.626667pt;}
.y91{bottom:215.386667pt;}
.y64{bottom:218.106667pt;}
.y90{bottom:235.866667pt;}
.y63{bottom:238.586667pt;}
.y8f{bottom:256.186667pt;}
.y62{bottom:258.906667pt;}
.y8e{bottom:276.666667pt;}
.y61{bottom:279.386667pt;}
.y34{bottom:287.880000pt;}
.y8d{bottom:297.146667pt;}
.y60{bottom:299.866667pt;}
.y8c{bottom:309.960000pt;}
.y29{bottom:310.920000pt;}
.y5f{bottom:320.346667pt;}
.y8b{bottom:325.960000pt;}
.y5e{bottom:340.826667pt;}
.y89{bottom:341.960000pt;}
.y88{bottom:358.946667pt;}
.y5d{bottom:361.346667pt;}
.y5c{bottom:381.666667pt;}
.y87{bottom:385.666667pt;}
.y5b{bottom:402.146667pt;}
.y86{bottom:406.146667pt;}
.y5a{bottom:422.626667pt;}
.y85{bottom:426.466667pt;}
.y59{bottom:443.106667pt;}
.y84{bottom:446.946667pt;}
.y58{bottom:463.586667pt;}
.y83{bottom:467.426667pt;}
.y57{bottom:484.066667pt;}
.y82{bottom:487.906667pt;}
.y56{bottom:504.386667pt;}
.y81{bottom:508.386667pt;}
.y27{bottom:515.426667pt;}
.y55{bottom:524.866667pt;}
.y80{bottom:528.866667pt;}
.y25{bottom:529.026667pt;}
.y54{bottom:545.346667pt;}
.y23{bottom:545.666667pt;}
.y7f{bottom:549.186667pt;}
.y20{bottom:563.426667pt;}
.y53{bottom:565.826667pt;}
.y7e{bottom:569.693333pt;}
.y52{bottom:586.333333pt;}
.y1e{bottom:590.173333pt;}
.y1c{bottom:602.013333pt;}
.y51{bottom:606.653333pt;}
.y7d{bottom:610.653333pt;}
.y1b{bottom:622.493333pt;}
.y7c{bottom:623.293333pt;}
.y50{bottom:627.133333pt;}
.y18{bottom:637.693333pt;}
.y7b{bottom:639.293333pt;}
.y4f{bottom:647.613333pt;}
.y7a{bottom:655.293333pt;}
.y4e{bottom:668.093333pt;}
.y79{bottom:671.293333pt;}
.y78{bottom:687.293333pt;}
.y4d{bottom:688.573333pt;}
.y77{bottom:703.293333pt;}
.y4c{bottom:709.053333pt;}
.y16{bottom:719.293333pt;}
.y75{bottom:720.413333pt;}
.y4b{bottom:729.373333pt;}
.y12{bottom:732.253333pt;}
.y74{bottom:747.133333pt;}
.y4a{bottom:749.853333pt;}
.y73{bottom:767.453333pt;}
.y49{bottom:770.333333pt;}
.y72{bottom:780.253333pt;}
.y48{bottom:790.853333pt;}
.y71{bottom:797.573333pt;}
.y47{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.y70{bottom:815.013333pt;}
.yd{bottom:825.893333pt;}
.y46{bottom:831.813333pt;}
.y6f{bottom:832.453333pt;}
.y6e{bottom:849.733333pt;}
.y45{bottom:852.133333pt;}
.y6c{bottom:867.173333pt;}
.y44{bottom:872.613333pt;}
.y6a{bottom:885.413333pt;}
.y43{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y42{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y41{bottom:934.053333pt;}
.y36{bottom:946.853333pt;}
.y40{bottom:954.533333pt;}
.y3f{bottom:974.853333pt;}
.y3e{bottom:995.333333pt;}
.y3d{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3c{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1b{height:11.840000pt;}
.hf{height:12.146667pt;}
.h13{height:12.960000pt;}
.h35{height:13.266667pt;}
.h36{height:13.312000pt;}
.h33{height:13.426667pt;}
.h37{height:13.438667pt;}
.h22{height:13.586667pt;}
.h31{height:14.866667pt;}
.h2f{height:14.880000pt;}
.h32{height:14.898667pt;}
.h30{height:15.040000pt;}
.h17{height:15.200000pt;}
.h2d{height:16.306667pt;}
.h2e{height:16.340000pt;}
.h2c{height:16.466667pt;}
.h20{height:16.626667pt;}
.h1f{height:17.746667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h19{height:20.480000pt;}
.h16{height:22.223750pt;}
.h25{height:23.026667pt;}
.h26{height:25.907188pt;}
.h1d{height:26.746667pt;}
.h10{height:29.040312pt;}
.h1c{height:29.856875pt;}
.h34{height:32.641562pt;}
.h14{height:32.788125pt;}
.h18{height:35.975313pt;}
.h23{height:36.304688pt;}
.h1a{height:36.539062pt;}
.h29{height:36.703125pt;}
.h2b{height:37.799375pt;}
.h38{height:37.906042pt;}
.h12{height:43.343750pt;}
.h21{height:44.533750pt;}
.h1e{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h28{height:48.937500pt;}
.h2a{height:49.075000pt;}
.h6{height:50.712187pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h11{height:81.460000pt;}
.h15{height:81.600000pt;}
.h27{height:83.386667pt;}
.h8{height:96.026667pt;}
.h24{height:204.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w6{width:68.150667pt;}
.w5{width:110.226667pt;}
.wa{width:295.213333pt;}
.wd{width:300.013333pt;}
.wc{width:300.057333pt;}
.wf{width:300.653333pt;}
.we{width:302.253333pt;}
.w9{width:316.857333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x10{left:14.880000pt;}
.x2{left:18.710667pt;}
.x7{left:35.360000pt;}
.xd{left:65.586667pt;}
.x20{left:72.946667pt;}
.x25{left:83.986667pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x26{left:101.106667pt;}
.x23{left:109.586667pt;}
.x27{left:113.746667pt;}
.x1f{left:119.506667pt;}
.x1a{left:120.626667pt;}
.x16{left:122.225333pt;}
.x18{left:123.986667pt;}
.x19{left:125.905333pt;}
.x1c{left:130.385333pt;}
.x21{left:133.265333pt;}
.x22{left:134.865333pt;}
.x1d{left:135.825333pt;}
.x24{left:136.786667pt;}
.x1e{left:137.905333pt;}
.x3{left:139.560000pt;}
.x1b{left:141.305333pt;}
.xa{left:157.160000pt;}
.x13{left:204.826667pt;}
.x12{left:234.586667pt;}
.xf{left:289.666667pt;}
.x17{left:396.106667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x6{left:588.133333pt;}
.xe{left:604.732000pt;}
}




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