
    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_419cc3e2050aac22912de452.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_a4372057f88da2fe5f5b5ca5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_21d7efa5070d0146e81ee86e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_3314d93eab5c38665c101907.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_e06aa2b4943dfe44ef89d415.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_584553570946e5f78dbb856d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_a4372057f88da2fe5f5b5ca5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cda74eb4e6f1de143444e5f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_acf82e05ccc5164f6b284847.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_ce149462a25d487f4172f36f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958067;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_b448426ef6af4629b1566ed0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;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_7cfb593c2b838199bbd1a9a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.719000;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.000000px;}
.ls16{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.264000px;}
.ls1d{letter-spacing:0.297000px;}
.ls14{letter-spacing:0.330000px;}
.ls1c{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.627000px;}
.ls1{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.726000px;}
.ls12{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.858000px;}
.lsf{letter-spacing:0.924000px;}
.ls9{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.122000px;}
.lsc{letter-spacing:1.221000px;}
.ls1b{letter-spacing:1.254000px;}
.ls18{letter-spacing:1.617000px;}
.lsa{letter-spacing:1.716000px;}
.ls1f{letter-spacing:3.894000px;}
.ls11{letter-spacing:4.422000px;}
.ls17{letter-spacing:5.412000px;}
.lse{letter-spacing:5.544000px;}
.ls10{letter-spacing:7.524000px;}
.lsd{letter-spacing:2071.568400px;}
.ls7{letter-spacing:2192.518800px;}
.ls0{letter-spacing:2844.088800px;}
.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:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws16{word-spacing:-16.500000px;}
.ws2{word-spacing:-14.520000px;}
.ws69{word-spacing:-13.860000px;}
.ws36{word-spacing:-12.750000px;}
.ws68{word-spacing:-3.894000px;}
.ws67{word-spacing:-1.254000px;}
.ws30{word-spacing:-0.990000px;}
.ws3b{word-spacing:-0.924000px;}
.ws46{word-spacing:-0.726000px;}
.wsd{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.528000px;}
.ws4b{word-spacing:-0.330000px;}
.ws47{word-spacing:-0.264000px;}
.ws7{word-spacing:-0.198000px;}
.ws25{word-spacing:-0.132000px;}
.ws10{word-spacing:-0.066000px;}
.ws59{word-spacing:-0.049500px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.132000px;}
.ws21{word-spacing:0.198000px;}
.ws1d{word-spacing:0.264000px;}
.ws2b{word-spacing:0.330000px;}
.ws39{word-spacing:0.396000px;}
.ws1c{word-spacing:0.462000px;}
.ws2a{word-spacing:0.594000px;}
.ws13{word-spacing:0.660000px;}
.ws44{word-spacing:0.726000px;}
.ws26{word-spacing:0.792000px;}
.ws55{word-spacing:0.858000px;}
.ws51{word-spacing:0.990000px;}
.ws27{word-spacing:1.056000px;}
.ws4f{word-spacing:1.122000px;}
.ws48{word-spacing:1.254000px;}
.ws60{word-spacing:1.320000px;}
.ws2f{word-spacing:1.386000px;}
.ws1e{word-spacing:1.452000px;}
.ws5c{word-spacing:1.518000px;}
.ws5b{word-spacing:1.584000px;}
.ws4a{word-spacing:1.716000px;}
.ws18{word-spacing:1.782000px;}
.ws43{word-spacing:1.848000px;}
.ws3c{word-spacing:2.046000px;}
.ws22{word-spacing:2.112000px;}
.ws1a{word-spacing:2.178000px;}
.ws40{word-spacing:2.244000px;}
.ws5{word-spacing:2.304000px;}
.ws12{word-spacing:2.310000px;}
.ws50{word-spacing:2.376000px;}
.wsc{word-spacing:2.442000px;}
.ws4e{word-spacing:2.508000px;}
.ws5f{word-spacing:2.574000px;}
.ws3e{word-spacing:2.640000px;}
.ws3d{word-spacing:2.706000px;}
.ws32{word-spacing:2.772000px;}
.ws1b{word-spacing:2.838000px;}
.ws57{word-spacing:2.904000px;}
.ws41{word-spacing:2.970000px;}
.ws15{word-spacing:3.036000px;}
.ws66{word-spacing:3.168000px;}
.ws2d{word-spacing:3.234000px;}
.ws8{word-spacing:3.366000px;}
.ws11{word-spacing:3.432000px;}
.ws64{word-spacing:3.498000px;}
.ws14{word-spacing:3.564000px;}
.ws63{word-spacing:3.630000px;}
.ws5e{word-spacing:3.696000px;}
.ws1f{word-spacing:3.762000px;}
.ws2e{word-spacing:3.828000px;}
.ws5a{word-spacing:3.894000px;}
.wsf{word-spacing:3.960000px;}
.ws3f{word-spacing:4.026000px;}
.ws61{word-spacing:4.158000px;}
.wsa{word-spacing:4.224000px;}
.ws3a{word-spacing:4.422000px;}
.ws2c{word-spacing:4.488000px;}
.ws28{word-spacing:4.554000px;}
.ws45{word-spacing:4.686000px;}
.ws58{word-spacing:4.752000px;}
.wse{word-spacing:4.884000px;}
.ws62{word-spacing:4.950000px;}
.ws37{word-spacing:5.016000px;}
.ws24{word-spacing:5.082000px;}
.ws65{word-spacing:5.148000px;}
.ws52{word-spacing:5.214000px;}
.ws42{word-spacing:5.280000px;}
.ws33{word-spacing:5.346000px;}
.ws4d{word-spacing:5.412000px;}
.ws56{word-spacing:5.478000px;}
.ws23{word-spacing:5.544000px;}
.ws49{word-spacing:5.676000px;}
.ws53{word-spacing:5.742000px;}
.ws34{word-spacing:5.808000px;}
.ws29{word-spacing:5.874000px;}
.ws54{word-spacing:6.006000px;}
.ws35{word-spacing:6.204000px;}
.ws20{word-spacing:6.270000px;}
.ws4c{word-spacing:6.402000px;}
.ws5d{word-spacing:6.600000px;}
.ws31{word-spacing:6.732000px;}
.ws38{word-spacing:6.864000px;}
.wsb{word-spacing:6.930000px;}
.ws6{word-spacing:10.656000px;}
.ws17{word-spacing:12.750000px;}
.ws4{word-spacing:13.344000px;}
._2{margin-left:-24.000000px;}
._7{margin-left:-21.846000px;}
._b{margin-left:-20.658000px;}
._a{margin-left:-16.632000px;}
._3{margin-left:-13.860000px;}
._5{margin-left:-1.716000px;}
._6{width:1.122000px;}
._8{width:2.574000px;}
._9{width:4.422000px;}
._4{width:8.382000px;}
._1{width:10.992000px;}
._0{width:13.344000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y83{bottom:138.565350px;}
.y55{bottom:138.827850px;}
.y7{bottom:140.316450px;}
.y6{bottom:153.108450px;}
.y82{bottom:159.355350px;}
.y54{bottom:159.617850px;}
.y5{bottom:172.276800px;}
.y81{bottom:180.145350px;}
.y53{bottom:180.407850px;}
.y4{bottom:191.452800px;}
.y80{bottom:200.935350px;}
.y52{bottom:201.197850px;}
.y3{bottom:204.244800px;}
.y7f{bottom:221.725350px;}
.y51{bottom:221.987850px;}
.y7e{bottom:242.515350px;}
.y50{bottom:242.777850px;}
.yb0{bottom:242.804550px;}
.y7d{bottom:263.305350px;}
.y4f{bottom:263.567850px;}
.yaf{bottom:263.594550px;}
.y26{bottom:274.616550px;}
.y7c{bottom:284.095350px;}
.y4e{bottom:284.357850px;}
.yae{bottom:284.384550px;}
.y8c{bottom:294.752850px;}
.y25{bottom:295.406550px;}
.y7b{bottom:304.885350px;}
.y4d{bottom:305.147850px;}
.yad{bottom:305.174550px;}
.y8b{bottom:315.542850px;}
.y24{bottom:316.196550px;}
.y7a{bottom:325.675350px;}
.yac{bottom:325.964550px;}
.y4c{bottom:336.332850px;}
.y23{bottom:336.986550px;}
.y79{bottom:346.465350px;}
.yab{bottom:346.754550px;}
.y4b{bottom:357.122850px;}
.y22{bottom:357.776550px;}
.y78{bottom:367.255350px;}
.yaa{bottom:367.544550px;}
.y4a{bottom:377.912850px;}
.y21{bottom:378.566550px;}
.y77{bottom:388.045350px;}
.ya9{bottom:388.334550px;}
.y49{bottom:398.702850px;}
.y20{bottom:399.356550px;}
.y76{bottom:408.835350px;}
.ya8{bottom:409.124550px;}
.y48{bottom:419.492850px;}
.y1f{bottom:420.146550px;}
.y75{bottom:429.625350px;}
.ya7{bottom:429.914550px;}
.y47{bottom:440.282850px;}
.y1e{bottom:440.936550px;}
.y74{bottom:450.415350px;}
.ya6{bottom:450.704550px;}
.y46{bottom:461.072850px;}
.y1d{bottom:461.726550px;}
.y73{bottom:471.205350px;}
.ya5{bottom:471.494550px;}
.y45{bottom:481.862850px;}
.y1c{bottom:482.516550px;}
.y72{bottom:491.995350px;}
.ya4{bottom:492.284550px;}
.y44{bottom:502.652850px;}
.y71{bottom:512.785350px;}
.ya3{bottom:513.074550px;}
.y1b{bottom:513.701550px;}
.y43{bottom:523.442850px;}
.y70{bottom:533.575350px;}
.ya2{bottom:533.864550px;}
.y1a{bottom:534.491550px;}
.y42{bottom:544.232850px;}
.yc6{bottom:547.835100px;}
.y6f{bottom:554.365350px;}
.ya1{bottom:554.654550px;}
.y19{bottom:555.281550px;}
.y41{bottom:565.022850px;}
.yc5{bottom:568.625100px;}
.y6e{bottom:575.155350px;}
.ya0{bottom:575.444550px;}
.y18{bottom:576.071550px;}
.y40{bottom:585.812850px;}
.y6d{bottom:595.945350px;}
.y9f{bottom:596.234550px;}
.y17{bottom:596.861550px;}
.yc4{bottom:599.810100px;}
.y3f{bottom:606.602850px;}
.y6c{bottom:616.735350px;}
.y9e{bottom:617.024550px;}
.y16{bottom:617.651550px;}
.yc3{bottom:620.600100px;}
.y3e{bottom:627.392850px;}
.y6b{bottom:637.525350px;}
.y9d{bottom:637.814550px;}
.y15{bottom:638.441550px;}
.yc2{bottom:641.390100px;}
.y3d{bottom:648.182850px;}
.y6a{bottom:658.315350px;}
.y9c{bottom:658.604550px;}
.y14{bottom:659.231550px;}
.yc1{bottom:662.180100px;}
.y3c{bottom:668.972850px;}
.y69{bottom:679.105350px;}
.y8a{bottom:679.367850px;}
.y13{bottom:680.021550px;}
.y3b{bottom:689.762850px;}
.y9b{bottom:689.789550px;}
.yc0{bottom:693.365100px;}
.y68{bottom:699.895350px;}
.y89{bottom:700.157850px;}
.y12{bottom:700.811550px;}
.y3a{bottom:710.552850px;}
.y9a{bottom:710.579550px;}
.y67{bottom:720.685350px;}
.y88{bottom:720.947850px;}
.ybf{bottom:724.550100px;}
.y39{bottom:731.342850px;}
.y99{bottom:731.369550px;}
.y87{bottom:741.737850px;}
.ybe{bottom:745.340100px;}
.y38{bottom:752.132850px;}
.y98{bottom:752.159550px;}
.y66{bottom:757.199850px;}
.y86{bottom:762.527850px;}
.ybd{bottom:766.130100px;}
.y11{bottom:768.511050px;}
.y37{bottom:772.922850px;}
.y97{bottom:772.949550px;}
.y65{bottom:777.989850px;}
.y85{bottom:783.317850px;}
.y10{bottom:789.301050px;}
.y96{bottom:793.739550px;}
.ybc{bottom:797.315100px;}
.y64{bottom:798.779850px;}
.y36{bottom:804.107850px;}
.yf{bottom:810.091050px;}
.y95{bottom:814.529550px;}
.y63{bottom:819.569850px;}
.y35{bottom:824.897850px;}
.ybb{bottom:828.500100px;}
.ye{bottom:830.881050px;}
.y94{bottom:835.319550px;}
.y62{bottom:840.359850px;}
.y34{bottom:845.687850px;}
.yba{bottom:849.290100px;}
.y93{bottom:856.109550px;}
.y61{bottom:861.149850px;}
.y33{bottom:866.477850px;}
.yd{bottom:870.062100px;}
.y92{bottom:876.899550px;}
.yb9{bottom:880.475100px;}
.y60{bottom:881.939850px;}
.y32{bottom:887.267850px;}
.y91{bottom:897.689550px;}
.yb8{bottom:901.265100px;}
.y5f{bottom:902.729850px;}
.y31{bottom:908.057850px;}
.y90{bottom:918.454350px;}
.yb7{bottom:922.055100px;}
.y5e{bottom:923.519850px;}
.y30{bottom:928.847850px;}
.y8f{bottom:939.244350px;}
.yb6{bottom:942.845100px;}
.y5d{bottom:944.309850px;}
.y2f{bottom:949.637850px;}
.y8e{bottom:960.034350px;}
.y5c{bottom:965.099850px;}
.y2e{bottom:970.427850px;}
.yb5{bottom:974.030100px;}
.y8d{bottom:980.824350px;}
.yc{bottom:987.921150px;}
.y2d{bottom:991.217850px;}
.y5b{bottom:1001.614350px;}
.yb4{bottom:1005.215100px;}
.yb{bottom:1008.708150px;}
.y2c{bottom:1012.007850px;}
.y5a{bottom:1022.404350px;}
.y2b{bottom:1032.797850px;}
.yb3{bottom:1036.400100px;}
.y59{bottom:1043.194350px;}
.y2a{bottom:1053.587850px;}
.yb2{bottom:1057.190100px;}
.y84{bottom:1063.982850px;}
.y58{bottom:1063.984350px;}
.y29{bottom:1084.772850px;}
.y57{bottom:1084.774350px;}
.ya{bottom:1097.478000px;}
.yb1{bottom:1103.253000px;}
.y28{bottom:1105.562850px;}
.y56{bottom:1105.564350px;}
.y2{bottom:1162.729350px;}
.y27{bottom:1172.229900px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.h3{height:35.328000px;}
.h4{height:35.664000px;}
.ha{height:40.545000px;}
.h2{height:45.342773px;}
.h7{height:47.700000px;}
.h9{height:52.470000px;}
.hb{height:52.570800px;}
.h8{height:54.504000px;}
.hc{height:59.046000px;}
.h6{height:66.780000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.x3{left:110.539350px;}
.xb{left:136.057350px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.x8{left:405.279450px;}
.xa{left:500.361600px;}
.x7{left:592.774350px;}
.x6{left:612.241950px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.234667pt;}
.ls1d{letter-spacing:0.264000pt;}
.ls14{letter-spacing:0.293333pt;}
.ls1c{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.557333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.645333pt;}
.ls12{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.762667pt;}
.lsf{letter-spacing:0.821333pt;}
.ls9{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.997333pt;}
.lsc{letter-spacing:1.085333pt;}
.ls1b{letter-spacing:1.114667pt;}
.ls18{letter-spacing:1.437333pt;}
.lsa{letter-spacing:1.525333pt;}
.ls1f{letter-spacing:3.461333pt;}
.ls11{letter-spacing:3.930667pt;}
.ls17{letter-spacing:4.810667pt;}
.lse{letter-spacing:4.928000pt;}
.ls10{letter-spacing:6.688000pt;}
.lsd{letter-spacing:1841.394133pt;}
.ls7{letter-spacing:1948.905600pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws16{word-spacing:-14.666667pt;}
.ws2{word-spacing:-12.906667pt;}
.ws69{word-spacing:-12.320000pt;}
.ws36{word-spacing:-11.333333pt;}
.ws68{word-spacing:-3.461333pt;}
.ws67{word-spacing:-1.114667pt;}
.ws30{word-spacing:-0.880000pt;}
.ws3b{word-spacing:-0.821333pt;}
.ws46{word-spacing:-0.645333pt;}
.wsd{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.469333pt;}
.ws4b{word-spacing:-0.293333pt;}
.ws47{word-spacing:-0.234667pt;}
.ws7{word-spacing:-0.176000pt;}
.ws25{word-spacing:-0.117333pt;}
.ws10{word-spacing:-0.058667pt;}
.ws59{word-spacing:-0.044000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.117333pt;}
.ws21{word-spacing:0.176000pt;}
.ws1d{word-spacing:0.234667pt;}
.ws2b{word-spacing:0.293333pt;}
.ws39{word-spacing:0.352000pt;}
.ws1c{word-spacing:0.410667pt;}
.ws2a{word-spacing:0.528000pt;}
.ws13{word-spacing:0.586667pt;}
.ws44{word-spacing:0.645333pt;}
.ws26{word-spacing:0.704000pt;}
.ws55{word-spacing:0.762667pt;}
.ws51{word-spacing:0.880000pt;}
.ws27{word-spacing:0.938667pt;}
.ws4f{word-spacing:0.997333pt;}
.ws48{word-spacing:1.114667pt;}
.ws60{word-spacing:1.173333pt;}
.ws2f{word-spacing:1.232000pt;}
.ws1e{word-spacing:1.290667pt;}
.ws5c{word-spacing:1.349333pt;}
.ws5b{word-spacing:1.408000pt;}
.ws4a{word-spacing:1.525333pt;}
.ws18{word-spacing:1.584000pt;}
.ws43{word-spacing:1.642667pt;}
.ws3c{word-spacing:1.818667pt;}
.ws22{word-spacing:1.877333pt;}
.ws1a{word-spacing:1.936000pt;}
.ws40{word-spacing:1.994667pt;}
.ws5{word-spacing:2.048000pt;}
.ws12{word-spacing:2.053333pt;}
.ws50{word-spacing:2.112000pt;}
.wsc{word-spacing:2.170667pt;}
.ws4e{word-spacing:2.229333pt;}
.ws5f{word-spacing:2.288000pt;}
.ws3e{word-spacing:2.346667pt;}
.ws3d{word-spacing:2.405333pt;}
.ws32{word-spacing:2.464000pt;}
.ws1b{word-spacing:2.522667pt;}
.ws57{word-spacing:2.581333pt;}
.ws41{word-spacing:2.640000pt;}
.ws15{word-spacing:2.698667pt;}
.ws66{word-spacing:2.816000pt;}
.ws2d{word-spacing:2.874667pt;}
.ws8{word-spacing:2.992000pt;}
.ws11{word-spacing:3.050667pt;}
.ws64{word-spacing:3.109333pt;}
.ws14{word-spacing:3.168000pt;}
.ws63{word-spacing:3.226667pt;}
.ws5e{word-spacing:3.285333pt;}
.ws1f{word-spacing:3.344000pt;}
.ws2e{word-spacing:3.402667pt;}
.ws5a{word-spacing:3.461333pt;}
.wsf{word-spacing:3.520000pt;}
.ws3f{word-spacing:3.578667pt;}
.ws61{word-spacing:3.696000pt;}
.wsa{word-spacing:3.754667pt;}
.ws3a{word-spacing:3.930667pt;}
.ws2c{word-spacing:3.989333pt;}
.ws28{word-spacing:4.048000pt;}
.ws45{word-spacing:4.165333pt;}
.ws58{word-spacing:4.224000pt;}
.wse{word-spacing:4.341333pt;}
.ws62{word-spacing:4.400000pt;}
.ws37{word-spacing:4.458667pt;}
.ws24{word-spacing:4.517333pt;}
.ws65{word-spacing:4.576000pt;}
.ws52{word-spacing:4.634667pt;}
.ws42{word-spacing:4.693333pt;}
.ws33{word-spacing:4.752000pt;}
.ws4d{word-spacing:4.810667pt;}
.ws56{word-spacing:4.869333pt;}
.ws23{word-spacing:4.928000pt;}
.ws49{word-spacing:5.045333pt;}
.ws53{word-spacing:5.104000pt;}
.ws34{word-spacing:5.162667pt;}
.ws29{word-spacing:5.221333pt;}
.ws54{word-spacing:5.338667pt;}
.ws35{word-spacing:5.514667pt;}
.ws20{word-spacing:5.573333pt;}
.ws4c{word-spacing:5.690667pt;}
.ws5d{word-spacing:5.866667pt;}
.ws31{word-spacing:5.984000pt;}
.ws38{word-spacing:6.101333pt;}
.wsb{word-spacing:6.160000pt;}
.ws6{word-spacing:9.472000pt;}
.ws17{word-spacing:11.333333pt;}
.ws4{word-spacing:11.861333pt;}
._2{margin-left:-21.333333pt;}
._7{margin-left:-19.418667pt;}
._b{margin-left:-18.362667pt;}
._a{margin-left:-14.784000pt;}
._3{margin-left:-12.320000pt;}
._5{margin-left:-1.525333pt;}
._6{width:0.997333pt;}
._8{width:2.288000pt;}
._9{width:3.930667pt;}
._4{width:7.450667pt;}
._1{width:9.770667pt;}
._0{width:11.861333pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y83{bottom:123.169200pt;}
.y55{bottom:123.402533pt;}
.y7{bottom:124.725733pt;}
.y6{bottom:136.096400pt;}
.y82{bottom:141.649200pt;}
.y54{bottom:141.882533pt;}
.y5{bottom:153.134933pt;}
.y81{bottom:160.129200pt;}
.y53{bottom:160.362533pt;}
.y4{bottom:170.180267pt;}
.y80{bottom:178.609200pt;}
.y52{bottom:178.842533pt;}
.y3{bottom:181.550933pt;}
.y7f{bottom:197.089200pt;}
.y51{bottom:197.322533pt;}
.y7e{bottom:215.569200pt;}
.y50{bottom:215.802533pt;}
.yb0{bottom:215.826267pt;}
.y7d{bottom:234.049200pt;}
.y4f{bottom:234.282533pt;}
.yaf{bottom:234.306267pt;}
.y26{bottom:244.103600pt;}
.y7c{bottom:252.529200pt;}
.y4e{bottom:252.762533pt;}
.yae{bottom:252.786267pt;}
.y8c{bottom:262.002533pt;}
.y25{bottom:262.583600pt;}
.y7b{bottom:271.009200pt;}
.y4d{bottom:271.242533pt;}
.yad{bottom:271.266267pt;}
.y8b{bottom:280.482533pt;}
.y24{bottom:281.063600pt;}
.y7a{bottom:289.489200pt;}
.yac{bottom:289.746267pt;}
.y4c{bottom:298.962533pt;}
.y23{bottom:299.543600pt;}
.y79{bottom:307.969200pt;}
.yab{bottom:308.226267pt;}
.y4b{bottom:317.442533pt;}
.y22{bottom:318.023600pt;}
.y78{bottom:326.449200pt;}
.yaa{bottom:326.706267pt;}
.y4a{bottom:335.922533pt;}
.y21{bottom:336.503600pt;}
.y77{bottom:344.929200pt;}
.ya9{bottom:345.186267pt;}
.y49{bottom:354.402533pt;}
.y20{bottom:354.983600pt;}
.y76{bottom:363.409200pt;}
.ya8{bottom:363.666267pt;}
.y48{bottom:372.882533pt;}
.y1f{bottom:373.463600pt;}
.y75{bottom:381.889200pt;}
.ya7{bottom:382.146267pt;}
.y47{bottom:391.362533pt;}
.y1e{bottom:391.943600pt;}
.y74{bottom:400.369200pt;}
.ya6{bottom:400.626267pt;}
.y46{bottom:409.842533pt;}
.y1d{bottom:410.423600pt;}
.y73{bottom:418.849200pt;}
.ya5{bottom:419.106267pt;}
.y45{bottom:428.322533pt;}
.y1c{bottom:428.903600pt;}
.y72{bottom:437.329200pt;}
.ya4{bottom:437.586267pt;}
.y44{bottom:446.802533pt;}
.y71{bottom:455.809200pt;}
.ya3{bottom:456.066267pt;}
.y1b{bottom:456.623600pt;}
.y43{bottom:465.282533pt;}
.y70{bottom:474.289200pt;}
.ya2{bottom:474.546267pt;}
.y1a{bottom:475.103600pt;}
.y42{bottom:483.762533pt;}
.yc6{bottom:486.964533pt;}
.y6f{bottom:492.769200pt;}
.ya1{bottom:493.026267pt;}
.y19{bottom:493.583600pt;}
.y41{bottom:502.242533pt;}
.yc5{bottom:505.444533pt;}
.y6e{bottom:511.249200pt;}
.ya0{bottom:511.506267pt;}
.y18{bottom:512.063600pt;}
.y40{bottom:520.722533pt;}
.y6d{bottom:529.729200pt;}
.y9f{bottom:529.986267pt;}
.y17{bottom:530.543600pt;}
.yc4{bottom:533.164533pt;}
.y3f{bottom:539.202533pt;}
.y6c{bottom:548.209200pt;}
.y9e{bottom:548.466267pt;}
.y16{bottom:549.023600pt;}
.yc3{bottom:551.644533pt;}
.y3e{bottom:557.682533pt;}
.y6b{bottom:566.689200pt;}
.y9d{bottom:566.946267pt;}
.y15{bottom:567.503600pt;}
.yc2{bottom:570.124533pt;}
.y3d{bottom:576.162533pt;}
.y6a{bottom:585.169200pt;}
.y9c{bottom:585.426267pt;}
.y14{bottom:585.983600pt;}
.yc1{bottom:588.604533pt;}
.y3c{bottom:594.642533pt;}
.y69{bottom:603.649200pt;}
.y8a{bottom:603.882533pt;}
.y13{bottom:604.463600pt;}
.y3b{bottom:613.122533pt;}
.y9b{bottom:613.146267pt;}
.yc0{bottom:616.324533pt;}
.y68{bottom:622.129200pt;}
.y89{bottom:622.362533pt;}
.y12{bottom:622.943600pt;}
.y3a{bottom:631.602533pt;}
.y9a{bottom:631.626267pt;}
.y67{bottom:640.609200pt;}
.y88{bottom:640.842533pt;}
.ybf{bottom:644.044533pt;}
.y39{bottom:650.082533pt;}
.y99{bottom:650.106267pt;}
.y87{bottom:659.322533pt;}
.ybe{bottom:662.524533pt;}
.y38{bottom:668.562533pt;}
.y98{bottom:668.586267pt;}
.y66{bottom:673.066533pt;}
.y86{bottom:677.802533pt;}
.ybd{bottom:681.004533pt;}
.y11{bottom:683.120933pt;}
.y37{bottom:687.042533pt;}
.y97{bottom:687.066267pt;}
.y65{bottom:691.546533pt;}
.y85{bottom:696.282533pt;}
.y10{bottom:701.600933pt;}
.y96{bottom:705.546267pt;}
.ybc{bottom:708.724533pt;}
.y64{bottom:710.026533pt;}
.y36{bottom:714.762533pt;}
.yf{bottom:720.080933pt;}
.y95{bottom:724.026267pt;}
.y63{bottom:728.506533pt;}
.y35{bottom:733.242533pt;}
.ybb{bottom:736.444533pt;}
.ye{bottom:738.560933pt;}
.y94{bottom:742.506267pt;}
.y62{bottom:746.986533pt;}
.y34{bottom:751.722533pt;}
.yba{bottom:754.924533pt;}
.y93{bottom:760.986267pt;}
.y61{bottom:765.466533pt;}
.y33{bottom:770.202533pt;}
.yd{bottom:773.388533pt;}
.y92{bottom:779.466267pt;}
.yb9{bottom:782.644533pt;}
.y60{bottom:783.946533pt;}
.y32{bottom:788.682533pt;}
.y91{bottom:797.946267pt;}
.yb8{bottom:801.124533pt;}
.y5f{bottom:802.426533pt;}
.y31{bottom:807.162533pt;}
.y90{bottom:816.403867pt;}
.yb7{bottom:819.604533pt;}
.y5e{bottom:820.906533pt;}
.y30{bottom:825.642533pt;}
.y8f{bottom:834.883867pt;}
.yb6{bottom:838.084533pt;}
.y5d{bottom:839.386533pt;}
.y2f{bottom:844.122533pt;}
.y8e{bottom:853.363867pt;}
.y5c{bottom:857.866533pt;}
.y2e{bottom:862.602533pt;}
.yb5{bottom:865.804533pt;}
.y8d{bottom:871.843867pt;}
.yc{bottom:878.152133pt;}
.y2d{bottom:881.082533pt;}
.y5b{bottom:890.323867pt;}
.yb4{bottom:893.524533pt;}
.yb{bottom:896.629467pt;}
.y2c{bottom:899.562533pt;}
.y5a{bottom:908.803867pt;}
.y2b{bottom:918.042533pt;}
.yb3{bottom:921.244533pt;}
.y59{bottom:927.283867pt;}
.y2a{bottom:936.522533pt;}
.yb2{bottom:939.724533pt;}
.y84{bottom:945.762533pt;}
.y58{bottom:945.763867pt;}
.y29{bottom:964.242533pt;}
.y57{bottom:964.243867pt;}
.ya{bottom:975.536000pt;}
.yb1{bottom:980.669333pt;}
.y28{bottom:982.722533pt;}
.y56{bottom:982.723867pt;}
.y2{bottom:1033.537200pt;}
.y27{bottom:1041.982133pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.h3{height:31.402667pt;}
.h4{height:31.701333pt;}
.ha{height:36.040000pt;}
.h2{height:40.304688pt;}
.h7{height:42.400000pt;}
.h9{height:46.640000pt;}
.hb{height:46.729600pt;}
.h8{height:48.448000pt;}
.hc{height:52.485333pt;}
.h6{height:59.360000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.x3{left:98.257200pt;}
.xb{left:120.939867pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.x8{left:360.248400pt;}
.xa{left:444.765867pt;}
.x7{left:526.910533pt;}
.x6{left:544.215067pt;}
.x2{left:652.371467pt;}
}




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