
    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_ac894d6f0dbd2092ce1d3a54.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_ecdb7f284a30e290ddf417d0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979004;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_0c973cdb782107a15db208ad.woff')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_a3d6177f97c92ba3ed10ca85.woff')format("woff");}.ff4{font-family:ff4;line-height:0.734375;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_57edf3bbbc64a28722ef6cf8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_47190d9818f7c199f58eb572.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_e87f46440a05c34f1ca7a098.woff')format("woff");}.ff7{font-family:ff7;line-height:0.851074;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_e1ee016fff66410a807f2ddc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.860840;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_9d6b923c4f9030af1e6cbfd0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.959473;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_7476d9a72517e9e25fcbfed6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_7550d4707d53b28fae5c8b6a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.721000;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_071322f4f2b4d8091861ebbb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.912000;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_6bbf6cd1f1934bd3a653edbf.woff')format("woff");}.ffd{font-family:ffd;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9de9036fcb78ded108ee20fe.woff')format("woff");}.ffe{font-family:ffe;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b8841010a68e93ea1d13b817.woff')format("woff");}.fff{font-family:fff;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e4b3ad9d10f38d78d37e4257.woff')format("woff");}.ff10{font-family:ff10;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_854d4e40ab3e07a8985278de.woff')format("woff");}.ff11{font-family:ff11;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fc8cad2a37f4d26c8269cb6a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.757812;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v3{vertical-align:-61.787100px;}
.v4{vertical-align:-2.268000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:76.945320px;}
.lsb{letter-spacing:-0.084000px;}
.lsa{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.046800px;}
.lsc{letter-spacing:-0.038400px;}
.ls10{letter-spacing:-0.031200px;}
.ls8{letter-spacing:-0.030000px;}
.lse{letter-spacing:-0.026400px;}
.lsf{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028800px;}
.ls6{letter-spacing:0.031200px;}
.ls3{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.084000px;}
.ls4{letter-spacing:0.172800px;}
.ls1{letter-spacing:134.918220px;}
.ls5{letter-spacing:134.922000px;}
.ls2{letter-spacing:204.463620px;}
.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;}
}
.ws3{word-spacing:-124.656000px;}
.ws11{word-spacing:-91.740000px;}
.ws0{word-spacing:-83.400000px;}
.ws4{word-spacing:-81.732000px;}
.ws2{word-spacing:-62.271994px;}
.ws8{word-spacing:-50.040000px;}
.ws7{word-spacing:-40.032000px;}
.ws9{word-spacing:-38.364000px;}
.ws10{word-spacing:-37.422000px;}
.wsa{word-spacing:-24.151838px;}
.ws1{word-spacing:-0.300000px;}
.ws5{word-spacing:-0.294000px;}
.ws6{word-spacing:-0.234000px;}
.wsb{word-spacing:-0.195159px;}
.wse{word-spacing:-0.125864px;}
.wsf{word-spacing:-0.072934px;}
.wsc{word-spacing:-0.044952px;}
.ws12{word-spacing:0.000000px;}
.wsd{word-spacing:16.650362px;}
._0{margin-left:-9419.790000px;}
._15{margin-left:-49.641600px;}
._17{margin-left:-42.067200px;}
._6{margin-left:-37.620000px;}
._11{margin-left:-34.272000px;}
._16{margin-left:-33.206751px;}
._5{margin-left:-29.982000px;}
._19{margin-left:-27.006000px;}
._1e{margin-left:-21.962400px;}
._f{margin-left:-19.320000px;}
._1b{margin-left:-18.060000px;}
._7{margin-left:-12.900000px;}
._3{margin-left:-9.360000px;}
._8{margin-left:-7.686000px;}
._2{margin-left:-6.168000px;}
._c{margin-left:-4.200000px;}
._4{margin-left:-3.000000px;}
._9{margin-left:-1.209600px;}
._1a{width:1.041000px;}
._10{width:2.460000px;}
._b{width:4.200000px;}
._1{width:5.628000px;}
._1d{width:7.128000px;}
._d{width:8.640000px;}
._18{width:10.823040px;}
._14{width:22.260000px;}
._a{width:24.019200px;}
._13{width:34.200000px;}
._12{width:59.712000px;}
._e{width:84.780000px;}
._1c{width:6132.634740px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(72,72,72);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(94,94,94);}
.fsf{font-size:41.690904px;}
.fs16{font-size:44.951564px;}
.fs17{font-size:72.709177px;}
.fs19{font-size:72.933906px;}
.fs13{font-size:86.877113px;}
.fs15{font-size:98.208911px;}
.fs12{font-size:114.000000px;}
.fs11{font-size:120.000000px;}
.fs18{font-size:125.864403px;}
.fs1a{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.fs10{font-size:138.000000px;}
.fse{font-size:144.000000px;}
.fsc{font-size:156.000000px;}
.fsd{font-size:162.000000px;}
.fs4{font-size:180.000000px;}
.fsa{font-size:192.000000px;}
.fs14{font-size:195.158733px;}
.fs7{font-size:223.999980px;}
.fsb{font-size:234.000000px;}
.fs8{font-size:270.000000px;}
.fs9{font-size:294.000000px;}
.fs1{font-size:300.000000px;}
.fs1b{font-size:330.000000px;}
.fs6{font-size:336.000000px;}
.fs0{font-size:420.000000px;}
.fs3{font-size:492.000000px;}
.fs5{font-size:864.000000px;}
.y31{bottom:-60.979500px;}
.y2b{bottom:-59.418000px;}
.y4a{bottom:-40.601399px;}
.y49{bottom:-30.178673px;}
.y0{bottom:0.000000px;}
.y64{bottom:2.364000px;}
.y68{bottom:9.436500px;}
.y5b{bottom:14.145000px;}
.y66{bottom:16.498500px;}
.y34{bottom:19.975500px;}
.yd{bottom:23.493000px;}
.yf{bottom:23.494500px;}
.y62{bottom:29.415000px;}
.yb{bottom:47.879445px;}
.y13{bottom:61.500000px;}
.y5d{bottom:74.695500px;}
.y16{bottom:81.651000px;}
.y5c{bottom:103.665000px;}
.ya{bottom:133.379445px;}
.y22{bottom:138.413475px;}
.y9{bottom:221.879400px;}
.y21{bottom:225.413550px;}
.y8{bottom:307.379400px;}
.y20{bottom:310.913550px;}
.y7{bottom:396.209100px;}
.y1f{bottom:399.743100px;}
.y6{bottom:482.879400px;}
.y1e{bottom:486.413550px;}
.y5{bottom:572.916000px;}
.y1d{bottom:573.413550px;}
.y4{bottom:658.416000px;}
.y1c{bottom:660.413550px;}
.y3{bottom:745.416000px;}
.y1b{bottom:745.913550px;}
.y2{bottom:834.245700px;}
.y1a{bottom:834.743100px;}
.y1{bottom:935.173050px;}
.y4e{bottom:1116.627600px;}
.y4c{bottom:1118.646900px;}
.y59{bottom:1132.021800px;}
.y4d{bottom:1155.627600px;}
.y4b{bottom:1157.646900px;}
.y58{bottom:1166.521800px;}
.y52{bottom:1191.109200px;}
.y57{bottom:1201.021800px;}
.y48{bottom:1210.761150px;}
.y51{bottom:1227.109200px;}
.y56{bottom:1235.521800px;}
.y50{bottom:1263.109200px;}
.y55{bottom:1270.021800px;}
.y6d{bottom:1278.757050px;}
.y4f{bottom:1299.109200px;}
.y54{bottom:1304.521800px;}
.y53{bottom:1339.021800px;}
.y5e{bottom:1522.576500px;}
.y32{bottom:1580.562000px;}
.y30{bottom:1599.007500px;}
.y75{bottom:1697.499000px;}
.y74{bottom:1782.549000px;}
.y73{bottom:1867.599000px;}
.y72{bottom:1952.649000px;}
.y71{bottom:2037.696000px;}
.y70{bottom:2122.786500px;}
.y46{bottom:2125.600500px;}
.y45{bottom:2178.100500px;}
.y6f{bottom:2207.836500px;}
.y6c{bottom:2208.072000px;}
.y43{bottom:2234.857500px;}
.y2d{bottom:2336.967000px;}
.y44{bottom:2422.749000px;}
.y42{bottom:2526.574500px;}
.y60{bottom:2579.149500px;}
.y6e{bottom:2588.044500px;}
.y5f{bottom:2631.649500px;}
.y29{bottom:2717.515500px;}
.y28{bottom:2801.515500px;}
.y27{bottom:2903.431500px;}
.y37{bottom:3026.793000px;}
.y39{bottom:3036.490500px;}
.y47{bottom:3051.309000px;}
.y36{bottom:3079.293000px;}
.y38{bottom:3088.990500px;}
.y12{bottom:3121.018500px;}
.y14{bottom:3186.936000px;}
.y35{bottom:3226.528500px;}
.y33{bottom:3331.945500px;}
.y3a{bottom:3354.016500px;}
.y2e{bottom:3357.768000px;}
.y11{bottom:3494.823000px;}
.y2a{bottom:3525.898500px;}
.y6b{bottom:3567.934500px;}
.y18{bottom:3574.155000px;}
.y41{bottom:3602.499000px;}
.y2f{bottom:3762.246000px;}
.y10{bottom:3777.261000px;}
.y17{bottom:3859.542000px;}
.y2c{bottom:3893.893500px;}
.y40{bottom:3960.555000px;}
.y61{bottom:4030.494000px;}
.ye{bottom:4060.965000px;}
.y6a{bottom:4082.478000px;}
.y69{bottom:4124.478000px;}
.y15{bottom:4150.179000px;}
.y63{bottom:4195.354500px;}
.y67{bottom:4203.042000px;}
.y65{bottom:4209.876000px;}
.y3d{bottom:4273.962000px;}
.y5a{bottom:4286.230500px;}
.y3c{bottom:4318.962000px;}
.yc{bottom:4343.209500px;}
.y3f{bottom:4349.437500px;}
.y3b{bottom:4363.962000px;}
.y3e{bottom:4395.937500px;}
.y23{bottom:4505.070000px;}
.y26{bottom:4645.397775px;}
.y25{bottom:4721.897775px;}
.y24{bottom:4786.786500px;}
.y19{bottom:4952.023500px;}
.h13{height:18.069990px;}
.he{height:18.506385px;}
.h27{height:18.542520px;}
.h1c{height:30.476051px;}
.h2b{height:31.541040px;}
.h26{height:33.713673px;}
.h29{height:54.456570px;}
.h28{height:54.531883px;}
.h2c{height:54.700429px;}
.h4{height:62.040675px;}
.h15{height:64.441005px;}
.h21{height:65.157835px;}
.h23{height:73.656683px;}
.h1f{height:82.308000px;}
.h1e{height:86.640000px;}
.h5{height:93.984000px;}
.h16{height:94.248000px;}
.h2a{height:94.398303px;}
.h2d{height:94.500000px;}
.h12{height:97.904297px;}
.h1d{height:103.500000px;}
.h1a{height:108.000000px;}
.h17{height:117.000000px;}
.h19{height:121.500000px;}
.h24{height:129.960000px;}
.h9{height:133.505859px;}
.h18{height:135.000000px;}
.hc{height:140.712900px;}
.h10{height:142.406250px;}
.h22{height:146.369050px;}
.h20{height:152.359650px;}
.h1b{height:155.346000px;}
.h11{height:173.557617px;}
.h8{height:197.124150px;}
.h6{height:211.500000px;}
.hf{height:213.600000px;}
.h14{height:214.200000px;}
.hd{height:220.500000px;}
.h2{height:225.000000px;}
.h3{height:231.000000px;}
.h25{height:244.602900px;}
.h2e{height:247.500000px;}
.hb{height:252.000000px;}
.h1{height:315.000000px;}
.h7{height:335.847656px;}
.ha{height:648.000000px;}
.h0{height:5184.000000px;}
.w6{width:18.069990px;}
.w5{width:18.506385px;}
.w1{width:24.310170px;}
.wd{width:128.031045px;}
.wb{width:133.075275px;}
.w7{width:138.640905px;}
.wc{width:139.258770px;}
.w8{width:148.181235px;}
.wa{width:244.602900px;}
.w3{width:510.065250px;}
.w9{width:520.367550px;}
.w4{width:593.557350px;}
.w2{width:1199.317950px;}
.w0{width:3892.500000px;}
.x3d{left:-13.465050px;}
.x36{left:-9.496800px;}
.x0{left:0.000000px;}
.x6{left:2.980500px;}
.x65{left:5.375400px;}
.x61{left:7.726200px;}
.x63{left:9.247650px;}
.x2d{left:11.821500px;}
.x25{left:30.750000px;}
.x5f{left:60.915150px;}
.x48{left:80.644695px;}
.x6b{left:81.830730px;}
.x2f{left:83.036235px;}
.x4a{left:87.396510px;}
.x5c{left:121.963815px;}
.x4d{left:126.363795px;}
.x5a{left:135.163200px;}
.x5b{left:139.287750px;}
.x2{left:148.891695px;}
.x40{left:162.825750px;}
.x4c{left:164.414850px;}
.x3{left:206.846250px;}
.x4{left:224.232600px;}
.x3a{left:294.332700px;}
.x43{left:335.491050px;}
.x59{left:391.267200px;}
.x4f{left:408.526800px;}
.x5d{left:421.123950px;}
.x52{left:424.651800px;}
.x38{left:437.779650px;}
.x50{left:438.811800px;}
.x3b{left:440.551950px;}
.x51{left:442.426800px;}
.x35{left:565.238550px;}
.x37{left:603.001350px;}
.x6a{left:755.616900px;}
.x39{left:918.151500px;}
.x41{left:932.652150px;}
.x42{left:961.495800px;}
.x3c{left:984.187500px;}
.x66{left:996.461400px;}
.x68{left:1011.023550px;}
.x58{left:1051.663950px;}
.x69{left:1090.103700px;}
.x67{left:1108.768050px;}
.x5e{left:1406.567250px;}
.x62{left:1459.540050px;}
.x60{left:1462.331100px;}
.x64{left:1464.762000px;}
.x47{left:1788.817500px;}
.x49{left:1797.315000px;}
.x44{left:1877.508000px;}
.x45{left:1886.493000px;}
.x4b{left:1888.344000px;}
.x1{left:1893.402000px;}
.x3f{left:1921.035000px;}
.x30{left:1935.402000px;}
.x4e{left:1987.741500px;}
.x31{left:1993.357500px;}
.x3e{left:2035.587000px;}
.x57{left:2241.312000px;}
.x55{left:2244.204000px;}
.x46{left:2249.116500px;}
.x54{left:2250.673500px;}
.x56{left:2260.578000px;}
.x53{left:2276.409000px;}
.x24{left:2590.734000px;}
.x34{left:2654.212500px;}
.x33{left:2656.078500px;}
.x6c{left:2688.991500px;}
.x32{left:2709.712500px;}
.x5{left:2821.249500px;}
.x7{left:2845.933500px;}
.x8{left:2870.619000px;}
.x9{left:2895.304500px;}
.xa{left:2919.990000px;}
.xb{left:2944.674000px;}
.xc{left:2969.359500px;}
.xd{left:2994.045000px;}
.xe{left:3018.730500px;}
.xf{left:3043.416000px;}
.x10{left:3068.100000px;}
.x11{left:3092.785500px;}
.x12{left:3117.471000px;}
.x13{left:3142.156500px;}
.x14{left:3166.840500px;}
.x15{left:3191.526000px;}
.x16{left:3216.211500px;}
.x17{left:3240.897000px;}
.x18{left:3265.582500px;}
.x2e{left:3283.428000px;}
.x2c{left:3287.007000px;}
.x19{left:3290.266500px;}
.x1a{left:3314.952000px;}
.x1b{left:3339.637500px;}
.x1c{left:3364.323000px;}
.x1d{left:3389.007000px;}
.x1e{left:3413.692500px;}
.x1f{left:3438.378000px;}
.x20{left:3463.063500px;}
.x21{left:3487.749000px;}
.x22{left:3512.433000px;}
.x23{left:3537.118500px;}
.x26{left:3561.861000px;}
.x27{left:3586.546500px;}
.x28{left:3611.232000px;}
.x29{left:3635.916000px;}
.x2a{left:3660.601500px;}
.x2b{left:3685.287000px;}
@media print{
.v3{vertical-align:-54.921867pt;}
.v4{vertical-align:-2.016000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:68.395840pt;}
.lsb{letter-spacing:-0.074667pt;}
.lsa{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.041600pt;}
.lsc{letter-spacing:-0.034133pt;}
.ls10{letter-spacing:-0.027733pt;}
.ls8{letter-spacing:-0.026667pt;}
.lse{letter-spacing:-0.023467pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.025600pt;}
.ls6{letter-spacing:0.027733pt;}
.ls3{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.074667pt;}
.ls4{letter-spacing:0.153600pt;}
.ls1{letter-spacing:119.927307pt;}
.ls5{letter-spacing:119.930667pt;}
.ls2{letter-spacing:181.745440pt;}
.ws3{word-spacing:-110.805333pt;}
.ws11{word-spacing:-81.546667pt;}
.ws0{word-spacing:-74.133333pt;}
.ws4{word-spacing:-72.650667pt;}
.ws2{word-spacing:-55.352884pt;}
.ws8{word-spacing:-44.480000pt;}
.ws7{word-spacing:-35.584000pt;}
.ws9{word-spacing:-34.101333pt;}
.ws10{word-spacing:-33.264000pt;}
.wsa{word-spacing:-21.468300pt;}
.ws1{word-spacing:-0.266667pt;}
.ws5{word-spacing:-0.261333pt;}
.ws6{word-spacing:-0.208000pt;}
.wsb{word-spacing:-0.173474pt;}
.wse{word-spacing:-0.111879pt;}
.wsf{word-spacing:-0.064830pt;}
.wsc{word-spacing:-0.039957pt;}
.ws12{word-spacing:0.000000pt;}
.wsd{word-spacing:14.800322pt;}
._0{margin-left:-8373.146667pt;}
._15{margin-left:-44.125867pt;}
._17{margin-left:-37.393067pt;}
._6{margin-left:-33.440000pt;}
._11{margin-left:-30.464000pt;}
._16{margin-left:-29.517112pt;}
._5{margin-left:-26.650667pt;}
._19{margin-left:-24.005333pt;}
._1e{margin-left:-19.522133pt;}
._f{margin-left:-17.173333pt;}
._1b{margin-left:-16.053333pt;}
._7{margin-left:-11.466667pt;}
._3{margin-left:-8.320000pt;}
._8{margin-left:-6.832000pt;}
._2{margin-left:-5.482667pt;}
._c{margin-left:-3.733333pt;}
._4{margin-left:-2.666667pt;}
._9{margin-left:-1.075200pt;}
._1a{width:0.925333pt;}
._10{width:2.186667pt;}
._b{width:3.733333pt;}
._1{width:5.002667pt;}
._1d{width:6.336000pt;}
._d{width:7.680000pt;}
._18{width:9.620480pt;}
._14{width:19.786667pt;}
._a{width:21.350400pt;}
._13{width:30.400000pt;}
._12{width:53.077333pt;}
._e{width:75.360000pt;}
._1c{width:5451.230880pt;}
.fsf{font-size:37.058581pt;}
.fs16{font-size:39.956946pt;}
.fs17{font-size:64.630379pt;}
.fs19{font-size:64.830138pt;}
.fs13{font-size:77.224101pt;}
.fs15{font-size:87.296810pt;}
.fs12{font-size:101.333333pt;}
.fs11{font-size:106.666667pt;}
.fs18{font-size:111.879470pt;}
.fs1a{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.fs10{font-size:122.666667pt;}
.fse{font-size:128.000000pt;}
.fsc{font-size:138.666667pt;}
.fsd{font-size:144.000000pt;}
.fs4{font-size:160.000000pt;}
.fsa{font-size:170.666667pt;}
.fs14{font-size:173.474429pt;}
.fs7{font-size:199.111093pt;}
.fsb{font-size:208.000000pt;}
.fs8{font-size:240.000000pt;}
.fs9{font-size:261.333333pt;}
.fs1{font-size:266.666667pt;}
.fs1b{font-size:293.333333pt;}
.fs6{font-size:298.666667pt;}
.fs0{font-size:373.333333pt;}
.fs3{font-size:437.333333pt;}
.fs5{font-size:768.000000pt;}
.y31{bottom:-54.204000pt;}
.y2b{bottom:-52.816000pt;}
.y4a{bottom:-36.090132pt;}
.y49{bottom:-26.825487pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.101333pt;}
.y68{bottom:8.388000pt;}
.y5b{bottom:12.573333pt;}
.y66{bottom:14.665333pt;}
.y34{bottom:17.756000pt;}
.yd{bottom:20.882667pt;}
.yf{bottom:20.884000pt;}
.y62{bottom:26.146667pt;}
.yb{bottom:42.559507pt;}
.y13{bottom:54.666667pt;}
.y5d{bottom:66.396000pt;}
.y16{bottom:72.578667pt;}
.y5c{bottom:92.146667pt;}
.ya{bottom:118.559507pt;}
.y22{bottom:123.034200pt;}
.y9{bottom:197.226133pt;}
.y21{bottom:200.367600pt;}
.y8{bottom:273.226133pt;}
.y20{bottom:276.367600pt;}
.y7{bottom:352.185867pt;}
.y1f{bottom:355.327200pt;}
.y6{bottom:429.226133pt;}
.y1e{bottom:432.367600pt;}
.y5{bottom:509.258667pt;}
.y1d{bottom:509.700933pt;}
.y4{bottom:585.258667pt;}
.y1c{bottom:587.034267pt;}
.y3{bottom:662.592000pt;}
.y1b{bottom:663.034267pt;}
.y2{bottom:741.551733pt;}
.y1a{bottom:741.993867pt;}
.y1{bottom:831.264933pt;}
.y4e{bottom:992.557867pt;}
.y4c{bottom:994.352800pt;}
.y59{bottom:1006.241600pt;}
.y4d{bottom:1027.224533pt;}
.y4b{bottom:1029.019467pt;}
.y58{bottom:1036.908267pt;}
.y52{bottom:1058.763733pt;}
.y57{bottom:1067.574933pt;}
.y48{bottom:1076.232133pt;}
.y51{bottom:1090.763733pt;}
.y56{bottom:1098.241600pt;}
.y50{bottom:1122.763733pt;}
.y55{bottom:1128.908267pt;}
.y6d{bottom:1136.672933pt;}
.y4f{bottom:1154.763733pt;}
.y54{bottom:1159.574933pt;}
.y53{bottom:1190.241600pt;}
.y5e{bottom:1353.401333pt;}
.y32{bottom:1404.944000pt;}
.y30{bottom:1421.340000pt;}
.y75{bottom:1508.888000pt;}
.y74{bottom:1584.488000pt;}
.y73{bottom:1660.088000pt;}
.y72{bottom:1735.688000pt;}
.y71{bottom:1811.285333pt;}
.y70{bottom:1886.921333pt;}
.y46{bottom:1889.422667pt;}
.y45{bottom:1936.089333pt;}
.y6f{bottom:1962.521333pt;}
.y6c{bottom:1962.730667pt;}
.y43{bottom:1986.540000pt;}
.y2d{bottom:2077.304000pt;}
.y44{bottom:2153.554667pt;}
.y42{bottom:2245.844000pt;}
.y60{bottom:2292.577333pt;}
.y6e{bottom:2300.484000pt;}
.y5f{bottom:2339.244000pt;}
.y29{bottom:2415.569333pt;}
.y28{bottom:2490.236000pt;}
.y27{bottom:2580.828000pt;}
.y37{bottom:2690.482667pt;}
.y39{bottom:2699.102667pt;}
.y47{bottom:2712.274667pt;}
.y36{bottom:2737.149333pt;}
.y38{bottom:2745.769333pt;}
.y12{bottom:2774.238667pt;}
.y14{bottom:2832.832000pt;}
.y35{bottom:2868.025333pt;}
.y33{bottom:2961.729333pt;}
.y3a{bottom:2981.348000pt;}
.y2e{bottom:2984.682667pt;}
.y11{bottom:3106.509333pt;}
.y2a{bottom:3134.132000pt;}
.y6b{bottom:3171.497333pt;}
.y18{bottom:3177.026667pt;}
.y41{bottom:3202.221333pt;}
.y2f{bottom:3344.218667pt;}
.y10{bottom:3357.565333pt;}
.y17{bottom:3430.704000pt;}
.y2c{bottom:3461.238667pt;}
.y40{bottom:3520.493333pt;}
.y61{bottom:3582.661333pt;}
.ye{bottom:3609.746667pt;}
.y6a{bottom:3628.869333pt;}
.y69{bottom:3666.202667pt;}
.y15{bottom:3689.048000pt;}
.y63{bottom:3729.204000pt;}
.y67{bottom:3736.037333pt;}
.y65{bottom:3742.112000pt;}
.y3d{bottom:3799.077333pt;}
.y5a{bottom:3809.982667pt;}
.y3c{bottom:3839.077333pt;}
.yc{bottom:3860.630667pt;}
.y3f{bottom:3866.166667pt;}
.y3b{bottom:3879.077333pt;}
.y3e{bottom:3907.500000pt;}
.y23{bottom:4004.506667pt;}
.y26{bottom:4129.242467pt;}
.y25{bottom:4197.242467pt;}
.y24{bottom:4254.921333pt;}
.y19{bottom:4401.798667pt;}
.h13{height:16.062213pt;}
.he{height:16.450120pt;}
.h27{height:16.482240pt;}
.h1c{height:27.089823pt;}
.h2b{height:28.036480pt;}
.h26{height:29.967710pt;}
.h29{height:48.405840pt;}
.h28{height:48.472785pt;}
.h2c{height:48.622604pt;}
.h4{height:55.147267pt;}
.h15{height:57.280893pt;}
.h21{height:57.918076pt;}
.h23{height:65.472607pt;}
.h1f{height:73.162667pt;}
.h1e{height:77.013333pt;}
.h5{height:83.541333pt;}
.h16{height:83.776000pt;}
.h2a{height:83.909602pt;}
.h2d{height:84.000000pt;}
.h12{height:87.026042pt;}
.h1d{height:92.000000pt;}
.h1a{height:96.000000pt;}
.h17{height:104.000000pt;}
.h19{height:108.000000pt;}
.h24{height:115.520000pt;}
.h9{height:118.671875pt;}
.h18{height:120.000000pt;}
.hc{height:125.078133pt;}
.h10{height:126.583333pt;}
.h22{height:130.105822pt;}
.h20{height:135.430800pt;}
.h1b{height:138.085333pt;}
.h11{height:154.273438pt;}
.h8{height:175.221467pt;}
.h6{height:188.000000pt;}
.hf{height:189.866667pt;}
.h14{height:190.400000pt;}
.hd{height:196.000000pt;}
.h2{height:200.000000pt;}
.h3{height:205.333333pt;}
.h25{height:217.424800pt;}
.h2e{height:220.000000pt;}
.hb{height:224.000000pt;}
.h1{height:280.000000pt;}
.h7{height:298.531250pt;}
.ha{height:576.000000pt;}
.h0{height:4608.000000pt;}
.w6{width:16.062213pt;}
.w5{width:16.450120pt;}
.w1{width:21.609040pt;}
.wd{width:113.805373pt;}
.wb{width:118.289133pt;}
.w7{width:123.236360pt;}
.wc{width:123.785573pt;}
.w8{width:131.716653pt;}
.wa{width:217.424800pt;}
.w3{width:453.391333pt;}
.w9{width:462.548933pt;}
.w4{width:527.606533pt;}
.w2{width:1066.060400pt;}
.w0{width:3460.000000pt;}
.x3d{left:-11.968933pt;}
.x36{left:-8.441600pt;}
.x0{left:0.000000pt;}
.x6{left:2.649333pt;}
.x65{left:4.778133pt;}
.x61{left:6.867733pt;}
.x63{left:8.220133pt;}
.x2d{left:10.508000pt;}
.x25{left:27.333333pt;}
.x5f{left:54.146800pt;}
.x48{left:71.684173pt;}
.x6b{left:72.738427pt;}
.x2f{left:73.809987pt;}
.x4a{left:77.685787pt;}
.x5c{left:108.412280pt;}
.x4d{left:112.323373pt;}
.x5a{left:120.145067pt;}
.x5b{left:123.811333pt;}
.x2{left:132.348173pt;}
.x40{left:144.734000pt;}
.x4c{left:146.146533pt;}
.x3{left:183.863333pt;}
.x4{left:199.317867pt;}
.x3a{left:261.629067pt;}
.x43{left:298.214267pt;}
.x59{left:347.793067pt;}
.x4f{left:363.134933pt;}
.x5d{left:374.332400pt;}
.x52{left:377.468267pt;}
.x38{left:389.137467pt;}
.x50{left:390.054933pt;}
.x3b{left:391.601733pt;}
.x51{left:393.268267pt;}
.x35{left:502.434267pt;}
.x37{left:536.001200pt;}
.x6a{left:671.659467pt;}
.x39{left:816.134667pt;}
.x41{left:829.024133pt;}
.x42{left:854.662933pt;}
.x3c{left:874.833333pt;}
.x66{left:885.743467pt;}
.x68{left:898.687600pt;}
.x58{left:934.812400pt;}
.x69{left:968.981067pt;}
.x67{left:985.571600pt;}
.x5e{left:1250.282000pt;}
.x62{left:1297.368933pt;}
.x60{left:1299.849867pt;}
.x64{left:1302.010667pt;}
.x47{left:1590.060000pt;}
.x49{left:1597.613333pt;}
.x44{left:1668.896000pt;}
.x45{left:1676.882667pt;}
.x4b{left:1678.528000pt;}
.x1{left:1683.024000pt;}
.x3f{left:1707.586667pt;}
.x30{left:1720.357333pt;}
.x4e{left:1766.881333pt;}
.x31{left:1771.873333pt;}
.x3e{left:1809.410667pt;}
.x57{left:1992.277333pt;}
.x55{left:1994.848000pt;}
.x46{left:1999.214667pt;}
.x54{left:2000.598667pt;}
.x56{left:2009.402667pt;}
.x53{left:2023.474667pt;}
.x24{left:2302.874667pt;}
.x34{left:2359.300000pt;}
.x33{left:2360.958667pt;}
.x6c{left:2390.214667pt;}
.x32{left:2408.633333pt;}
.x5{left:2507.777333pt;}
.x7{left:2529.718667pt;}
.x8{left:2551.661333pt;}
.x9{left:2573.604000pt;}
.xa{left:2595.546667pt;}
.xb{left:2617.488000pt;}
.xc{left:2639.430667pt;}
.xd{left:2661.373333pt;}
.xe{left:2683.316000pt;}
.xf{left:2705.258667pt;}
.x10{left:2727.200000pt;}
.x11{left:2749.142667pt;}
.x12{left:2771.085333pt;}
.x13{left:2793.028000pt;}
.x14{left:2814.969333pt;}
.x15{left:2836.912000pt;}
.x16{left:2858.854667pt;}
.x17{left:2880.797333pt;}
.x18{left:2902.740000pt;}
.x2e{left:2918.602667pt;}
.x2c{left:2921.784000pt;}
.x19{left:2924.681333pt;}
.x1a{left:2946.624000pt;}
.x1b{left:2968.566667pt;}
.x1c{left:2990.509333pt;}
.x1d{left:3012.450667pt;}
.x1e{left:3034.393333pt;}
.x1f{left:3056.336000pt;}
.x20{left:3078.278667pt;}
.x21{left:3100.221333pt;}
.x22{left:3122.162667pt;}
.x23{left:3144.105333pt;}
.x26{left:3166.098667pt;}
.x27{left:3188.041333pt;}
.x28{left:3209.984000pt;}
.x29{left:3231.925333pt;}
.x2a{left:3253.868000pt;}
.x2b{left:3275.810667pt;}
}




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