
    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_b7d2d4227d804f1d48b5a494.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_f3ab5e6a68fec2bb7dc72ffb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_39baf2759410776114f6bf88.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_95dcbff029fdf3f40ed47dfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_cb55172626dd88ddb06c1324.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c36142415eb22a1ffebdfbf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_cd43b27b1a94c6b4b2f44722.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ea556d7e5ca7c4ead73f447b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_c9ca43053a256b6734d13ae4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_b7d2d4227d804f1d48b5a494.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_f3ab5e6a68fec2bb7dc72ffb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;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_6ff8d54f1e9bf88bf4040bfd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_be83bf6c2beb81e69a0701bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_96f998d7626f2e378ff29c99.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691406;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_b42dfdfc23d31795e954b057.woff2')format("woff");}.fff{font-family:fff;line-height:0.708000;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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.v3{vertical-align:36.018000px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws57{word-spacing:-5.100000px;}
.ws58{word-spacing:-5.040000px;}
.ws35{word-spacing:-4.320000px;}
.wsa{word-spacing:-3.780000px;}
.ws6e{word-spacing:-3.660000px;}
.wse{word-spacing:-3.240000px;}
.ws20{word-spacing:-3.180000px;}
.ws12{word-spacing:-3.120000px;}
.wsd{word-spacing:-2.640000px;}
.ws4f{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.100000px;}
.ws5e{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.890000px;}
.ws67{word-spacing:-1.680000px;}
.ws52{word-spacing:-1.320000px;}
.ws2a{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.200000px;}
.ws61{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.080000px;}
.ws1e{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.918000px;}
.ws30{word-spacing:-0.660000px;}
.ws62{word-spacing:-0.300000px;}
.ws1f{word-spacing:-0.270000px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:0.240000px;}
.ws4c{word-spacing:0.600000px;}
.ws18{word-spacing:0.720000px;}
.ws21{word-spacing:0.780000px;}
.ws25{word-spacing:1.260000px;}
.ws7{word-spacing:1.296000px;}
.ws2b{word-spacing:1.320000px;}
.ws2e{word-spacing:1.380000px;}
.ws46{word-spacing:1.620000px;}
.ws1d{word-spacing:1.680000px;}
.ws37{word-spacing:1.740000px;}
.ws28{word-spacing:1.920000px;}
.wsb{word-spacing:2.268000px;}
.ws29{word-spacing:2.340000px;}
.ws40{word-spacing:2.700000px;}
.ws63{word-spacing:2.760000px;}
.ws3e{word-spacing:3.060000px;}
.ws45{word-spacing:3.120000px;}
.wsc{word-spacing:3.360000px;}
.ws64{word-spacing:3.600000px;}
.ws6a{word-spacing:3.660000px;}
.ws6b{word-spacing:3.960000px;}
.ws51{word-spacing:4.920000px;}
.ws44{word-spacing:5.160000px;}
.ws14{word-spacing:5.220000px;}
.ws56{word-spacing:5.340000px;}
.ws39{word-spacing:5.520000px;}
.ws33{word-spacing:5.760000px;}
.ws55{word-spacing:5.940000px;}
.ws49{word-spacing:6.120000px;}
.ws10{word-spacing:6.480000px;}
.ws32{word-spacing:6.660000px;}
.ws23{word-spacing:6.900000px;}
.ws9{word-spacing:7.398000px;}
.ws24{word-spacing:7.800000px;}
.ws1c{word-spacing:7.920000px;}
.ws34{word-spacing:8.280000px;}
.ws1b{word-spacing:8.460000px;}
.ws16{word-spacing:8.580000px;}
.ws5{word-spacing:8.640000px;}
.ws5d{word-spacing:8.820000px;}
.ws50{word-spacing:9.900000px;}
.ws1a{word-spacing:9.960000px;}
.ws5b{word-spacing:10.620000px;}
.ws48{word-spacing:11.520000px;}
.ws2c{word-spacing:11.580000px;}
.ws41{word-spacing:12.180000px;}
.ws4e{word-spacing:12.240000px;}
.ws36{word-spacing:12.420000px;}
.ws5f{word-spacing:13.200000px;}
.ws27{word-spacing:13.320000px;}
.ws2d{word-spacing:13.800000px;}
.ws11{word-spacing:14.280000px;}
.ws53{word-spacing:14.340000px;}
.ws38{word-spacing:14.400000px;}
.ws4b{word-spacing:14.700000px;}
.ws26{word-spacing:14.880000px;}
.ws4a{word-spacing:17.160000px;}
.ws60{word-spacing:17.880000px;}
.ws3c{word-spacing:18.240000px;}
.ws13{word-spacing:18.300000px;}
.ws5c{word-spacing:18.360000px;}
.ws47{word-spacing:18.540000px;}
.ws54{word-spacing:19.980000px;}
.ws42{word-spacing:20.220000px;}
.ws65{word-spacing:20.880000px;}
.ws22{word-spacing:21.240000px;}
.ws43{word-spacing:21.600000px;}
.ws6d{word-spacing:22.080000px;}
.ws3f{word-spacing:22.560000px;}
.ws3d{word-spacing:23.580000px;}
.ws66{word-spacing:24.420000px;}
.ws59{word-spacing:24.660000px;}
.ws6c{word-spacing:25.320000px;}
.ws3a{word-spacing:27.180000px;}
.ws2f{word-spacing:28.500000px;}
.ws5a{word-spacing:32.340000px;}
.ws0{word-spacing:33.621000px;}
.ws3b{word-spacing:35.760000px;}
.ws68{word-spacing:37.740000px;}
.ws4d{word-spacing:40.260000px;}
.ws69{word-spacing:53.280000px;}
.ws19{word-spacing:205.200000px;}
.ws1{word-spacing:386.314800px;}
.ws17{word-spacing:1699.977600px;}
._27{margin-left:-34.983000px;}
._26{margin-left:-29.760000px;}
._25{margin-left:-16.380000px;}
._3{margin-left:-8.278800px;}
._1{margin-left:-6.678000px;}
._2{margin-left:-4.957200px;}
._5{margin-left:-2.997000px;}
._0{margin-left:-1.656000px;}
._4{width:1.080000px;}
._b{width:3.834000px;}
._24{width:5.220000px;}
._23{width:9.120000px;}
._1b{width:10.344000px;}
._21{width:13.960200px;}
._1a{width:16.776000px;}
._c{width:19.626000px;}
._22{width:21.540000px;}
._d{width:29.715000px;}
._e{width:31.272000px;}
._20{width:37.680000px;}
._1d{width:46.440000px;}
._18{width:48.780000px;}
._1e{width:49.800000px;}
._8{width:51.720000px;}
._19{width:56.220000px;}
._1c{width:57.600000px;}
._a{width:60.060000px;}
._9{width:61.440000px;}
._7{width:63.540000px;}
._6{width:66.660000px;}
._17{width:73.200000px;}
._1f{width:74.340000px;}
._13{width:97.783200px;}
._16{width:101.088000px;}
._11{width:133.218000px;}
._15{width:163.296000px;}
._12{width:175.176000px;}
._f{width:180.927000px;}
._10{width:214.218000px;}
._14{width:292.194000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y33{bottom:64.760550px;}
.y32{bottom:65.586600px;}
.y64{bottom:86.854650px;}
.y8c{bottom:90.514650px;}
.yb3{bottom:93.159600px;}
.y63{bottom:107.854650px;}
.y8b{bottom:111.514650px;}
.yb2{bottom:114.159600px;}
.y62{bottom:128.854650px;}
.y28{bottom:129.942450px;}
.y8a{bottom:132.514650px;}
.yb1{bottom:135.159600px;}
.y27{bottom:150.942450px;}
.yb7{bottom:156.159600px;}
.y61{bottom:164.854650px;}
.y89{bottom:168.514650px;}
.y26{bottom:171.942450px;}
.yb0{bottom:177.159600px;}
.y60{bottom:185.854650px;}
.y88{bottom:189.514650px;}
.y25{bottom:192.942450px;}
.yaf{bottom:198.159600px;}
.y5f{bottom:206.854650px;}
.y87{bottom:210.514650px;}
.y24{bottom:213.942450px;}
.yae{bottom:219.159600px;}
.y5e{bottom:227.854650px;}
.y86{bottom:231.514650px;}
.y23{bottom:234.942450px;}
.yad{bottom:240.159600px;}
.y5d{bottom:248.854650px;}
.y85{bottom:252.514650px;}
.y22{bottom:255.942450px;}
.yac{bottom:261.159600px;}
.y5c{bottom:269.854650px;}
.y84{bottom:273.514650px;}
.y21{bottom:276.942450px;}
.yab{bottom:282.159600px;}
.y5b{bottom:290.854650px;}
.y83{bottom:294.514650px;}
.y20{bottom:297.942450px;}
.yaa{bottom:303.159600px;}
.y5a{bottom:311.854650px;}
.y82{bottom:315.514650px;}
.ya9{bottom:324.159600px;}
.y59{bottom:332.854650px;}
.y1f{bottom:339.942450px;}
.ya8{bottom:345.159600px;}
.y81{bottom:351.514650px;}
.y58{bottom:353.854650px;}
.y1e{bottom:360.942450px;}
.yb6{bottom:366.159600px;}
.y80{bottom:372.514650px;}
.y57{bottom:374.854650px;}
.y1d{bottom:381.942450px;}
.ya7{bottom:387.159600px;}
.y7f{bottom:393.514650px;}
.y56{bottom:395.854650px;}
.y1c{bottom:402.942450px;}
.ya6{bottom:408.159600px;}
.y7e{bottom:414.514650px;}
.y55{bottom:416.854650px;}
.y1b{bottom:423.942450px;}
.ya5{bottom:429.159600px;}
.y7d{bottom:435.514650px;}
.y1a{bottom:444.942450px;}
.ya4{bottom:450.159600px;}
.y54{bottom:452.854650px;}
.y31{bottom:456.139950px;}
.y7c{bottom:456.514650px;}
.y19{bottom:465.942450px;}
.ya3{bottom:471.159600px;}
.y53{bottom:473.854650px;}
.y7b{bottom:477.514650px;}
.y30{bottom:478.639950px;}
.y18{bottom:486.942450px;}
.ya2{bottom:492.159600px;}
.y52{bottom:494.854650px;}
.y7a{bottom:498.514650px;}
.y2f{bottom:501.139950px;}
.y17{bottom:507.942450px;}
.ya1{bottom:513.159600px;}
.y51{bottom:515.854650px;}
.y79{bottom:519.514650px;}
.y16{bottom:528.942450px;}
.yb5{bottom:534.159600px;}
.y78{bottom:540.514650px;}
.y2e{bottom:541.639950px;}
.y15{bottom:549.942450px;}
.y4f{bottom:552.644700px;}
.ya0{bottom:555.159600px;}
.y77{bottom:561.514650px;}
.y4e{bottom:561.635700px;}
.y50{bottom:570.640200px;}
.y9f{bottom:576.159600px;}
.y14{bottom:582.978450px;}
.y2d{bottom:586.639950px;}
.y4b{bottom:591.997200px;}
.y9e{bottom:597.159600px;}
.y76{bottom:597.514650px;}
.y13{bottom:600.973950px;}
.y48{bottom:600.988200px;}
.y4d{bottom:601.001700px;}
.y4a{bottom:609.992700px;}
.y9d{bottom:618.159600px;}
.y75{bottom:618.514650px;}
.y12{bottom:618.969450px;}
.y47{bottom:618.983700px;}
.y4c{bottom:618.997200px;}
.y2c{bottom:627.139950px;}
.y49{bottom:627.988200px;}
.y11{bottom:636.964950px;}
.y9c{bottom:639.159600px;}
.y74{bottom:639.514650px;}
.y46{bottom:649.345200px;}
.y10{bottom:654.960450px;}
.y9b{bottom:660.159600px;}
.y73{bottom:660.514650px;}
.y2b{bottom:663.139950px;}
.y45{bottom:670.702200px;}
.yf{bottom:672.955950px;}
.y44{bottom:679.693200px;}
.y9a{bottom:681.159600px;}
.y72{bottom:681.514650px;}
.ye{bottom:690.951450px;}
.y2a{bottom:699.139950px;}
.yb4{bottom:702.159600px;}
.y71{bottom:702.514650px;}
.yd{bottom:708.946950px;}
.y43{bottom:710.054700px;}
.y42{bottom:719.045700px;}
.y99{bottom:723.159600px;}
.yc{bottom:726.942450px;}
.y29{bottom:735.139950px;}
.y98{bottom:744.159600px;}
.y70{bottom:744.514650px;}
.yb{bottom:744.942450px;}
.y41{bottom:749.515200px;}
.y97{bottom:765.159600px;}
.y6f{bottom:765.514650px;}
.y40{bottom:771.516750px;}
.ya{bottom:785.446950px;}
.y96{bottom:786.159600px;}
.y6e{bottom:786.514650px;}
.y3f{bottom:792.516750px;}
.y9{bottom:803.442450px;}
.y95{bottom:807.159600px;}
.y6d{bottom:807.514650px;}
.y8{bottom:821.442450px;}
.y94{bottom:828.159600px;}
.y6c{bottom:828.514650px;}
.y3e{bottom:828.516750px;}
.y93{bottom:849.159600px;}
.y6b{bottom:849.514650px;}
.y3d{bottom:849.516750px;}
.y7{bottom:858.946950px;}
.y92{bottom:870.159600px;}
.y6a{bottom:870.514650px;}
.y3c{bottom:870.516750px;}
.y6{bottom:876.942450px;}
.y91{bottom:891.159600px;}
.y3b{bottom:891.516750px;}
.y5{bottom:894.942450px;}
.y69{bottom:912.514650px;}
.y3a{bottom:912.516750px;}
.y90{bottom:933.159600px;}
.y68{bottom:933.514650px;}
.y39{bottom:933.516750px;}
.y4{bottom:939.949950px;}
.y8f{bottom:954.159600px;}
.y67{bottom:954.514650px;}
.y38{bottom:954.516750px;}
.y3{bottom:965.442450px;}
.y8e{bottom:975.159600px;}
.y66{bottom:975.514650px;}
.y37{bottom:975.516750px;}
.y8d{bottom:996.159600px;}
.y65{bottom:996.514650px;}
.y36{bottom:996.516750px;}
.y35{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y34{bottom:1039.374150px;}
.he{height:34.176000px;}
.hd{height:34.560000px;}
.hf{height:36.597656px;}
.h6{height:37.494141px;}
.h11{height:37.520508px;}
.h5{height:40.664062px;}
.h8{height:41.660156px;}
.h7{height:41.689453px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.ha{height:46.200000px;}
.h9{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h10{height:73.538508px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xc{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xb{left:73.559100px;}
.x11{left:83.730750px;}
.x17{left:88.320750px;}
.xf{left:90.104550px;}
.x16{left:96.569250px;}
.x12{left:99.566250px;}
.x15{left:104.061750px;}
.x10{left:190.769550px;}
.x19{left:196.995750px;}
.x18{left:200.546250px;}
.xa{left:224.187900px;}
.x3{left:238.879650px;}
.x1b{left:285.420750px;}
.x1a{left:297.030750px;}
.x4{left:300.147150px;}
.x1c{left:302.295750px;}
.x13{left:304.914750px;}
.x14{left:313.163250px;}
.x1d{left:399.929550px;}
.xe{left:412.272150px;}
.x1e{left:426.929550px;}
.x6{left:432.791550px;}
.x8{left:478.874850px;}
.x9{left:493.130850px;}
.x7{left:503.248050px;}
.xd{left:614.196150px;}
.x5{left:632.574300px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.v3{vertical-align:32.016000pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws57{word-spacing:-4.533333pt;}
.ws58{word-spacing:-4.480000pt;}
.ws35{word-spacing:-3.840000pt;}
.wsa{word-spacing:-3.360000pt;}
.ws6e{word-spacing:-3.253333pt;}
.wse{word-spacing:-2.880000pt;}
.ws20{word-spacing:-2.826667pt;}
.ws12{word-spacing:-2.773333pt;}
.wsd{word-spacing:-2.346667pt;}
.ws4f{word-spacing:-2.240000pt;}
.ws31{word-spacing:-1.866667pt;}
.ws5e{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.680000pt;}
.ws67{word-spacing:-1.493333pt;}
.ws52{word-spacing:-1.173333pt;}
.ws2a{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.066667pt;}
.ws61{word-spacing:-1.013333pt;}
.ws4{word-spacing:-0.960000pt;}
.ws1e{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.816000pt;}
.ws30{word-spacing:-0.586667pt;}
.ws62{word-spacing:-0.266667pt;}
.ws1f{word-spacing:-0.240000pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:0.213333pt;}
.ws4c{word-spacing:0.533333pt;}
.ws18{word-spacing:0.640000pt;}
.ws21{word-spacing:0.693333pt;}
.ws25{word-spacing:1.120000pt;}
.ws7{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.173333pt;}
.ws2e{word-spacing:1.226667pt;}
.ws46{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.493333pt;}
.ws37{word-spacing:1.546667pt;}
.ws28{word-spacing:1.706667pt;}
.wsb{word-spacing:2.016000pt;}
.ws29{word-spacing:2.080000pt;}
.ws40{word-spacing:2.400000pt;}
.ws63{word-spacing:2.453333pt;}
.ws3e{word-spacing:2.720000pt;}
.ws45{word-spacing:2.773333pt;}
.wsc{word-spacing:2.986667pt;}
.ws64{word-spacing:3.200000pt;}
.ws6a{word-spacing:3.253333pt;}
.ws6b{word-spacing:3.520000pt;}
.ws51{word-spacing:4.373333pt;}
.ws44{word-spacing:4.586667pt;}
.ws14{word-spacing:4.640000pt;}
.ws56{word-spacing:4.746667pt;}
.ws39{word-spacing:4.906667pt;}
.ws33{word-spacing:5.120000pt;}
.ws55{word-spacing:5.280000pt;}
.ws49{word-spacing:5.440000pt;}
.ws10{word-spacing:5.760000pt;}
.ws32{word-spacing:5.920000pt;}
.ws23{word-spacing:6.133333pt;}
.ws9{word-spacing:6.576000pt;}
.ws24{word-spacing:6.933333pt;}
.ws1c{word-spacing:7.040000pt;}
.ws34{word-spacing:7.360000pt;}
.ws1b{word-spacing:7.520000pt;}
.ws16{word-spacing:7.626667pt;}
.ws5{word-spacing:7.680000pt;}
.ws5d{word-spacing:7.840000pt;}
.ws50{word-spacing:8.800000pt;}
.ws1a{word-spacing:8.853333pt;}
.ws5b{word-spacing:9.440000pt;}
.ws48{word-spacing:10.240000pt;}
.ws2c{word-spacing:10.293333pt;}
.ws41{word-spacing:10.826667pt;}
.ws4e{word-spacing:10.880000pt;}
.ws36{word-spacing:11.040000pt;}
.ws5f{word-spacing:11.733333pt;}
.ws27{word-spacing:11.840000pt;}
.ws2d{word-spacing:12.266667pt;}
.ws11{word-spacing:12.693333pt;}
.ws53{word-spacing:12.746667pt;}
.ws38{word-spacing:12.800000pt;}
.ws4b{word-spacing:13.066667pt;}
.ws26{word-spacing:13.226667pt;}
.ws4a{word-spacing:15.253333pt;}
.ws60{word-spacing:15.893333pt;}
.ws3c{word-spacing:16.213333pt;}
.ws13{word-spacing:16.266667pt;}
.ws5c{word-spacing:16.320000pt;}
.ws47{word-spacing:16.480000pt;}
.ws54{word-spacing:17.760000pt;}
.ws42{word-spacing:17.973333pt;}
.ws65{word-spacing:18.560000pt;}
.ws22{word-spacing:18.880000pt;}
.ws43{word-spacing:19.200000pt;}
.ws6d{word-spacing:19.626667pt;}
.ws3f{word-spacing:20.053333pt;}
.ws3d{word-spacing:20.960000pt;}
.ws66{word-spacing:21.706667pt;}
.ws59{word-spacing:21.920000pt;}
.ws6c{word-spacing:22.506667pt;}
.ws3a{word-spacing:24.160000pt;}
.ws2f{word-spacing:25.333333pt;}
.ws5a{word-spacing:28.746667pt;}
.ws0{word-spacing:29.885333pt;}
.ws3b{word-spacing:31.786667pt;}
.ws68{word-spacing:33.546667pt;}
.ws4d{word-spacing:35.786667pt;}
.ws69{word-spacing:47.360000pt;}
.ws19{word-spacing:182.400000pt;}
.ws1{word-spacing:343.390933pt;}
.ws17{word-spacing:1511.091200pt;}
._27{margin-left:-31.096000pt;}
._26{margin-left:-26.453333pt;}
._25{margin-left:-14.560000pt;}
._3{margin-left:-7.358933pt;}
._1{margin-left:-5.936000pt;}
._2{margin-left:-4.406400pt;}
._5{margin-left:-2.664000pt;}
._0{margin-left:-1.472000pt;}
._4{width:0.960000pt;}
._b{width:3.408000pt;}
._24{width:4.640000pt;}
._23{width:8.106667pt;}
._1b{width:9.194667pt;}
._21{width:12.409067pt;}
._1a{width:14.912000pt;}
._c{width:17.445333pt;}
._22{width:19.146667pt;}
._d{width:26.413333pt;}
._e{width:27.797333pt;}
._20{width:33.493333pt;}
._1d{width:41.280000pt;}
._18{width:43.360000pt;}
._1e{width:44.266667pt;}
._8{width:45.973333pt;}
._19{width:49.973333pt;}
._1c{width:51.200000pt;}
._a{width:53.386667pt;}
._9{width:54.613333pt;}
._7{width:56.480000pt;}
._6{width:59.253333pt;}
._17{width:65.066667pt;}
._1f{width:66.080000pt;}
._13{width:86.918400pt;}
._16{width:89.856000pt;}
._11{width:118.416000pt;}
._15{width:145.152000pt;}
._12{width:155.712000pt;}
._f{width:160.824000pt;}
._10{width:190.416000pt;}
._14{width:259.728000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y33{bottom:57.564933pt;}
.y32{bottom:58.299200pt;}
.y64{bottom:77.204133pt;}
.y8c{bottom:80.457467pt;}
.yb3{bottom:82.808533pt;}
.y63{bottom:95.870800pt;}
.y8b{bottom:99.124133pt;}
.yb2{bottom:101.475200pt;}
.y62{bottom:114.537467pt;}
.y28{bottom:115.504400pt;}
.y8a{bottom:117.790800pt;}
.yb1{bottom:120.141867pt;}
.y27{bottom:134.171067pt;}
.yb7{bottom:138.808533pt;}
.y61{bottom:146.537467pt;}
.y89{bottom:149.790800pt;}
.y26{bottom:152.837733pt;}
.yb0{bottom:157.475200pt;}
.y60{bottom:165.204133pt;}
.y88{bottom:168.457467pt;}
.y25{bottom:171.504400pt;}
.yaf{bottom:176.141867pt;}
.y5f{bottom:183.870800pt;}
.y87{bottom:187.124133pt;}
.y24{bottom:190.171067pt;}
.yae{bottom:194.808533pt;}
.y5e{bottom:202.537467pt;}
.y86{bottom:205.790800pt;}
.y23{bottom:208.837733pt;}
.yad{bottom:213.475200pt;}
.y5d{bottom:221.204133pt;}
.y85{bottom:224.457467pt;}
.y22{bottom:227.504400pt;}
.yac{bottom:232.141867pt;}
.y5c{bottom:239.870800pt;}
.y84{bottom:243.124133pt;}
.y21{bottom:246.171067pt;}
.yab{bottom:250.808533pt;}
.y5b{bottom:258.537467pt;}
.y83{bottom:261.790800pt;}
.y20{bottom:264.837733pt;}
.yaa{bottom:269.475200pt;}
.y5a{bottom:277.204133pt;}
.y82{bottom:280.457467pt;}
.ya9{bottom:288.141867pt;}
.y59{bottom:295.870800pt;}
.y1f{bottom:302.171067pt;}
.ya8{bottom:306.808533pt;}
.y81{bottom:312.457467pt;}
.y58{bottom:314.537467pt;}
.y1e{bottom:320.837733pt;}
.yb6{bottom:325.475200pt;}
.y80{bottom:331.124133pt;}
.y57{bottom:333.204133pt;}
.y1d{bottom:339.504400pt;}
.ya7{bottom:344.141867pt;}
.y7f{bottom:349.790800pt;}
.y56{bottom:351.870800pt;}
.y1c{bottom:358.171067pt;}
.ya6{bottom:362.808533pt;}
.y7e{bottom:368.457467pt;}
.y55{bottom:370.537467pt;}
.y1b{bottom:376.837733pt;}
.ya5{bottom:381.475200pt;}
.y7d{bottom:387.124133pt;}
.y1a{bottom:395.504400pt;}
.ya4{bottom:400.141867pt;}
.y54{bottom:402.537467pt;}
.y31{bottom:405.457733pt;}
.y7c{bottom:405.790800pt;}
.y19{bottom:414.171067pt;}
.ya3{bottom:418.808533pt;}
.y53{bottom:421.204133pt;}
.y7b{bottom:424.457467pt;}
.y30{bottom:425.457733pt;}
.y18{bottom:432.837733pt;}
.ya2{bottom:437.475200pt;}
.y52{bottom:439.870800pt;}
.y7a{bottom:443.124133pt;}
.y2f{bottom:445.457733pt;}
.y17{bottom:451.504400pt;}
.ya1{bottom:456.141867pt;}
.y51{bottom:458.537467pt;}
.y79{bottom:461.790800pt;}
.y16{bottom:470.171067pt;}
.yb5{bottom:474.808533pt;}
.y78{bottom:480.457467pt;}
.y2e{bottom:481.457733pt;}
.y15{bottom:488.837733pt;}
.y4f{bottom:491.239733pt;}
.ya0{bottom:493.475200pt;}
.y77{bottom:499.124133pt;}
.y4e{bottom:499.231733pt;}
.y50{bottom:507.235733pt;}
.y9f{bottom:512.141867pt;}
.y14{bottom:518.203067pt;}
.y2d{bottom:521.457733pt;}
.y4b{bottom:526.219733pt;}
.y9e{bottom:530.808533pt;}
.y76{bottom:531.124133pt;}
.y13{bottom:534.199067pt;}
.y48{bottom:534.211733pt;}
.y4d{bottom:534.223733pt;}
.y4a{bottom:542.215733pt;}
.y9d{bottom:549.475200pt;}
.y75{bottom:549.790800pt;}
.y12{bottom:550.195067pt;}
.y47{bottom:550.207733pt;}
.y4c{bottom:550.219733pt;}
.y2c{bottom:557.457733pt;}
.y49{bottom:558.211733pt;}
.y11{bottom:566.191067pt;}
.y9c{bottom:568.141867pt;}
.y74{bottom:568.457467pt;}
.y46{bottom:577.195733pt;}
.y10{bottom:582.187067pt;}
.y9b{bottom:586.808533pt;}
.y73{bottom:587.124133pt;}
.y2b{bottom:589.457733pt;}
.y45{bottom:596.179733pt;}
.yf{bottom:598.183067pt;}
.y44{bottom:604.171733pt;}
.y9a{bottom:605.475200pt;}
.y72{bottom:605.790800pt;}
.ye{bottom:614.179067pt;}
.y2a{bottom:621.457733pt;}
.yb4{bottom:624.141867pt;}
.y71{bottom:624.457467pt;}
.yd{bottom:630.175067pt;}
.y43{bottom:631.159733pt;}
.y42{bottom:639.151733pt;}
.y99{bottom:642.808533pt;}
.yc{bottom:646.171067pt;}
.y29{bottom:653.457733pt;}
.y98{bottom:661.475200pt;}
.y70{bottom:661.790800pt;}
.yb{bottom:662.171067pt;}
.y41{bottom:666.235733pt;}
.y97{bottom:680.141867pt;}
.y6f{bottom:680.457467pt;}
.y40{bottom:685.792667pt;}
.ya{bottom:698.175067pt;}
.y96{bottom:698.808533pt;}
.y6e{bottom:699.124133pt;}
.y3f{bottom:704.459333pt;}
.y9{bottom:714.171067pt;}
.y95{bottom:717.475200pt;}
.y6d{bottom:717.790800pt;}
.y8{bottom:730.171067pt;}
.y94{bottom:736.141867pt;}
.y6c{bottom:736.457467pt;}
.y3e{bottom:736.459333pt;}
.y93{bottom:754.808533pt;}
.y6b{bottom:755.124133pt;}
.y3d{bottom:755.126000pt;}
.y7{bottom:763.508400pt;}
.y92{bottom:773.475200pt;}
.y6a{bottom:773.790800pt;}
.y3c{bottom:773.792667pt;}
.y6{bottom:779.504400pt;}
.y91{bottom:792.141867pt;}
.y3b{bottom:792.459333pt;}
.y5{bottom:795.504400pt;}
.y69{bottom:811.124133pt;}
.y3a{bottom:811.126000pt;}
.y90{bottom:829.475200pt;}
.y68{bottom:829.790800pt;}
.y39{bottom:829.792667pt;}
.y4{bottom:835.511067pt;}
.y8f{bottom:848.141867pt;}
.y67{bottom:848.457467pt;}
.y38{bottom:848.459333pt;}
.y3{bottom:858.171067pt;}
.y8e{bottom:866.808533pt;}
.y66{bottom:867.124133pt;}
.y37{bottom:867.126000pt;}
.y8d{bottom:885.475200pt;}
.y65{bottom:885.790800pt;}
.y36{bottom:885.792667pt;}
.y35{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y34{bottom:923.888133pt;}
.he{height:30.378667pt;}
.hd{height:30.720000pt;}
.hf{height:32.531250pt;}
.h6{height:33.328125pt;}
.h11{height:33.351562pt;}
.h5{height:36.145833pt;}
.h8{height:37.031250pt;}
.h7{height:37.057292pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.ha{height:41.066667pt;}
.h9{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h10{height:65.367563pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xc{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xb{left:65.385867pt;}
.x11{left:74.427333pt;}
.x17{left:78.507333pt;}
.xf{left:80.092933pt;}
.x16{left:85.839333pt;}
.x12{left:88.503333pt;}
.x15{left:92.499333pt;}
.x10{left:169.572933pt;}
.x19{left:175.107333pt;}
.x18{left:178.263333pt;}
.xa{left:199.278133pt;}
.x3{left:212.337467pt;}
.x1b{left:253.707333pt;}
.x1a{left:264.027333pt;}
.x4{left:266.797467pt;}
.x1c{left:268.707333pt;}
.x13{left:271.035333pt;}
.x14{left:278.367333pt;}
.x1d{left:355.492933pt;}
.xe{left:366.464133pt;}
.x1e{left:379.492933pt;}
.x6{left:384.703600pt;}
.x8{left:425.666533pt;}
.x9{left:438.338533pt;}
.x7{left:447.331600pt;}
.xd{left:545.952133pt;}
.x5{left:562.288267pt;}
}




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