
    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_c2588852203b6f65fb63d1a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_d1f83f792e391751624be5a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.048000;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_b5222d245c1dbc773ad05003.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_0bc89d8cc5a2e3d0505a9669.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_d4e8e8118d4626cad37067a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.212000;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_e8c19abcc5e66b9355666538.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.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:ff7;src:url('chunks/assets/font_4c3a5590cc2865d23f933181.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.046000;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_b935864feb0172b9eb2d2df5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.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:ff9;src:url('chunks/assets/font_caf654f26db47218b3faa412.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.204000;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_83811b74cb87cab7e40f8a05.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.204000;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_5c37d88845d5ea7b3b21dc7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_596323e52901c4a9b60c9c16.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.833400px;}
.ls3{letter-spacing:2.782800px;}
.ls6{letter-spacing:20.031600px;}
.ls1{letter-spacing:37.039200px;}
.ls4{letter-spacing:37.039800px;}
.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:-48.060000px;}
.ws75{word-spacing:-42.000000px;}
.ws73{word-spacing:-31.500000px;}
.ws74{word-spacing:-23.184000px;}
.ws8{word-spacing:-14.304000px;}
.ws33{word-spacing:-13.248000px;}
.ws32{word-spacing:-10.176000px;}
.ws3e{word-spacing:-5.328000px;}
.ws16{word-spacing:-5.088000px;}
.ws54{word-spacing:-4.512000px;}
.ws3d{word-spacing:-2.400000px;}
.ws52{word-spacing:-2.304000px;}
.ws31{word-spacing:-2.256000px;}
.ws3b{word-spacing:-2.208000px;}
.wse{word-spacing:-2.016000px;}
.ws12{word-spacing:-1.968000px;}
.ws25{word-spacing:-1.920000px;}
.ws51{word-spacing:-1.824000px;}
.ws5e{word-spacing:-1.728000px;}
.ws41{word-spacing:-1.536000px;}
.ws48{word-spacing:-1.440000px;}
.ws4b{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.200000px;}
.ws6f{word-spacing:-1.152000px;}
.ws3f{word-spacing:-1.008000px;}
.ws64{word-spacing:-0.912000px;}
.ws59{word-spacing:-0.864000px;}
.ws37{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.672000px;}
.ws63{word-spacing:-0.624000px;}
.ws6{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.384000px;}
.ws45{word-spacing:-0.144000px;}
.ws5b{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.096000px;}
.ws4d{word-spacing:0.144000px;}
.ws4e{word-spacing:0.192000px;}
.ws6c{word-spacing:0.480000px;}
.ws18{word-spacing:0.576000px;}
.ws6d{word-spacing:0.624000px;}
.ws11{word-spacing:0.672000px;}
.ws6a{word-spacing:0.720000px;}
.ws27{word-spacing:0.768000px;}
.ws28{word-spacing:0.816000px;}
.ws2{word-spacing:1.056000px;}
.ws3{word-spacing:1.104000px;}
.ws19{word-spacing:1.296000px;}
.ws1e{word-spacing:1.344000px;}
.ws70{word-spacing:1.392000px;}
.ws7{word-spacing:1.440000px;}
.ws58{word-spacing:1.536000px;}
.ws6e{word-spacing:1.680000px;}
.ws53{word-spacing:1.728000px;}
.ws62{word-spacing:1.776000px;}
.ws23{word-spacing:1.824000px;}
.ws46{word-spacing:1.920000px;}
.ws24{word-spacing:2.016000px;}
.wsd{word-spacing:2.064000px;}
.ws22{word-spacing:2.112000px;}
.ws5c{word-spacing:2.208000px;}
.ws30{word-spacing:2.352000px;}
.ws72{word-spacing:2.400000px;}
.ws10{word-spacing:2.448000px;}
.wsf{word-spacing:2.544000px;}
.ws61{word-spacing:2.592000px;}
.ws5a{word-spacing:2.688000px;}
.ws14{word-spacing:2.784000px;}
.ws47{word-spacing:2.832000px;}
.ws13{word-spacing:2.880000px;}
.ws1b{word-spacing:3.072000px;}
.ws15{word-spacing:3.120000px;}
.ws1a{word-spacing:3.168000px;}
.ws4{word-spacing:3.216000px;}
.ws2c{word-spacing:3.264000px;}
.ws65{word-spacing:3.360000px;}
.ws1c{word-spacing:3.408000px;}
.ws2d{word-spacing:3.504000px;}
.ws4c{word-spacing:3.792000px;}
.ws20{word-spacing:3.936000px;}
.ws1d{word-spacing:4.272000px;}
.ws60{word-spacing:4.320000px;}
.ws2e{word-spacing:4.416000px;}
.ws35{word-spacing:4.704000px;}
.ws2f{word-spacing:4.752000px;}
.ws69{word-spacing:4.896000px;}
.ws50{word-spacing:4.944000px;}
.ws44{word-spacing:4.992000px;}
.ws49{word-spacing:5.088000px;}
.ws3a{word-spacing:5.136000px;}
.ws9{word-spacing:5.232000px;}
.ws6b{word-spacing:5.280000px;}
.ws56{word-spacing:5.424000px;}
.ws66{word-spacing:5.616000px;}
.ws26{word-spacing:5.712000px;}
.ws36{word-spacing:5.760000px;}
.ws57{word-spacing:5.904000px;}
.ws40{word-spacing:6.288000px;}
.ws4a{word-spacing:6.384000px;}
.ws67{word-spacing:6.672000px;}
.ws55{word-spacing:6.960000px;}
.wsa{word-spacing:7.248000px;}
.wsc{word-spacing:7.632000px;}
.ws38{word-spacing:7.680000px;}
.ws39{word-spacing:7.776000px;}
.ws42{word-spacing:7.824000px;}
.ws5d{word-spacing:8.304000px;}
.ws68{word-spacing:8.400000px;}
.ws5{word-spacing:8.448000px;}
.ws21{word-spacing:8.976000px;}
.ws43{word-spacing:9.840000px;}
.ws71{word-spacing:10.848000px;}
.ws34{word-spacing:12.624000px;}
.ws2a{word-spacing:12.960000px;}
.ws29{word-spacing:13.392000px;}
.wsb{word-spacing:13.488000px;}
.ws2b{word-spacing:14.496000px;}
.ws1f{word-spacing:15.648000px;}
._0{margin-left:-60.816000px;}
._9{margin-left:-58.176000px;}
._d{margin-left:-5.468400px;}
._b{margin-left:-3.624000px;}
._2{margin-left:-2.596800px;}
._1{margin-left:-1.008000px;}
._3{width:1.649400px;}
._5{width:3.014400px;}
._8{width:4.056000px;}
._4{width:5.067000px;}
._7{width:6.136200px;}
._a{width:7.173600px;}
._c{width:8.210400px;}
._6{width:17.460000px;}
._f{width:94.500000px;}
._e{width:102.144000px;}
._10{width:115.500000px;}
._11{width:228.816000px;}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,15,61);}
.fc0{color:rgb(255,178,53);}
.fs2{font-size:48.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:31.066950px;}
.y7{bottom:46.849650px;}
.y5b{bottom:114.106500px;}
.y89{bottom:119.730750px;}
.y5a{bottom:132.106500px;}
.y88{bottom:137.730750px;}
.y59{bottom:150.106500px;}
.y87{bottom:155.730750px;}
.y58{bottom:168.106500px;}
.y86{bottom:173.730750px;}
.y57{bottom:186.106500px;}
.y85{bottom:191.730750px;}
.y56{bottom:206.232450px;}
.y84{bottom:209.730750px;}
.y55{bottom:224.232450px;}
.y83{bottom:227.730750px;}
.yb5{bottom:230.376450px;}
.y54{bottom:242.232450px;}
.y82{bottom:245.730750px;}
.yb4{bottom:248.376450px;}
.y53{bottom:260.232450px;}
.y81{bottom:263.730750px;}
.yb3{bottom:266.376450px;}
.y52{bottom:280.358550px;}
.y80{bottom:281.730750px;}
.yb2{bottom:284.376450px;}
.y51{bottom:298.358550px;}
.y7f{bottom:299.730750px;}
.yd4{bottom:301.854750px;}
.yb1{bottom:302.376450px;}
.y50{bottom:316.358550px;}
.y7e{bottom:317.730750px;}
.y29{bottom:319.194900px;}
.yd3{bottom:319.854750px;}
.yb0{bottom:320.376450px;}
.y7d{bottom:335.730750px;}
.y4f{bottom:336.484500px;}
.y28{bottom:337.194900px;}
.yd2{bottom:337.854750px;}
.yaf{bottom:338.376450px;}
.y4e{bottom:354.484500px;}
.y27{bottom:355.194900px;}
.yae{bottom:356.376450px;}
.y7c{bottom:366.486750px;}
.yd1{bottom:368.610600px;}
.y4d{bottom:372.484500px;}
.y26{bottom:373.194900px;}
.yad{bottom:380.754300px;}
.y7b{bottom:384.486750px;}
.yd0{bottom:386.610600px;}
.y4c{bottom:390.484500px;}
.y25{bottom:391.194750px;}
.y6{bottom:396.156450px;}
.yac{bottom:398.754300px;}
.y7a{bottom:402.486600px;}
.y4b{bottom:408.484500px;}
.y24{bottom:409.194750px;}
.yab{bottom:416.754300px;}
.ycf{bottom:417.366450px;}
.y79{bottom:420.486600px;}
.y5{bottom:421.356450px;}
.y4a{bottom:428.610450px;}
.y23{bottom:433.194750px;}
.yaa{bottom:434.754300px;}
.yce{bottom:435.366450px;}
.y78{bottom:438.486600px;}
.y49{bottom:446.610450px;}
.ya9{bottom:452.754300px;}
.ycd{bottom:453.366450px;}
.y48{bottom:464.610450px;}
.y77{bottom:469.242600px;}
.ycc{bottom:471.366450px;}
.ya8{bottom:477.132300px;}
.y22{bottom:481.832550px;}
.y47{bottom:482.610450px;}
.y76{bottom:487.242600px;}
.ycb{bottom:489.366450px;}
.ya7{bottom:495.132300px;}
.y46{bottom:500.610450px;}
.y75{bottom:505.242600px;}
.y21{bottom:505.832550px;}
.ya6{bottom:513.132300px;}
.yca{bottom:520.122450px;}
.y45{bottom:520.736550px;}
.y74{bottom:529.620600px;}
.ya5{bottom:531.132300px;}
.yc9{bottom:538.122450px;}
.y44{bottom:538.736550px;}
.y73{bottom:547.620600px;}
.ya4{bottom:549.132300px;}
.y20{bottom:554.470350px;}
.yc8{bottom:556.122450px;}
.y43{bottom:556.736550px;}
.y72{bottom:565.620600px;}
.ya3{bottom:567.132300px;}
.y42{bottom:576.862500px;}
.y1f{bottom:578.470350px;}
.y71{bottom:583.620600px;}
.yc7{bottom:586.878300px;}
.y41{bottom:594.862500px;}
.y70{bottom:601.620600px;}
.yc6{bottom:604.878300px;}
.ya2{bottom:610.644150px;}
.y40{bottom:612.862500px;}
.ydb{bottom:614.563350px;}
.y1e{bottom:622.856250px;}
.yc5{bottom:622.878300px;}
.y6f{bottom:625.998450px;}
.y3f{bottom:630.862500px;}
.yc4{bottom:640.878300px;}
.y1d{bottom:642.982200px;}
.y6e{bottom:643.998450px;}
.yda{bottom:647.941350px;}
.y3e{bottom:648.862500px;}
.yc3{bottom:658.878300px;}
.y6d{bottom:661.998450px;}
.y1c{bottom:663.108150px;}
.y3d{bottom:668.988450px;}
.yc2{bottom:676.878300px;}
.ya1{bottom:678.911850px;}
.y6c{bottom:679.998450px;}
.yd9{bottom:681.319350px;}
.y3c{bottom:686.988450px;}
.y1b{bottom:687.108150px;}
.yc1{bottom:694.878300px;}
.ya0{bottom:696.911850px;}
.y3b{bottom:711.366450px;}
.yc0{bottom:712.878300px;}
.yd8{bottom:714.697200px;}
.y6b{bottom:723.510300px;}
.y9f{bottom:727.667700px;}
.y3a{bottom:729.366450px;}
.y1a{bottom:731.494050px;}
.y4{bottom:742.576050px;}
.ybf{bottom:743.634150px;}
.y9e{bottom:745.667700px;}
.y39{bottom:747.366450px;}
.yd7{bottom:748.075200px;}
.y19{bottom:751.620000px;}
.ybe{bottom:761.634150px;}
.y38{bottom:771.744300px;}
.y18{bottom:771.745950px;}
.y9d{bottom:776.423700px;}
.ybd{bottom:779.634300px;}
.y6a{bottom:781.148100px;}
.y37{bottom:789.744300px;}
.y3{bottom:790.576050px;}
.y17{bottom:791.872050px;}
.y9c{bottom:794.423700px;}
.yd6{bottom:800.587050px;}
.y69{bottom:801.274050px;}
.ybc{bottom:810.390150px;}
.y16{bottom:811.998000px;}
.y9b{bottom:812.423700px;}
.y68{bottom:821.400000px;}
.ybb{bottom:828.390150px;}
.y9a{bottom:830.423700px;}
.yd5{bottom:830.587050px;}
.y15{bottom:832.123950px;}
.y36{bottom:833.256300px;}
.y2{bottom:838.575900px;}
.y67{bottom:841.525950px;}
.yba{bottom:846.390150px;}
.y99{bottom:848.423700px;}
.y14{bottom:852.249900px;}
.y66{bottom:861.652050px;}
.yb9{bottom:864.390150px;}
.y98{bottom:866.423700px;}
.y13{bottom:872.376000px;}
.y65{bottom:881.778000px;}
.yb8{bottom:882.390150px;}
.y97{bottom:884.423700px;}
.y1{bottom:886.575900px;}
.y12{bottom:892.501950px;}
.y35{bottom:895.146000px;}
.y64{bottom:906.156000px;}
.y11{bottom:912.627900px;}
.y34{bottom:913.146000px;}
.y96{bottom:915.179700px;}
.y63{bottom:930.534000px;}
.y33{bottom:931.146000px;}
.y10{bottom:932.754000px;}
.y95{bottom:933.179700px;}
.y62{bottom:948.534000px;}
.y32{bottom:949.146000px;}
.y94{bottom:951.179700px;}
.yf{bottom:952.879950px;}
.y61{bottom:966.534000px;}
.y31{bottom:967.146000px;}
.y93{bottom:969.179700px;}
.ye{bottom:973.006050px;}
.y60{bottom:984.534000px;}
.y30{bottom:985.146000px;}
.y92{bottom:987.179700px;}
.yd{bottom:997.383900px;}
.y5f{bottom:1002.534000px;}
.yb7{bottom:1003.146000px;}
.y91{bottom:1005.179700px;}
.y2f{bottom:1009.524000px;}
.y5e{bottom:1020.534000px;}
.yb6{bottom:1021.146000px;}
.yc{bottom:1026.013800px;}
.y2e{bottom:1027.524000px;}
.y90{bottom:1035.935550px;}
.y5d{bottom:1038.534000px;}
.y2d{bottom:1045.524000px;}
.yb{bottom:1046.139750px;}
.y8f{bottom:1053.935550px;}
.y2c{bottom:1063.524000px;}
.ya{bottom:1070.517750px;}
.y8e{bottom:1071.935550px;}
.y2b{bottom:1081.524000px;}
.y5c{bottom:1082.045850px;}
.y8d{bottom:1089.935550px;}
.y9{bottom:1094.517750px;}
.y8c{bottom:1107.935550px;}
.y2a{bottom:1125.035850px;}
.y8b{bottom:1125.935550px;}
.y8a{bottom:1143.935550px;}
.h9{height:36.672000px;}
.h4{height:38.448000px;}
.h8{height:44.832000px;}
.h5{height:45.216000px;}
.h3{height:65.856000px;}
.hb{height:70.728000px;}
.ha{height:73.500000px;}
.h6{height:79.128000px;}
.h7{height:113.040000px;}
.h2{height:169.560000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:80.681400px;}
.x1{left:85.039350px;}
.x6{left:97.039350px;}
.x9{left:102.047250px;}
.x8{left:106.299150px;}
.x3{left:198.532050px;}
.x7{left:443.739300px;}
.x4{left:444.909450px;}
.x5{left:646.513350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.740800pt;}
.ls3{letter-spacing:2.473600pt;}
.ls6{letter-spacing:17.805867pt;}
.ls1{letter-spacing:32.923733pt;}
.ls4{letter-spacing:32.924267pt;}
.ws0{word-spacing:-42.720000pt;}
.ws75{word-spacing:-37.333333pt;}
.ws73{word-spacing:-28.000000pt;}
.ws74{word-spacing:-20.608000pt;}
.ws8{word-spacing:-12.714667pt;}
.ws33{word-spacing:-11.776000pt;}
.ws32{word-spacing:-9.045333pt;}
.ws3e{word-spacing:-4.736000pt;}
.ws16{word-spacing:-4.522667pt;}
.ws54{word-spacing:-4.010667pt;}
.ws3d{word-spacing:-2.133333pt;}
.ws52{word-spacing:-2.048000pt;}
.ws31{word-spacing:-2.005333pt;}
.ws3b{word-spacing:-1.962667pt;}
.wse{word-spacing:-1.792000pt;}
.ws12{word-spacing:-1.749333pt;}
.ws25{word-spacing:-1.706667pt;}
.ws51{word-spacing:-1.621333pt;}
.ws5e{word-spacing:-1.536000pt;}
.ws41{word-spacing:-1.365333pt;}
.ws48{word-spacing:-1.280000pt;}
.ws4b{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.066667pt;}
.ws6f{word-spacing:-1.024000pt;}
.ws3f{word-spacing:-0.896000pt;}
.ws64{word-spacing:-0.810667pt;}
.ws59{word-spacing:-0.768000pt;}
.ws37{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.597333pt;}
.ws63{word-spacing:-0.554667pt;}
.ws6{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.341333pt;}
.ws45{word-spacing:-0.128000pt;}
.ws5b{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.085333pt;}
.ws4d{word-spacing:0.128000pt;}
.ws4e{word-spacing:0.170667pt;}
.ws6c{word-spacing:0.426667pt;}
.ws18{word-spacing:0.512000pt;}
.ws6d{word-spacing:0.554667pt;}
.ws11{word-spacing:0.597333pt;}
.ws6a{word-spacing:0.640000pt;}
.ws27{word-spacing:0.682667pt;}
.ws28{word-spacing:0.725333pt;}
.ws2{word-spacing:0.938667pt;}
.ws3{word-spacing:0.981333pt;}
.ws19{word-spacing:1.152000pt;}
.ws1e{word-spacing:1.194667pt;}
.ws70{word-spacing:1.237333pt;}
.ws7{word-spacing:1.280000pt;}
.ws58{word-spacing:1.365333pt;}
.ws6e{word-spacing:1.493333pt;}
.ws53{word-spacing:1.536000pt;}
.ws62{word-spacing:1.578667pt;}
.ws23{word-spacing:1.621333pt;}
.ws46{word-spacing:1.706667pt;}
.ws24{word-spacing:1.792000pt;}
.wsd{word-spacing:1.834667pt;}
.ws22{word-spacing:1.877333pt;}
.ws5c{word-spacing:1.962667pt;}
.ws30{word-spacing:2.090667pt;}
.ws72{word-spacing:2.133333pt;}
.ws10{word-spacing:2.176000pt;}
.wsf{word-spacing:2.261333pt;}
.ws61{word-spacing:2.304000pt;}
.ws5a{word-spacing:2.389333pt;}
.ws14{word-spacing:2.474667pt;}
.ws47{word-spacing:2.517333pt;}
.ws13{word-spacing:2.560000pt;}
.ws1b{word-spacing:2.730667pt;}
.ws15{word-spacing:2.773333pt;}
.ws1a{word-spacing:2.816000pt;}
.ws4{word-spacing:2.858667pt;}
.ws2c{word-spacing:2.901333pt;}
.ws65{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.029333pt;}
.ws2d{word-spacing:3.114667pt;}
.ws4c{word-spacing:3.370667pt;}
.ws20{word-spacing:3.498667pt;}
.ws1d{word-spacing:3.797333pt;}
.ws60{word-spacing:3.840000pt;}
.ws2e{word-spacing:3.925333pt;}
.ws35{word-spacing:4.181333pt;}
.ws2f{word-spacing:4.224000pt;}
.ws69{word-spacing:4.352000pt;}
.ws50{word-spacing:4.394667pt;}
.ws44{word-spacing:4.437333pt;}
.ws49{word-spacing:4.522667pt;}
.ws3a{word-spacing:4.565333pt;}
.ws9{word-spacing:4.650667pt;}
.ws6b{word-spacing:4.693333pt;}
.ws56{word-spacing:4.821333pt;}
.ws66{word-spacing:4.992000pt;}
.ws26{word-spacing:5.077333pt;}
.ws36{word-spacing:5.120000pt;}
.ws57{word-spacing:5.248000pt;}
.ws40{word-spacing:5.589333pt;}
.ws4a{word-spacing:5.674667pt;}
.ws67{word-spacing:5.930667pt;}
.ws55{word-spacing:6.186667pt;}
.wsa{word-spacing:6.442667pt;}
.wsc{word-spacing:6.784000pt;}
.ws38{word-spacing:6.826667pt;}
.ws39{word-spacing:6.912000pt;}
.ws42{word-spacing:6.954667pt;}
.ws5d{word-spacing:7.381333pt;}
.ws68{word-spacing:7.466667pt;}
.ws5{word-spacing:7.509333pt;}
.ws21{word-spacing:7.978667pt;}
.ws43{word-spacing:8.746667pt;}
.ws71{word-spacing:9.642667pt;}
.ws34{word-spacing:11.221333pt;}
.ws2a{word-spacing:11.520000pt;}
.ws29{word-spacing:11.904000pt;}
.wsb{word-spacing:11.989333pt;}
.ws2b{word-spacing:12.885333pt;}
.ws1f{word-spacing:13.909333pt;}
._0{margin-left:-54.058667pt;}
._9{margin-left:-51.712000pt;}
._d{margin-left:-4.860800pt;}
._b{margin-left:-3.221333pt;}
._2{margin-left:-2.308267pt;}
._1{margin-left:-0.896000pt;}
._3{width:1.466133pt;}
._5{width:2.679467pt;}
._8{width:3.605333pt;}
._4{width:4.504000pt;}
._7{width:5.454400pt;}
._a{width:6.376533pt;}
._c{width:7.298133pt;}
._6{width:15.520000pt;}
._f{width:84.000000pt;}
._e{width:90.794667pt;}
._10{width:102.666667pt;}
._11{width:203.392000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:27.615067pt;}
.y7{bottom:41.644133pt;}
.y5b{bottom:101.428000pt;}
.y89{bottom:106.427333pt;}
.y5a{bottom:117.428000pt;}
.y88{bottom:122.427333pt;}
.y59{bottom:133.428000pt;}
.y87{bottom:138.427333pt;}
.y58{bottom:149.428000pt;}
.y86{bottom:154.427333pt;}
.y57{bottom:165.428000pt;}
.y85{bottom:170.427333pt;}
.y56{bottom:183.317733pt;}
.y84{bottom:186.427333pt;}
.y55{bottom:199.317733pt;}
.y83{bottom:202.427333pt;}
.yb5{bottom:204.779067pt;}
.y54{bottom:215.317733pt;}
.y82{bottom:218.427333pt;}
.yb4{bottom:220.779067pt;}
.y53{bottom:231.317733pt;}
.y81{bottom:234.427333pt;}
.yb3{bottom:236.779067pt;}
.y52{bottom:249.207600pt;}
.y80{bottom:250.427333pt;}
.yb2{bottom:252.779067pt;}
.y51{bottom:265.207600pt;}
.y7f{bottom:266.427333pt;}
.yd4{bottom:268.315333pt;}
.yb1{bottom:268.779067pt;}
.y50{bottom:281.207600pt;}
.y7e{bottom:282.427333pt;}
.y29{bottom:283.728800pt;}
.yd3{bottom:284.315333pt;}
.yb0{bottom:284.779067pt;}
.y7d{bottom:298.427333pt;}
.y4f{bottom:299.097333pt;}
.y28{bottom:299.728800pt;}
.yd2{bottom:300.315333pt;}
.yaf{bottom:300.779067pt;}
.y4e{bottom:315.097333pt;}
.y27{bottom:315.728800pt;}
.yae{bottom:316.779067pt;}
.y7c{bottom:325.766000pt;}
.yd1{bottom:327.653867pt;}
.y4d{bottom:331.097333pt;}
.y26{bottom:331.728800pt;}
.yad{bottom:338.448267pt;}
.y7b{bottom:341.766000pt;}
.yd0{bottom:343.653867pt;}
.y4c{bottom:347.097333pt;}
.y25{bottom:347.728667pt;}
.y6{bottom:352.139067pt;}
.yac{bottom:354.448267pt;}
.y7a{bottom:357.765867pt;}
.y4b{bottom:363.097333pt;}
.y24{bottom:363.728667pt;}
.yab{bottom:370.448267pt;}
.ycf{bottom:370.992400pt;}
.y79{bottom:373.765867pt;}
.y5{bottom:374.539067pt;}
.y4a{bottom:380.987067pt;}
.y23{bottom:385.062000pt;}
.yaa{bottom:386.448267pt;}
.yce{bottom:386.992400pt;}
.y78{bottom:389.765867pt;}
.y49{bottom:396.987067pt;}
.ya9{bottom:402.448267pt;}
.ycd{bottom:402.992400pt;}
.y48{bottom:412.987067pt;}
.y77{bottom:417.104533pt;}
.ycc{bottom:418.992400pt;}
.ya8{bottom:424.117600pt;}
.y22{bottom:428.295600pt;}
.y47{bottom:428.987067pt;}
.y76{bottom:433.104533pt;}
.ycb{bottom:434.992400pt;}
.ya7{bottom:440.117600pt;}
.y46{bottom:444.987067pt;}
.y75{bottom:449.104533pt;}
.y21{bottom:449.628933pt;}
.ya6{bottom:456.117600pt;}
.yca{bottom:462.331067pt;}
.y45{bottom:462.876933pt;}
.y74{bottom:470.773867pt;}
.ya5{bottom:472.117600pt;}
.yc9{bottom:478.331067pt;}
.y44{bottom:478.876933pt;}
.y73{bottom:486.773867pt;}
.ya4{bottom:488.117600pt;}
.y20{bottom:492.862533pt;}
.yc8{bottom:494.331067pt;}
.y43{bottom:494.876933pt;}
.y72{bottom:502.773867pt;}
.ya3{bottom:504.117600pt;}
.y42{bottom:512.766667pt;}
.y1f{bottom:514.195867pt;}
.y71{bottom:518.773867pt;}
.yc7{bottom:521.669600pt;}
.y41{bottom:528.766667pt;}
.y70{bottom:534.773867pt;}
.yc6{bottom:537.669600pt;}
.ya2{bottom:542.794800pt;}
.y40{bottom:544.766667pt;}
.ydb{bottom:546.278533pt;}
.y1e{bottom:553.650000pt;}
.yc5{bottom:553.669600pt;}
.y6f{bottom:556.443067pt;}
.y3f{bottom:560.766667pt;}
.yc4{bottom:569.669600pt;}
.y1d{bottom:571.539733pt;}
.y6e{bottom:572.443067pt;}
.yda{bottom:575.947867pt;}
.y3e{bottom:576.766667pt;}
.yc3{bottom:585.669600pt;}
.y6d{bottom:588.443067pt;}
.y1c{bottom:589.429467pt;}
.y3d{bottom:594.656400pt;}
.yc2{bottom:601.669600pt;}
.ya1{bottom:603.477200pt;}
.y6c{bottom:604.443067pt;}
.yd9{bottom:605.617200pt;}
.y3c{bottom:610.656400pt;}
.y1b{bottom:610.762800pt;}
.yc1{bottom:617.669600pt;}
.ya0{bottom:619.477200pt;}
.y3b{bottom:632.325733pt;}
.yc0{bottom:633.669600pt;}
.yd8{bottom:635.286400pt;}
.y6b{bottom:643.120267pt;}
.y9f{bottom:646.815733pt;}
.y3a{bottom:648.325733pt;}
.y1a{bottom:650.216933pt;}
.y4{bottom:660.067600pt;}
.ybf{bottom:661.008133pt;}
.y9e{bottom:662.815733pt;}
.y39{bottom:664.325733pt;}
.yd7{bottom:664.955733pt;}
.y19{bottom:668.106667pt;}
.ybe{bottom:677.008133pt;}
.y38{bottom:685.994933pt;}
.y18{bottom:685.996400pt;}
.y9d{bottom:690.154400pt;}
.ybd{bottom:693.008267pt;}
.y6a{bottom:694.353867pt;}
.y37{bottom:701.994933pt;}
.y3{bottom:702.734267pt;}
.y17{bottom:703.886267pt;}
.y9c{bottom:706.154400pt;}
.yd6{bottom:711.632933pt;}
.y69{bottom:712.243600pt;}
.ybc{bottom:720.346800pt;}
.y16{bottom:721.776000pt;}
.y9b{bottom:722.154400pt;}
.y68{bottom:730.133333pt;}
.ybb{bottom:736.346800pt;}
.y9a{bottom:738.154400pt;}
.yd5{bottom:738.299600pt;}
.y15{bottom:739.665733pt;}
.y36{bottom:740.672267pt;}
.y2{bottom:745.400800pt;}
.y67{bottom:748.023067pt;}
.yba{bottom:752.346800pt;}
.y99{bottom:754.154400pt;}
.y14{bottom:757.555467pt;}
.y66{bottom:765.912933pt;}
.yb9{bottom:768.346800pt;}
.y98{bottom:770.154400pt;}
.y13{bottom:775.445333pt;}
.y65{bottom:783.802667pt;}
.yb8{bottom:784.346800pt;}
.y97{bottom:786.154400pt;}
.y1{bottom:788.067467pt;}
.y12{bottom:793.335067pt;}
.y35{bottom:795.685333pt;}
.y64{bottom:805.472000pt;}
.y11{bottom:811.224800pt;}
.y34{bottom:811.685333pt;}
.y96{bottom:813.493067pt;}
.y63{bottom:827.141333pt;}
.y33{bottom:827.685333pt;}
.y10{bottom:829.114667pt;}
.y95{bottom:829.493067pt;}
.y62{bottom:843.141333pt;}
.y32{bottom:843.685333pt;}
.y94{bottom:845.493067pt;}
.yf{bottom:847.004400pt;}
.y61{bottom:859.141333pt;}
.y31{bottom:859.685333pt;}
.y93{bottom:861.493067pt;}
.ye{bottom:864.894267pt;}
.y60{bottom:875.141333pt;}
.y30{bottom:875.685333pt;}
.y92{bottom:877.493067pt;}
.yd{bottom:886.563467pt;}
.y5f{bottom:891.141333pt;}
.yb7{bottom:891.685333pt;}
.y91{bottom:893.493067pt;}
.y2f{bottom:897.354667pt;}
.y5e{bottom:907.141333pt;}
.yb6{bottom:907.685333pt;}
.yc{bottom:912.012267pt;}
.y2e{bottom:913.354667pt;}
.y90{bottom:920.831600pt;}
.y5d{bottom:923.141333pt;}
.y2d{bottom:929.354667pt;}
.yb{bottom:929.902000pt;}
.y8f{bottom:936.831600pt;}
.y2c{bottom:945.354667pt;}
.ya{bottom:951.571333pt;}
.y8e{bottom:952.831600pt;}
.y2b{bottom:961.354667pt;}
.y5c{bottom:961.818533pt;}
.y8d{bottom:968.831600pt;}
.y9{bottom:972.904667pt;}
.y8c{bottom:984.831600pt;}
.y2a{bottom:1000.031867pt;}
.y8b{bottom:1000.831600pt;}
.y8a{bottom:1016.831600pt;}
.h9{height:32.597333pt;}
.h4{height:34.176000pt;}
.h8{height:39.850667pt;}
.h5{height:40.192000pt;}
.h3{height:58.538667pt;}
.hb{height:62.869333pt;}
.ha{height:65.333333pt;}
.h6{height:70.336000pt;}
.h7{height:100.480000pt;}
.h2{height:150.720000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:71.716800pt;}
.x1{left:75.590533pt;}
.x6{left:86.257200pt;}
.x9{left:90.708667pt;}
.x8{left:94.488133pt;}
.x3{left:176.472933pt;}
.x7{left:394.434933pt;}
.x4{left:395.475067pt;}
.x5{left:574.678533pt;}
}




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