
    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_2c87d70034de48282d0a8740.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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_524cb601827d53c3decfa67e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8fe0003bd134b4d1e5244809.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_342128d06168abdc4966f04c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90aff26f58a30ca23770d941.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3227e23ce8c2338d05ff30b4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_060f4b457c88bd25b625124a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_e528b6090633f1fb8f6d5a26.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_36fe34ca9ff976db427f2d91.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_02338e12b17089f338a1d1c8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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);}
.v1{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.089400px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.423360px;}
.lsa{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.869760px;}
.lse{letter-spacing:2.160000px;}
.ls9{letter-spacing:3.780000px;}
.lsd{letter-spacing:7.920000px;}
.lsc{letter-spacing:9.360000px;}
.ls8{letter-spacing:10.800000px;}
.ls10{letter-spacing:16.306560px;}
.lsf{letter-spacing:46.546560px;}
.ls7{letter-spacing:63.826560px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws9{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.543360px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-3.879840px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._1b{width:4.438080px;}
._5{width:5.474400px;}
._1a{width:7.112160px;}
._11{width:8.147520px;}
._f{width:9.198720px;}
._10{width:10.575360px;}
._e{width:11.592000px;}
._18{width:12.916800px;}
._17{width:14.031360px;}
._d{width:15.428160px;}
._6{width:16.591680px;}
._8{width:17.807040px;}
._7{width:18.884160px;}
._a{width:20.197440px;}
._9{width:21.350400px;}
._12{width:22.600320px;}
._13{width:24.282720px;}
._1e{width:25.472160px;}
._15{width:26.576640px;}
._16{width:28.209600px;}
._1d{width:30.084480px;}
._19{width:36.472320px;}
._14{width:37.551840px;}
._c{width:38.568480px;}
._b{width:39.614400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.595500px;}
.y5{bottom:3.960000px;}
.y5a{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y57{bottom:8.995500px;}
.y4{bottom:21.240000px;}
.y56{bottom:24.475500px;}
.y4a{bottom:33.151500px;}
.y43{bottom:38.520000px;}
.y55{bottom:41.794500px;}
.y3{bottom:44.280000px;}
.y49{bottom:54.034500px;}
.y42{bottom:55.800000px;}
.y54{bottom:57.634500px;}
.y7{bottom:57.636000px;}
.y48{bottom:66.994500px;}
.y41{bottom:73.080000px;}
.y53{bottom:73.474500px;}
.y52{bottom:86.074500px;}
.y47{bottom:86.794500px;}
.y40{bottom:90.360000px;}
.y51{bottom:92.554500px;}
.y58{bottom:95.796000px;}
.y8e{bottom:102.996000px;}
.y3f{bottom:107.325000px;}
.y50{bottom:108.394500px;}
.y44{bottom:109.120500px;}
.yf5{bottom:110.916000px;}
.yc2{bottom:111.276000px;}
.y4f{bottom:123.874500px;}
.y3e{bottom:124.605000px;}
.yf4{bottom:128.196000px;}
.yc1{bottom:128.556000px;}
.y8d{bottom:129.276000px;}
.y4e{bottom:139.354500px;}
.y3d{bottom:141.885000px;}
.yf3{bottom:145.512000px;}
.yc0{bottom:145.872000px;}
.y46{bottom:148.714500px;}
.y4d{bottom:154.834500px;}
.y8c{bottom:155.955000px;}
.y3c{bottom:159.165000px;}
.y45{bottom:159.514500px;}
.ybf{bottom:162.795000px;}
.y4c{bottom:169.984500px;}
.y8b{bottom:173.235000px;}
.y3b{bottom:176.445000px;}
.yf2{bottom:180.075000px;}
.ybe{bottom:189.435000px;}
.y8a{bottom:190.515000px;}
.y3a{bottom:193.725000px;}
.yf1{bottom:197.355000px;}
.ybd{bottom:206.715000px;}
.y89{bottom:207.795000px;}
.y39{bottom:211.005000px;}
.yf0{bottom:214.275000px;}
.ybc{bottom:223.995000px;}
.y88{bottom:225.075000px;}
.y38{bottom:228.285000px;}
.yef{bottom:231.555000px;}
.y87{bottom:241.995000px;}
.y37{bottom:245.595000px;}
.yee{bottom:248.835000px;}
.y86{bottom:258.915000px;}
.ybb{bottom:260.355000px;}
.y36{bottom:262.875000px;}
.yed{bottom:266.115000px;}
.y85{bottom:276.225000px;}
.yba{bottom:278.745000px;}
.y35{bottom:280.155000px;}
.yec{bottom:283.425000px;}
.yb9{bottom:297.105000px;}
.y34{bottom:297.435000px;}
.ye{bottom:298.185000px;}
.yeb{bottom:300.705000px;}
.y84{bottom:302.865000px;}
.yb8{bottom:314.025000px;}
.y33{bottom:314.355000px;}
.yea{bottom:317.985000px;}
.y83{bottom:320.145000px;}
.y32{bottom:331.635000px;}
.ye9{bottom:334.905000px;}
.y82{bottom:337.425000px;}
.yb7{bottom:340.665000px;}
.y31{bottom:348.555000px;}
.y81{bottom:354.705000px;}
.yb6{bottom:357.945000px;}
.ye8{bottom:361.545000px;}
.y80{bottom:371.985000px;}
.y1c{bottom:374.145000px;}
.y30{bottom:374.505000px;}
.yb5{bottom:375.225000px;}
.ye7{bottom:378.825000px;}
.y7f{bottom:389.265000px;}
.y2f{bottom:389.985000px;}
.yb4{bottom:392.505000px;}
.ye6{bottom:396.105000px;}
.y1b{bottom:398.265000px;}
.y2e{bottom:405.825000px;}
.y7e{bottom:406.590000px;}
.yb3{bottom:409.470000px;}
.ye5{bottom:413.070000px;}
.y2d{bottom:421.305000px;}
.y1a{bottom:422.385000px;}
.y7d{bottom:423.870000px;}
.yb2{bottom:426.750000px;}
.y2c{bottom:436.785000px;}
.ye4{bottom:439.350000px;}
.y7c{bottom:441.150000px;}
.y19{bottom:446.505000px;}
.y2b{bottom:452.265000px;}
.yb1{bottom:453.030000px;}
.ye3{bottom:456.630000px;}
.y7b{bottom:457.710000px;}
.y2a{bottom:467.745000px;}
.yb0{bottom:470.310000px;}
.y18{bottom:470.625000px;}
.ye2{bottom:473.910000px;}
.y29{bottom:483.225000px;}
.y7a{bottom:484.350000px;}
.yaf{bottom:487.590000px;}
.y117{bottom:487.950000px;}
.ye1{bottom:490.830000px;}
.y17{bottom:494.745000px;}
.y28{bottom:498.705000px;}
.y79{bottom:501.630000px;}
.y116{bottom:504.150000px;}
.yae{bottom:504.870000px;}
.y27{bottom:514.230000px;}
.ye0{bottom:517.470000px;}
.y16{bottom:518.910000px;}
.y115{bottom:521.430000px;}
.yad{bottom:522.150000px;}
.y26{bottom:530.070000px;}
.ydf{bottom:534.750000px;}
.y78{bottom:536.190000px;}
.y114{bottom:538.740000px;}
.yac{bottom:539.100000px;}
.y15{bottom:543.030000px;}
.y25{bottom:545.550000px;}
.yde{bottom:552.060000px;}
.y77{bottom:553.500000px;}
.y113{bottom:556.020000px;}
.y24{bottom:561.030000px;}
.yab{bottom:565.740000px;}
.y14{bottom:567.150000px;}
.ydd{bottom:569.340000px;}
.y76{bottom:570.420000px;}
.y112{bottom:573.300000px;}
.y23{bottom:576.510000px;}
.yaa{bottom:583.020000px;}
.ydc{bottom:586.620000px;}
.y111{bottom:590.580000px;}
.y13{bottom:591.270000px;}
.y22{bottom:591.990000px;}
.y75{bottom:597.060000px;}
.ya9{bottom:600.300000px;}
.ydb{bottom:603.540000px;}
.y21{bottom:607.470000px;}
.y110{bottom:607.860000px;}
.y74{bottom:614.340000px;}
.y12{bottom:615.750000px;}
.ya8{bottom:617.580000px;}
.y20{bottom:622.950000px;}
.y10f{bottom:625.140000px;}
.yda{bottom:630.180000px;}
.y73{bottom:631.620000px;}
.ya7{bottom:634.860000px;}
.y1f{bottom:638.460000px;}
.y11{bottom:639.900000px;}
.y10e{bottom:642.420000px;}
.yd9{bottom:647.100000px;}
.y72{bottom:648.900000px;}
.ya6{bottom:652.140000px;}
.y1e{bottom:654.300000px;}
.y10d{bottom:659.700000px;}
.y10{bottom:664.020000px;}
.yd8{bottom:664.380000px;}
.y71{bottom:665.820000px;}
.ya5{bottom:668.700000px;}
.y10c{bottom:677.010000px;}
.yd7{bottom:681.690000px;}
.y70{bottom:683.130000px;}
.y1d{bottom:684.900000px;}
.yf{bottom:688.140000px;}
.y10b{bottom:693.930000px;}
.ya4{bottom:695.370000px;}
.yd6{bottom:698.970000px;}
.y6f{bottom:700.050000px;}
.y10a{bottom:711.210000px;}
.ya3{bottom:712.650000px;}
.yd5{bottom:715.890000px;}
.y6e{bottom:726.690000px;}
.y109{bottom:728.490000px;}
.ya2{bottom:729.930000px;}
.yd4{bottom:742.530000px;}
.y6d{bottom:743.970000px;}
.y108{bottom:745.770000px;}
.ya1{bottom:747.210000px;}
.yd3{bottom:759.810000px;}
.y6c{bottom:761.250000px;}
.y107{bottom:763.050000px;}
.ya0{bottom:764.490000px;}
.yd2{bottom:776.730000px;}
.y6b{bottom:778.530000px;}
.y106{bottom:780.330000px;}
.y9f{bottom:781.410000px;}
.y6a{bottom:795.810000px;}
.y105{bottom:797.610000px;}
.yd1{bottom:803.415000px;}
.y9e{bottom:808.095000px;}
.y69{bottom:813.135000px;}
.y104{bottom:814.935000px;}
.yd0{bottom:820.695000px;}
.y9d{bottom:825.375000px;}
.y68{bottom:830.415000px;}
.y103{bottom:832.215000px;}
.ycf{bottom:837.975000px;}
.y9c{bottom:842.655000px;}
.y67{bottom:847.335000px;}
.y102{bottom:849.135000px;}
.yce{bottom:855.255000px;}
.y9b{bottom:859.575000px;}
.ycd{bottom:871.815000px;}
.y66{bottom:873.615000px;}
.y101{bottom:875.775000px;}
.y9a{bottom:885.855000px;}
.y65{bottom:890.895000px;}
.y100{bottom:892.695000px;}
.ycc{bottom:898.455000px;}
.y99{bottom:903.135000px;}
.y64{bottom:908.175000px;}
.yff{bottom:909.975000px;}
.ycb{bottom:915.735000px;}
.y98{bottom:920.415000px;}
.y63{bottom:925.095000px;}
.yfe{bottom:928.335000px;}
.yca{bottom:933.045000px;}
.y97{bottom:938.805000px;}
.yfd{bottom:945.645000px;}
.yc9{bottom:950.325000px;}
.y62{bottom:951.765000px;}
.y96{bottom:957.165000px;}
.yfc{bottom:964.005000px;}
.yc8{bottom:967.245000px;}
.y61{bottom:970.125000px;}
.y95{bottom:975.525000px;}
.yfb{bottom:981.285000px;}
.y60{bottom:988.485000px;}
.y94{bottom:993.885000px;}
.yfa{bottom:999.645000px;}
.y5f{bottom:1006.485000px;}
.yd{bottom:1007.925000px;}
.y93{bottom:1010.805000px;}
.yc7{bottom:1011.165000px;}
.yc{bottom:1015.845000px;}
.yf9{bottom:1016.925000px;}
.yc6{bottom:1028.445000px;}
.yb{bottom:1033.125000px;}
.yf8{bottom:1035.285000px;}
.y92{bottom:1037.445000px;}
.yc5{bottom:1045.725000px;}
.ya{bottom:1050.045000px;}
.y5e{bottom:1051.485000px;}
.yf7{bottom:1052.565000px;}
.y91{bottom:1054.725000px;}
.yc4{bottom:1062.645000px;}
.y9{bottom:1069.530000px;}
.y5d{bottom:1069.890000px;}
.yf6{bottom:1070.970000px;}
.y90{bottom:1072.050000px;}
.y5c{bottom:1087.890000px;}
.y8{bottom:1088.250000px;}
.y8f{bottom:1088.970000px;}
.y59{bottom:1091.520000px;}
.y5b{bottom:1105.890000px;}
.yc3{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h13{height:5.650313px;}
.h9{height:18.372656px;}
.h6{height:24.348516px;}
.h14{height:27.720000px;}
.h11{height:29.678906px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.he{height:42.229688px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h5{height:59.357813px;}
.hf{height:60.155156px;}
.h8{height:60.952500px;}
.h16{height:62.163910px;}
.h15{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h10{height:188.325000px;}
.ha{height:697.485000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x15{left:17.266500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:29.146500px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x6{left:48.615000px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1d{left:57.262500px;}
.x19{left:62.295000px;}
.x13{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x12{left:90.025500px;}
.x22{left:91.836000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x1a{left:106.945500px;}
.x21{left:113.436000px;}
.x23{left:118.836000px;}
.x11{left:124.585500px;}
.x20{left:140.472000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xb{left:223.305000px;}
.xc{left:590.295000px;}
.xa{left:692.565000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.376320pt;}
.lsa{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.773120pt;}
.lse{letter-spacing:1.920000pt;}
.ls9{letter-spacing:3.360000pt;}
.lsd{letter-spacing:7.040000pt;}
.lsc{letter-spacing:8.320000pt;}
.ls8{letter-spacing:9.600000pt;}
.ls10{letter-spacing:14.494720pt;}
.lsf{letter-spacing:41.374720pt;}
.ls7{letter-spacing:56.734720pt;}
.ws8{word-spacing:-53.760000pt;}
.ws9{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.816320pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-3.448747pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._1b{width:3.944960pt;}
._5{width:4.866133pt;}
._1a{width:6.321920pt;}
._11{width:7.242240pt;}
._f{width:8.176640pt;}
._10{width:9.400320pt;}
._e{width:10.304000pt;}
._18{width:11.481600pt;}
._17{width:12.472320pt;}
._d{width:13.713920pt;}
._6{width:14.748160pt;}
._8{width:15.828480pt;}
._7{width:16.785920pt;}
._a{width:17.953280pt;}
._9{width:18.978133pt;}
._12{width:20.089173pt;}
._13{width:21.584640pt;}
._1e{width:22.641920pt;}
._15{width:23.623680pt;}
._16{width:25.075200pt;}
._1d{width:26.741760pt;}
._19{width:32.419840pt;}
._14{width:33.379413pt;}
._c{width:34.283093pt;}
._b{width:35.212800pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.196000pt;}
.y5{bottom:3.520000pt;}
.y5a{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y57{bottom:7.996000pt;}
.y4{bottom:18.880000pt;}
.y56{bottom:21.756000pt;}
.y4a{bottom:29.468000pt;}
.y43{bottom:34.240000pt;}
.y55{bottom:37.150667pt;}
.y3{bottom:39.360000pt;}
.y49{bottom:48.030667pt;}
.y42{bottom:49.600000pt;}
.y54{bottom:51.230667pt;}
.y7{bottom:51.232000pt;}
.y48{bottom:59.550667pt;}
.y41{bottom:64.960000pt;}
.y53{bottom:65.310667pt;}
.y52{bottom:76.510667pt;}
.y47{bottom:77.150667pt;}
.y40{bottom:80.320000pt;}
.y51{bottom:82.270667pt;}
.y58{bottom:85.152000pt;}
.y8e{bottom:91.552000pt;}
.y3f{bottom:95.400000pt;}
.y50{bottom:96.350667pt;}
.y44{bottom:96.996000pt;}
.yf5{bottom:98.592000pt;}
.yc2{bottom:98.912000pt;}
.y4f{bottom:110.110667pt;}
.y3e{bottom:110.760000pt;}
.yf4{bottom:113.952000pt;}
.yc1{bottom:114.272000pt;}
.y8d{bottom:114.912000pt;}
.y4e{bottom:123.870667pt;}
.y3d{bottom:126.120000pt;}
.yf3{bottom:129.344000pt;}
.yc0{bottom:129.664000pt;}
.y46{bottom:132.190667pt;}
.y4d{bottom:137.630667pt;}
.y8c{bottom:138.626667pt;}
.y3c{bottom:141.480000pt;}
.y45{bottom:141.790667pt;}
.ybf{bottom:144.706667pt;}
.y4c{bottom:151.097333pt;}
.y8b{bottom:153.986667pt;}
.y3b{bottom:156.840000pt;}
.yf2{bottom:160.066667pt;}
.ybe{bottom:168.386667pt;}
.y8a{bottom:169.346667pt;}
.y3a{bottom:172.200000pt;}
.yf1{bottom:175.426667pt;}
.ybd{bottom:183.746667pt;}
.y89{bottom:184.706667pt;}
.y39{bottom:187.560000pt;}
.yf0{bottom:190.466667pt;}
.ybc{bottom:199.106667pt;}
.y88{bottom:200.066667pt;}
.y38{bottom:202.920000pt;}
.yef{bottom:205.826667pt;}
.y87{bottom:215.106667pt;}
.y37{bottom:218.306667pt;}
.yee{bottom:221.186667pt;}
.y86{bottom:230.146667pt;}
.ybb{bottom:231.426667pt;}
.y36{bottom:233.666667pt;}
.yed{bottom:236.546667pt;}
.y85{bottom:245.533333pt;}
.yba{bottom:247.773333pt;}
.y35{bottom:249.026667pt;}
.yec{bottom:251.933333pt;}
.yb9{bottom:264.093333pt;}
.y34{bottom:264.386667pt;}
.ye{bottom:265.053333pt;}
.yeb{bottom:267.293333pt;}
.y84{bottom:269.213333pt;}
.yb8{bottom:279.133333pt;}
.y33{bottom:279.426667pt;}
.yea{bottom:282.653333pt;}
.y83{bottom:284.573333pt;}
.y32{bottom:294.786667pt;}
.ye9{bottom:297.693333pt;}
.y82{bottom:299.933333pt;}
.yb7{bottom:302.813333pt;}
.y31{bottom:309.826667pt;}
.y81{bottom:315.293333pt;}
.yb6{bottom:318.173333pt;}
.ye8{bottom:321.373333pt;}
.y80{bottom:330.653333pt;}
.y1c{bottom:332.573333pt;}
.y30{bottom:332.893333pt;}
.yb5{bottom:333.533333pt;}
.ye7{bottom:336.733333pt;}
.y7f{bottom:346.013333pt;}
.y2f{bottom:346.653333pt;}
.yb4{bottom:348.893333pt;}
.ye6{bottom:352.093333pt;}
.y1b{bottom:354.013333pt;}
.y2e{bottom:360.733333pt;}
.y7e{bottom:361.413333pt;}
.yb3{bottom:363.973333pt;}
.ye5{bottom:367.173333pt;}
.y2d{bottom:374.493333pt;}
.y1a{bottom:375.453333pt;}
.y7d{bottom:376.773333pt;}
.yb2{bottom:379.333333pt;}
.y2c{bottom:388.253333pt;}
.ye4{bottom:390.533333pt;}
.y7c{bottom:392.133333pt;}
.y19{bottom:396.893333pt;}
.y2b{bottom:402.013333pt;}
.yb1{bottom:402.693333pt;}
.ye3{bottom:405.893333pt;}
.y7b{bottom:406.853333pt;}
.y2a{bottom:415.773333pt;}
.yb0{bottom:418.053333pt;}
.y18{bottom:418.333333pt;}
.ye2{bottom:421.253333pt;}
.y29{bottom:429.533333pt;}
.y7a{bottom:430.533333pt;}
.yaf{bottom:433.413333pt;}
.y117{bottom:433.733333pt;}
.ye1{bottom:436.293333pt;}
.y17{bottom:439.773333pt;}
.y28{bottom:443.293333pt;}
.y79{bottom:445.893333pt;}
.y116{bottom:448.133333pt;}
.yae{bottom:448.773333pt;}
.y27{bottom:457.093333pt;}
.ye0{bottom:459.973333pt;}
.y16{bottom:461.253333pt;}
.y115{bottom:463.493333pt;}
.yad{bottom:464.133333pt;}
.y26{bottom:471.173333pt;}
.ydf{bottom:475.333333pt;}
.y78{bottom:476.613333pt;}
.y114{bottom:478.880000pt;}
.yac{bottom:479.200000pt;}
.y15{bottom:482.693333pt;}
.y25{bottom:484.933333pt;}
.yde{bottom:490.720000pt;}
.y77{bottom:492.000000pt;}
.y113{bottom:494.240000pt;}
.y24{bottom:498.693333pt;}
.yab{bottom:502.880000pt;}
.y14{bottom:504.133333pt;}
.ydd{bottom:506.080000pt;}
.y76{bottom:507.040000pt;}
.y112{bottom:509.600000pt;}
.y23{bottom:512.453333pt;}
.yaa{bottom:518.240000pt;}
.ydc{bottom:521.440000pt;}
.y111{bottom:524.960000pt;}
.y13{bottom:525.573333pt;}
.y22{bottom:526.213333pt;}
.y75{bottom:530.720000pt;}
.ya9{bottom:533.600000pt;}
.ydb{bottom:536.480000pt;}
.y21{bottom:539.973333pt;}
.y110{bottom:540.320000pt;}
.y74{bottom:546.080000pt;}
.y12{bottom:547.333333pt;}
.ya8{bottom:548.960000pt;}
.y20{bottom:553.733333pt;}
.y10f{bottom:555.680000pt;}
.yda{bottom:560.160000pt;}
.y73{bottom:561.440000pt;}
.ya7{bottom:564.320000pt;}
.y1f{bottom:567.520000pt;}
.y11{bottom:568.800000pt;}
.y10e{bottom:571.040000pt;}
.yd9{bottom:575.200000pt;}
.y72{bottom:576.800000pt;}
.ya6{bottom:579.680000pt;}
.y1e{bottom:581.600000pt;}
.y10d{bottom:586.400000pt;}
.y10{bottom:590.240000pt;}
.yd8{bottom:590.560000pt;}
.y71{bottom:591.840000pt;}
.ya5{bottom:594.400000pt;}
.y10c{bottom:601.786667pt;}
.yd7{bottom:605.946667pt;}
.y70{bottom:607.226667pt;}
.y1d{bottom:608.800000pt;}
.yf{bottom:611.680000pt;}
.y10b{bottom:616.826667pt;}
.ya4{bottom:618.106667pt;}
.yd6{bottom:621.306667pt;}
.y6f{bottom:622.266667pt;}
.y10a{bottom:632.186667pt;}
.ya3{bottom:633.466667pt;}
.yd5{bottom:636.346667pt;}
.y6e{bottom:645.946667pt;}
.y109{bottom:647.546667pt;}
.ya2{bottom:648.826667pt;}
.yd4{bottom:660.026667pt;}
.y6d{bottom:661.306667pt;}
.y108{bottom:662.906667pt;}
.ya1{bottom:664.186667pt;}
.yd3{bottom:675.386667pt;}
.y6c{bottom:676.666667pt;}
.y107{bottom:678.266667pt;}
.ya0{bottom:679.546667pt;}
.yd2{bottom:690.426667pt;}
.y6b{bottom:692.026667pt;}
.y106{bottom:693.626667pt;}
.y9f{bottom:694.586667pt;}
.y6a{bottom:707.386667pt;}
.y105{bottom:708.986667pt;}
.yd1{bottom:714.146667pt;}
.y9e{bottom:718.306667pt;}
.y69{bottom:722.786667pt;}
.y104{bottom:724.386667pt;}
.yd0{bottom:729.506667pt;}
.y9d{bottom:733.666667pt;}
.y68{bottom:738.146667pt;}
.y103{bottom:739.746667pt;}
.ycf{bottom:744.866667pt;}
.y9c{bottom:749.026667pt;}
.y67{bottom:753.186667pt;}
.y102{bottom:754.786667pt;}
.yce{bottom:760.226667pt;}
.y9b{bottom:764.066667pt;}
.ycd{bottom:774.946667pt;}
.y66{bottom:776.546667pt;}
.y101{bottom:778.466667pt;}
.y9a{bottom:787.426667pt;}
.y65{bottom:791.906667pt;}
.y100{bottom:793.506667pt;}
.ycc{bottom:798.626667pt;}
.y99{bottom:802.786667pt;}
.y64{bottom:807.266667pt;}
.yff{bottom:808.866667pt;}
.ycb{bottom:813.986667pt;}
.y98{bottom:818.146667pt;}
.y63{bottom:822.306667pt;}
.yfe{bottom:825.186667pt;}
.yca{bottom:829.373333pt;}
.y97{bottom:834.493333pt;}
.yfd{bottom:840.573333pt;}
.yc9{bottom:844.733333pt;}
.y62{bottom:846.013333pt;}
.y96{bottom:850.813333pt;}
.yfc{bottom:856.893333pt;}
.yc8{bottom:859.773333pt;}
.y61{bottom:862.333333pt;}
.y95{bottom:867.133333pt;}
.yfb{bottom:872.253333pt;}
.y60{bottom:878.653333pt;}
.y94{bottom:883.453333pt;}
.yfa{bottom:888.573333pt;}
.y5f{bottom:894.653333pt;}
.yd{bottom:895.933333pt;}
.y93{bottom:898.493333pt;}
.yc7{bottom:898.813333pt;}
.yc{bottom:902.973333pt;}
.yf9{bottom:903.933333pt;}
.yc6{bottom:914.173333pt;}
.yb{bottom:918.333333pt;}
.yf8{bottom:920.253333pt;}
.y92{bottom:922.173333pt;}
.yc5{bottom:929.533333pt;}
.ya{bottom:933.373333pt;}
.y5e{bottom:934.653333pt;}
.yf7{bottom:935.613333pt;}
.y91{bottom:937.533333pt;}
.yc4{bottom:944.573333pt;}
.y9{bottom:950.693333pt;}
.y5d{bottom:951.013333pt;}
.yf6{bottom:951.973333pt;}
.y90{bottom:952.933333pt;}
.y5c{bottom:967.013333pt;}
.y8{bottom:967.333333pt;}
.y8f{bottom:967.973333pt;}
.y59{bottom:970.240000pt;}
.y5b{bottom:983.013333pt;}
.yc3{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h13{height:5.022500pt;}
.h9{height:16.331250pt;}
.h6{height:21.643125pt;}
.h14{height:24.640000pt;}
.h11{height:26.381250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.he{height:37.537500pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h5{height:52.762500pt;}
.hf{height:53.471250pt;}
.h8{height:54.180000pt;}
.h16{height:55.256809pt;}
.h15{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h10{height:167.400000pt;}
.ha{height:619.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x15{left:15.348000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:25.908000pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x6{left:43.213333pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x19{left:55.373333pt;}
.x13{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x12{left:80.022667pt;}
.x22{left:81.632000pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x21{left:100.832000pt;}
.x23{left:105.632000pt;}
.x11{left:110.742667pt;}
.x20{left:124.864000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xb{left:198.493333pt;}
.xc{left:524.706667pt;}
.xa{left:615.613333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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