
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f7b7c8c7960c749dcf6c2777.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.047852;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_2a26b1d999c0a9dc00d8d5e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.047852;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_01f4d92374e3c4baedea91e0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd20a4df2c4ec0b1088a86df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_0f074a80ee221652a25c43b7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.406200px;}
.ls23{letter-spacing:-0.380400px;}
.ls14{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.298200px;}
.ls36{letter-spacing:-0.294000px;}
.ls19{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.253200px;}
.ls24{letter-spacing:-0.207600px;}
.ls10{letter-spacing:-0.190200px;}
.ls12{letter-spacing:-0.181200px;}
.ls1a{letter-spacing:-0.155400px;}
.ls1e{letter-spacing:-0.080400px;}
.ls35{letter-spacing:-0.066000px;}
.lsd{letter-spacing:-0.057600px;}
.lsc{letter-spacing:-0.018720px;}
.ls32{letter-spacing:-0.017280px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.008640px;}
.ls11{letter-spacing:0.014400px;}
.ls37{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.054720px;}
.ls7{letter-spacing:0.074880px;}
.ls18{letter-spacing:0.123600px;}
.ls33{letter-spacing:0.126600px;}
.ls5{letter-spacing:0.152640px;}
.ls1d{letter-spacing:0.207600px;}
.lsa{letter-spacing:0.217200px;}
.ls1f{letter-spacing:0.219000px;}
.ls34{letter-spacing:0.256200px;}
.ls21{letter-spacing:0.283200px;}
.ls4{letter-spacing:0.303000px;}
.ls13{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.325440px;}
.ls22{letter-spacing:0.339600px;}
.ls15{letter-spacing:0.414720px;}
.ls6{letter-spacing:0.586800px;}
.ls17{letter-spacing:1.483200px;}
.ls2e{letter-spacing:12.545280px;}
.ls30{letter-spacing:13.265280px;}
.ls2c{letter-spacing:13.409280px;}
.ls16{letter-spacing:13.723200px;}
.ls31{letter-spacing:16.145280px;}
.ls2f{letter-spacing:19.025280px;}
.ls2d{letter-spacing:20.609280px;}
.ls26{letter-spacing:39.329280px;}
.ls28{letter-spacing:40.769280px;}
.ls2b{letter-spacing:42.209280px;}
.ls29{letter-spacing:42.929280px;}
.ls27{letter-spacing:45.809280px;}
.ls25{letter-spacing:47.249280px;}
.ls2a{letter-spacing:49.409280px;}
.ls20{letter-spacing:64.170720px;}
.ls0{letter-spacing:190.902240px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc8{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc6{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 rgb(45,116,181),0 0.015em rgb(45,116,181),0.015em 0 rgb(45,116,181),0 -0.015em  rgb(45,116,181);}
.sc5{text-shadow:-0.015em 0 rgb(217,217,217),0 0.015em rgb(217,217,217),0.015em 0 rgb(217,217,217),0 -0.015em  rgb(217,217,217);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc7{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(45,116,181);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(217,217,217);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);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;}
}
.ws15{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.020600px;}
.ws16{word-spacing:-13.256400px;}
.wsd{word-spacing:-13.233600px;}
.ws1a{word-spacing:-13.173000px;}
.ws13{word-spacing:-13.135800px;}
.ws11{word-spacing:-13.124400px;}
.ws19{word-spacing:-13.043400px;}
.wse{word-spacing:-13.040400px;}
.ws1e{word-spacing:-12.934080px;}
.wsc{word-spacing:-12.931200px;}
.ws10{word-spacing:-12.925440px;}
.ws0{word-spacing:-12.916800px;}
.ws18{word-spacing:-12.899520px;}
.ws1c{word-spacing:-12.850800px;}
.ws12{word-spacing:-12.836400px;}
.wsa{word-spacing:-12.726600px;}
.ws17{word-spacing:-12.709200px;}
.ws9{word-spacing:-12.663600px;}
.wsf{word-spacing:-12.628800px;}
.ws1d{word-spacing:-12.622800px;}
.ws1b{word-spacing:-12.611400px;}
.ws4{word-spacing:-11.956200px;}
.ws14{word-spacing:-11.936400px;}
.ws6{word-spacing:-11.870400px;}
.ws3{word-spacing:-11.653200px;}
.ws8{word-spacing:-11.634480px;}
.ws7{word-spacing:-11.355000px;}
.ws2{word-spacing:-8.143200px;}
.ws5{word-spacing:-7.581600px;}
.wsb{word-spacing:0.000000px;}
._10{margin-left:-4.473600px;}
._8{margin-left:-3.344640px;}
._9{margin-left:-2.219520px;}
._0{margin-left:-1.043520px;}
._1{width:1.008000px;}
._6{width:2.480160px;}
._7{width:3.812640px;}
._17{width:5.299200px;}
._2{width:6.346800px;}
._3{width:7.636320px;}
._f{width:8.674560px;}
._e{width:9.897600px;}
._c{width:11.691840px;}
._d{width:14.064960px;}
._a{width:16.080000px;}
._b{width:17.377920px;}
._16{width:19.192320px;}
._23{width:20.655840px;}
._2c{width:21.830880px;}
._21{width:22.858560px;}
._4{width:24.211440px;}
._5{width:25.449120px;}
._2a{width:26.593920px;}
._2f{width:28.224000px;}
._25{width:29.344320px;}
._13{width:31.000320px;}
._14{width:32.590080px;}
._1c{width:33.716160px;}
._1a{width:35.223360px;}
._1b{width:36.564480px;}
._27{width:37.624320px;}
._22{width:38.824320px;}
._29{width:40.075200px;}
._30{width:41.996160px;}
._31{width:43.354560px;}
._11{width:44.447040px;}
._12{width:46.219200px;}
._28{width:48.487680px;}
._1f{width:50.474880px;}
._36{width:51.733440px;}
._20{width:53.190720px;}
._37{width:54.316800px;}
._38{width:55.707840px;}
._19{width:56.751360px;}
._24{width:58.423680px;}
._15{width:59.599680px;}
._2b{width:62.398080px;}
._35{width:68.425920px;}
._2e{width:69.734400px;}
._1d{width:70.744320px;}
._33{width:71.754240px;}
._1e{width:72.765120px;}
._18{width:74.106240px;}
._2d{width:75.114240px;}
._32{width:80.879040px;}
._39{width:86.973120px;}
._34{width:89.341440px;}
._3a{width:90.947520px;}
._3c{width:92.404800px;}
._41{width:99.724800px;}
._40{width:100.751040px;}
._3e{width:200.773440px;}
._3d{width:202.429440px;}
._3b{width:221.454720px;}
._3f{width:417.245760px;}
._26{width:425.724480px;}
.fc6{color:rgb(0,32,96);}
.fc7{color:rgb(0,176,240);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(45,116,181);}
.fc4{color:rgb(217,217,217);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:56.700000px;}
.y3{bottom:73.116000px;}
.y36{bottom:117.396000px;}
.y95{bottom:118.836000px;}
.yb3{bottom:121.176000px;}
.y62{bottom:121.536000px;}
.y66{bottom:133.596000px;}
.y35{bottom:140.436000px;}
.y94{bottom:142.056000px;}
.yb2{bottom:144.396000px;}
.y61{bottom:144.756000px;}
.y81{bottom:152.490000px;}
.y34{bottom:163.650000px;}
.y93{bottom:165.090000px;}
.yb1{bottom:167.610000px;}
.y60{bottom:167.970000px;}
.y80{bottom:175.710000px;}
.y33{bottom:186.870000px;}
.y92{bottom:188.310000px;}
.yb0{bottom:190.650000px;}
.y5f{bottom:191.010000px;}
.y7f{bottom:198.750000px;}
.y32{bottom:209.910000px;}
.y91{bottom:211.530000px;}
.yaf{bottom:213.870000px;}
.y5e{bottom:214.230000px;}
.y7e{bottom:221.970000px;}
.y90{bottom:227.190000px;}
.y31{bottom:233.130000px;}
.yae{bottom:237.090000px;}
.y5d{bottom:237.450000px;}
.y7d{bottom:245.190000px;}
.y30{bottom:256.350000px;}
.yad{bottom:260.130000px;}
.y5c{bottom:260.490000px;}
.y7c{bottom:268.230000px;}
.y2f{bottom:279.570000px;}
.yac{bottom:283.350000px;}
.y5b{bottom:283.710000px;}
.y7b{bottom:291.450000px;}
.y2e{bottom:302.610000px;}
.yab{bottom:306.570000px;}
.y5a{bottom:306.930000px;}
.y7a{bottom:314.670000px;}
.y2d{bottom:325.830000px;}
.yaa{bottom:329.610000px;}
.y59{bottom:329.970000px;}
.y79{bottom:337.755000px;}
.y2c{bottom:349.095000px;}
.ya9{bottom:352.875000px;}
.y58{bottom:353.235000px;}
.y78{bottom:360.975000px;}
.y2b{bottom:372.135000px;}
.ya8{bottom:376.095000px;}
.y57{bottom:376.455000px;}
.y77{bottom:384.195000px;}
.y65{bottom:387.435000px;}
.y2a{bottom:395.355000px;}
.ya7{bottom:399.315000px;}
.y56{bottom:399.495000px;}
.y64{bottom:405.795000px;}
.y76{bottom:407.235000px;}
.y29{bottom:418.575000px;}
.ya6{bottom:422.355000px;}
.y55{bottom:422.715000px;}
.y63{bottom:423.975000px;}
.y75{bottom:430.455000px;}
.y28{bottom:441.615000px;}
.ya5{bottom:445.575000px;}
.y54{bottom:445.935000px;}
.y74{bottom:453.675000px;}
.y27{bottom:464.835000px;}
.ya4{bottom:468.795000px;}
.y53{bottom:468.975000px;}
.y73{bottom:476.715000px;}
.y26{bottom:488.055000px;}
.ya3{bottom:491.835000px;}
.y52{bottom:492.195000px;}
.y72{bottom:499.935000px;}
.y25{bottom:511.095000px;}
.ya2{bottom:515.055000px;}
.y51{bottom:515.415000px;}
.y71{bottom:523.155000px;}
.y24{bottom:534.315000px;}
.ya1{bottom:538.275000px;}
.y50{bottom:538.455000px;}
.y70{bottom:546.375000px;}
.y23{bottom:557.535000px;}
.ya0{bottom:561.315000px;}
.y4f{bottom:561.675000px;}
.y6f{bottom:569.415000px;}
.y22{bottom:580.575000px;}
.y8f{bottom:582.195000px;}
.y9f{bottom:584.535000px;}
.y4e{bottom:584.895000px;}
.y6e{bottom:592.635000px;}
.y8e{bottom:600.555000px;}
.y21{bottom:603.825000px;}
.y9e{bottom:607.785000px;}
.y4d{bottom:607.965000px;}
.y6d{bottom:615.885000px;}
.y8d{bottom:622.365000px;}
.y20{bottom:627.045000px;}
.y9d{bottom:630.825000px;}
.y4c{bottom:631.185000px;}
.y6c{bottom:638.925000px;}
.y8c{bottom:645.585000px;}
.y1f{bottom:650.085000px;}
.y9c{bottom:654.045000px;}
.y4b{bottom:654.405000px;}
.y6b{bottom:662.145000px;}
.y8b{bottom:668.625000px;}
.y1e{bottom:673.305000px;}
.y9b{bottom:677.265000px;}
.y4a{bottom:677.625000px;}
.y6a{bottom:685.365000px;}
.y8a{bottom:691.845000px;}
.y1d{bottom:696.525000px;}
.y9a{bottom:700.305000px;}
.y49{bottom:700.665000px;}
.y69{bottom:701.025000px;}
.y89{bottom:715.065000px;}
.y1c{bottom:719.565000px;}
.y99{bottom:720.465000px;}
.y48{bottom:723.885000px;}
.y98{bottom:736.125000px;}
.y88{bottom:738.105000px;}
.y1b{bottom:742.785000px;}
.y47{bottom:747.105000px;}
.y87{bottom:761.325000px;}
.y1a{bottom:766.005000px;}
.y46{bottom:770.145000px;}
.y86{bottom:784.545000px;}
.y19{bottom:789.225000px;}
.y45{bottom:793.365000px;}
.y85{bottom:807.585000px;}
.y18{bottom:812.265000px;}
.y44{bottom:816.585000px;}
.y84{bottom:830.805000px;}
.y11{bottom:834.585000px;}
.y43{bottom:839.625000px;}
.y17{bottom:847.005000px;}
.y83{bottom:854.025000px;}
.y10{bottom:855.645000px;}
.y42{bottom:862.845000px;}
.y16{bottom:868.065000px;}
.y82{bottom:869.685000px;}
.yf{bottom:881.970000px;}
.y41{bottom:886.110000px;}
.y15{bottom:889.170000px;}
.ye{bottom:897.810000px;}
.y40{bottom:909.150000px;}
.y14{bottom:909.870000px;}
.yd{bottom:924.090000px;}
.y3f{bottom:932.370000px;}
.yc{bottom:939.930000px;}
.y13{bottom:940.110000px;}
.y3e{bottom:955.590000px;}
.y12{bottom:960.990000px;}
.yb{bottom:966.210000px;}
.y3d{bottom:978.630000px;}
.ya{bottom:982.950000px;}
.y3c{bottom:1001.850000px;}
.y9{bottom:1007.970000px;}
.y3b{bottom:1025.070000px;}
.y8{bottom:1037.310000px;}
.y3a{bottom:1048.110000px;}
.y7{bottom:1069.530000px;}
.y39{bottom:1071.330000px;}
.y38{bottom:1094.550000px;}
.y97{bottom:1100.670000px;}
.y6{bottom:1107.330000px;}
.y37{bottom:1117.590000px;}
.y96{bottom:1119.030000px;}
.y68{bottom:1123.890000px;}
.y5{bottom:1140.840000px;}
.y67{bottom:1142.100000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h9{height:31.457109px;}
.h4{height:43.690430px;}
.hc{height:47.883867px;}
.ha{height:48.350742px;}
.hb{height:53.076094px;}
.h5{height:53.593594px;}
.h8{height:57.547266px;}
.hf{height:57.691406px;}
.hd{height:61.423863px;}
.h3{height:65.884219px;}
.he{height:68.084282px;}
.h7{height:68.157070px;}
.h6{height:87.380859px;}
.h2{height:95.245664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.899987px;}
.x1a{left:68.939987px;}
.x4{left:70.559987px;}
.x6{left:79.019987px;}
.x1b{left:95.975987px;}
.x13{left:113.255987px;}
.x8{left:142.055987px;}
.x19{left:201.989987px;}
.x5{left:210.989987px;}
.x2{left:234.929987px;}
.x3{left:265.529987px;}
.x17{left:347.474987px;}
.x7{left:351.794987px;}
.x14{left:402.014987px;}
.x15{left:421.814987px;}
.x16{left:446.654987px;}
.xf{left:473.144987px;}
.x22{left:474.944987px;}
.x1c{left:478.184987px;}
.x1f{left:481.244987px;}
.x10{left:484.844987px;}
.x20{left:498.524987px;}
.x26{left:502.124987px;}
.x1d{left:505.184987px;}
.x21{left:513.644987px;}
.x24{left:520.124987px;}
.x25{left:565.304987px;}
.xa{left:568.184987px;}
.x1e{left:582.044987px;}
.xd{left:585.104987px;}
.xe{left:586.184987px;}
.xc{left:590.864987px;}
.x9{left:598.424987px;}
.x23{left:603.104987px;}
.x11{left:623.624987px;}
.xb{left:651.164987px;}
.x18{left:700.169987px;}
.x12{left:824.549987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.361067pt;}
.ls23{letter-spacing:-0.338133pt;}
.ls14{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.265067pt;}
.ls36{letter-spacing:-0.261333pt;}
.ls19{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.225067pt;}
.ls24{letter-spacing:-0.184533pt;}
.ls10{letter-spacing:-0.169067pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls1a{letter-spacing:-0.138133pt;}
.ls1e{letter-spacing:-0.071467pt;}
.ls35{letter-spacing:-0.058667pt;}
.lsd{letter-spacing:-0.051200pt;}
.lsc{letter-spacing:-0.016640pt;}
.ls32{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.007680pt;}
.ls11{letter-spacing:0.012800pt;}
.ls37{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.048640pt;}
.ls7{letter-spacing:0.066560pt;}
.ls18{letter-spacing:0.109867pt;}
.ls33{letter-spacing:0.112533pt;}
.ls5{letter-spacing:0.135680pt;}
.ls1d{letter-spacing:0.184533pt;}
.lsa{letter-spacing:0.193067pt;}
.ls1f{letter-spacing:0.194667pt;}
.ls34{letter-spacing:0.227733pt;}
.ls21{letter-spacing:0.251733pt;}
.ls4{letter-spacing:0.269333pt;}
.ls13{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.289280pt;}
.ls22{letter-spacing:0.301867pt;}
.ls15{letter-spacing:0.368640pt;}
.ls6{letter-spacing:0.521600pt;}
.ls17{letter-spacing:1.318400pt;}
.ls2e{letter-spacing:11.151360pt;}
.ls30{letter-spacing:11.791360pt;}
.ls2c{letter-spacing:11.919360pt;}
.ls16{letter-spacing:12.198400pt;}
.ls31{letter-spacing:14.351360pt;}
.ls2f{letter-spacing:16.911360pt;}
.ls2d{letter-spacing:18.319360pt;}
.ls26{letter-spacing:34.959360pt;}
.ls28{letter-spacing:36.239360pt;}
.ls2b{letter-spacing:37.519360pt;}
.ls29{letter-spacing:38.159360pt;}
.ls27{letter-spacing:40.719360pt;}
.ls25{letter-spacing:41.999360pt;}
.ls2a{letter-spacing:43.919360pt;}
.ls20{letter-spacing:57.040640pt;}
.ls0{letter-spacing:169.690880pt;}
.ws15{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.240533pt;}
.ws16{word-spacing:-11.783467pt;}
.wsd{word-spacing:-11.763200pt;}
.ws1a{word-spacing:-11.709333pt;}
.ws13{word-spacing:-11.676267pt;}
.ws11{word-spacing:-11.666133pt;}
.ws19{word-spacing:-11.594133pt;}
.wse{word-spacing:-11.591467pt;}
.ws1e{word-spacing:-11.496960pt;}
.wsc{word-spacing:-11.494400pt;}
.ws10{word-spacing:-11.489280pt;}
.ws0{word-spacing:-11.481600pt;}
.ws18{word-spacing:-11.466240pt;}
.ws1c{word-spacing:-11.422933pt;}
.ws12{word-spacing:-11.410133pt;}
.wsa{word-spacing:-11.312533pt;}
.ws17{word-spacing:-11.297067pt;}
.ws9{word-spacing:-11.256533pt;}
.wsf{word-spacing:-11.225600pt;}
.ws1d{word-spacing:-11.220267pt;}
.ws1b{word-spacing:-11.210133pt;}
.ws4{word-spacing:-10.627733pt;}
.ws14{word-spacing:-10.610133pt;}
.ws6{word-spacing:-10.551467pt;}
.ws3{word-spacing:-10.358400pt;}
.ws8{word-spacing:-10.341760pt;}
.ws7{word-spacing:-10.093333pt;}
.ws2{word-spacing:-7.238400pt;}
.ws5{word-spacing:-6.739200pt;}
.wsb{word-spacing:0.000000pt;}
._10{margin-left:-3.976533pt;}
._8{margin-left:-2.973013pt;}
._9{margin-left:-1.972907pt;}
._0{margin-left:-0.927573pt;}
._1{width:0.896000pt;}
._6{width:2.204587pt;}
._7{width:3.389013pt;}
._17{width:4.710400pt;}
._2{width:5.641600pt;}
._3{width:6.787840pt;}
._f{width:7.710720pt;}
._e{width:8.797867pt;}
._c{width:10.392747pt;}
._d{width:12.502187pt;}
._a{width:14.293333pt;}
._b{width:15.447040pt;}
._16{width:17.059840pt;}
._23{width:18.360747pt;}
._2c{width:19.405227pt;}
._21{width:20.318720pt;}
._4{width:21.521280pt;}
._5{width:22.621440pt;}
._2a{width:23.639040pt;}
._2f{width:25.088000pt;}
._25{width:26.083840pt;}
._13{width:27.555840pt;}
._14{width:28.968960pt;}
._1c{width:29.969920pt;}
._1a{width:31.309653pt;}
._1b{width:32.501760pt;}
._27{width:33.443840pt;}
._22{width:34.510507pt;}
._29{width:35.622400pt;}
._30{width:37.329920pt;}
._31{width:38.537387pt;}
._11{width:39.508480pt;}
._12{width:41.083733pt;}
._28{width:43.100160pt;}
._1f{width:44.866560pt;}
._36{width:45.985280pt;}
._20{width:47.280640pt;}
._37{width:48.281600pt;}
._38{width:49.518080pt;}
._19{width:50.445653pt;}
._24{width:51.932160pt;}
._15{width:52.977493pt;}
._2b{width:55.464960pt;}
._35{width:60.823040pt;}
._2e{width:61.986133pt;}
._1d{width:62.883840pt;}
._33{width:63.781547pt;}
._1e{width:64.680107pt;}
._18{width:65.872213pt;}
._2d{width:66.768213pt;}
._32{width:71.892480pt;}
._39{width:77.309440pt;}
._34{width:79.414613pt;}
._3a{width:80.842240pt;}
._3c{width:82.137600pt;}
._41{width:88.644267pt;}
._40{width:89.556480pt;}
._3e{width:178.465280pt;}
._3d{width:179.937280pt;}
._3b{width:196.848640pt;}
._3f{width:370.885120pt;}
._26{width:378.421760pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.400000pt;}
.y3{bottom:64.992000pt;}
.y36{bottom:104.352000pt;}
.y95{bottom:105.632000pt;}
.yb3{bottom:107.712000pt;}
.y62{bottom:108.032000pt;}
.y66{bottom:118.752000pt;}
.y35{bottom:124.832000pt;}
.y94{bottom:126.272000pt;}
.yb2{bottom:128.352000pt;}
.y61{bottom:128.672000pt;}
.y81{bottom:135.546667pt;}
.y34{bottom:145.466667pt;}
.y93{bottom:146.746667pt;}
.yb1{bottom:148.986667pt;}
.y60{bottom:149.306667pt;}
.y80{bottom:156.186667pt;}
.y33{bottom:166.106667pt;}
.y92{bottom:167.386667pt;}
.yb0{bottom:169.466667pt;}
.y5f{bottom:169.786667pt;}
.y7f{bottom:176.666667pt;}
.y32{bottom:186.586667pt;}
.y91{bottom:188.026667pt;}
.yaf{bottom:190.106667pt;}
.y5e{bottom:190.426667pt;}
.y7e{bottom:197.306667pt;}
.y90{bottom:201.946667pt;}
.y31{bottom:207.226667pt;}
.yae{bottom:210.746667pt;}
.y5d{bottom:211.066667pt;}
.y7d{bottom:217.946667pt;}
.y30{bottom:227.866667pt;}
.yad{bottom:231.226667pt;}
.y5c{bottom:231.546667pt;}
.y7c{bottom:238.426667pt;}
.y2f{bottom:248.506667pt;}
.yac{bottom:251.866667pt;}
.y5b{bottom:252.186667pt;}
.y7b{bottom:259.066667pt;}
.y2e{bottom:268.986667pt;}
.yab{bottom:272.506667pt;}
.y5a{bottom:272.826667pt;}
.y7a{bottom:279.706667pt;}
.y2d{bottom:289.626667pt;}
.yaa{bottom:292.986667pt;}
.y59{bottom:293.306667pt;}
.y79{bottom:300.226667pt;}
.y2c{bottom:310.306667pt;}
.ya9{bottom:313.666667pt;}
.y58{bottom:313.986667pt;}
.y78{bottom:320.866667pt;}
.y2b{bottom:330.786667pt;}
.ya8{bottom:334.306667pt;}
.y57{bottom:334.626667pt;}
.y77{bottom:341.506667pt;}
.y65{bottom:344.386667pt;}
.y2a{bottom:351.426667pt;}
.ya7{bottom:354.946667pt;}
.y56{bottom:355.106667pt;}
.y64{bottom:360.706667pt;}
.y76{bottom:361.986667pt;}
.y29{bottom:372.066667pt;}
.ya6{bottom:375.426667pt;}
.y55{bottom:375.746667pt;}
.y63{bottom:376.866667pt;}
.y75{bottom:382.626667pt;}
.y28{bottom:392.546667pt;}
.ya5{bottom:396.066667pt;}
.y54{bottom:396.386667pt;}
.y74{bottom:403.266667pt;}
.y27{bottom:413.186667pt;}
.ya4{bottom:416.706667pt;}
.y53{bottom:416.866667pt;}
.y73{bottom:423.746667pt;}
.y26{bottom:433.826667pt;}
.ya3{bottom:437.186667pt;}
.y52{bottom:437.506667pt;}
.y72{bottom:444.386667pt;}
.y25{bottom:454.306667pt;}
.ya2{bottom:457.826667pt;}
.y51{bottom:458.146667pt;}
.y71{bottom:465.026667pt;}
.y24{bottom:474.946667pt;}
.ya1{bottom:478.466667pt;}
.y50{bottom:478.626667pt;}
.y70{bottom:485.666667pt;}
.y23{bottom:495.586667pt;}
.ya0{bottom:498.946667pt;}
.y4f{bottom:499.266667pt;}
.y6f{bottom:506.146667pt;}
.y22{bottom:516.066667pt;}
.y8f{bottom:517.506667pt;}
.y9f{bottom:519.586667pt;}
.y4e{bottom:519.906667pt;}
.y6e{bottom:526.786667pt;}
.y8e{bottom:533.826667pt;}
.y21{bottom:536.733333pt;}
.y9e{bottom:540.253333pt;}
.y4d{bottom:540.413333pt;}
.y6d{bottom:547.453333pt;}
.y8d{bottom:553.213333pt;}
.y20{bottom:557.373333pt;}
.y9d{bottom:560.733333pt;}
.y4c{bottom:561.053333pt;}
.y6c{bottom:567.933333pt;}
.y8c{bottom:573.853333pt;}
.y1f{bottom:577.853333pt;}
.y9c{bottom:581.373333pt;}
.y4b{bottom:581.693333pt;}
.y6b{bottom:588.573333pt;}
.y8b{bottom:594.333333pt;}
.y1e{bottom:598.493333pt;}
.y9b{bottom:602.013333pt;}
.y4a{bottom:602.333333pt;}
.y6a{bottom:609.213333pt;}
.y8a{bottom:614.973333pt;}
.y1d{bottom:619.133333pt;}
.y9a{bottom:622.493333pt;}
.y49{bottom:622.813333pt;}
.y69{bottom:623.133333pt;}
.y89{bottom:635.613333pt;}
.y1c{bottom:639.613333pt;}
.y99{bottom:640.413333pt;}
.y48{bottom:643.453333pt;}
.y98{bottom:654.333333pt;}
.y88{bottom:656.093333pt;}
.y1b{bottom:660.253333pt;}
.y47{bottom:664.093333pt;}
.y87{bottom:676.733333pt;}
.y1a{bottom:680.893333pt;}
.y46{bottom:684.573333pt;}
.y86{bottom:697.373333pt;}
.y19{bottom:701.533333pt;}
.y45{bottom:705.213333pt;}
.y85{bottom:717.853333pt;}
.y18{bottom:722.013333pt;}
.y44{bottom:725.853333pt;}
.y84{bottom:738.493333pt;}
.y11{bottom:741.853333pt;}
.y43{bottom:746.333333pt;}
.y17{bottom:752.893333pt;}
.y83{bottom:759.133333pt;}
.y10{bottom:760.573333pt;}
.y42{bottom:766.973333pt;}
.y16{bottom:771.613333pt;}
.y82{bottom:773.053333pt;}
.yf{bottom:783.973333pt;}
.y41{bottom:787.653333pt;}
.y15{bottom:790.373333pt;}
.ye{bottom:798.053333pt;}
.y40{bottom:808.133333pt;}
.y14{bottom:808.773333pt;}
.yd{bottom:821.413333pt;}
.y3f{bottom:828.773333pt;}
.yc{bottom:835.493333pt;}
.y13{bottom:835.653333pt;}
.y3e{bottom:849.413333pt;}
.y12{bottom:854.213333pt;}
.yb{bottom:858.853333pt;}
.y3d{bottom:869.893333pt;}
.ya{bottom:873.733333pt;}
.y3c{bottom:890.533333pt;}
.y9{bottom:895.973333pt;}
.y3b{bottom:911.173333pt;}
.y8{bottom:922.053333pt;}
.y3a{bottom:931.653333pt;}
.y7{bottom:950.693333pt;}
.y39{bottom:952.293333pt;}
.y38{bottom:972.933333pt;}
.y97{bottom:978.373333pt;}
.y6{bottom:984.293333pt;}
.y37{bottom:993.413333pt;}
.y96{bottom:994.693333pt;}
.y68{bottom:999.013333pt;}
.y5{bottom:1014.080000pt;}
.y67{bottom:1015.200000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h9{height:27.961875pt;}
.h4{height:38.835938pt;}
.hc{height:42.563437pt;}
.ha{height:42.978437pt;}
.hb{height:47.178750pt;}
.h5{height:47.638750pt;}
.h8{height:51.153125pt;}
.hf{height:51.281250pt;}
.hd{height:54.598989pt;}
.h3{height:58.563750pt;}
.he{height:60.519362pt;}
.h7{height:60.584062pt;}
.h6{height:77.671875pt;}
.h2{height:84.662813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.799988pt;}
.x1a{left:61.279988pt;}
.x4{left:62.719988pt;}
.x6{left:70.239988pt;}
.x1b{left:85.311988pt;}
.x13{left:100.671988pt;}
.x8{left:126.271988pt;}
.x19{left:179.546655pt;}
.x5{left:187.546655pt;}
.x2{left:208.826655pt;}
.x3{left:236.026655pt;}
.x17{left:308.866655pt;}
.x7{left:312.706655pt;}
.x14{left:357.346655pt;}
.x15{left:374.946655pt;}
.x16{left:397.026655pt;}
.xf{left:420.573322pt;}
.x22{left:422.173322pt;}
.x1c{left:425.053322pt;}
.x1f{left:427.773322pt;}
.x10{left:430.973322pt;}
.x20{left:443.133322pt;}
.x26{left:446.333322pt;}
.x1d{left:449.053322pt;}
.x21{left:456.573322pt;}
.x24{left:462.333322pt;}
.x25{left:502.493322pt;}
.xa{left:505.053322pt;}
.x1e{left:517.373322pt;}
.xd{left:520.093322pt;}
.xe{left:521.053322pt;}
.xc{left:525.213322pt;}
.x9{left:531.933322pt;}
.x23{left:536.093322pt;}
.x11{left:554.333322pt;}
.xb{left:578.813322pt;}
.x18{left:622.373322pt;}
.x12{left:732.933322pt;}
}




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