
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_4f4765aa96f895646dda1a33.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8fad427a43e81cbbcb4969e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_68de68101c4850e10457b41f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6de3c373a5f884331810f951.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4d30423430182c56bbb08d4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ae43abdc709b3b88f2b054b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_f7e7ad6cd8eb28cdf3ce8f3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3f9e0d04129d57f7bbbc325b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.274800px;}
.ls7{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.109440px;}
.lse{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.567600px;}
.ls12{letter-spacing:6.785280px;}
.lsb{letter-spacing:7.560000px;}
.lsc{letter-spacing:39.905280px;}
.lsd{letter-spacing:59.345280px;}
.ls8{letter-spacing:106.560000px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws0{word-spacing:-59.760000px;}
.wsa{word-spacing:-28.712400px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.ws5{word-spacing:-16.297800px;}
.wsf{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.939200px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-2.053440px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._7{width:2.649600px;}
._6{width:3.768960px;}
._d{width:4.811280px;}
._8{width:5.952000px;}
._a{width:7.683840px;}
._b{width:8.809920px;}
._c{width:9.819840px;}
._18{width:10.996800px;}
._9{width:12.259200px;}
._4{width:13.262400px;}
._3{width:14.587200px;}
._f{width:17.952000px;}
._e{width:19.275840px;}
._13{width:21.026880px;}
._10{width:22.256640px;}
._21{width:23.412480px;}
._19{width:24.508800px;}
._1f{width:25.870080px;}
._1a{width:27.055680px;}
._12{width:28.314240px;}
._25{width:29.654400px;}
._22{width:30.735360px;}
._17{width:32.653200px;}
._14{width:33.914880px;}
._33{width:34.923120px;}
._38{width:36.071040px;}
._15{width:37.124160px;}
._16{width:38.293440px;}
._23{width:39.508800px;}
._24{width:40.671360px;}
._1d{width:42.128640px;}
._1e{width:43.498560px;}
._32{width:44.645760px;}
._1c{width:46.632960px;}
._1b{width:48.861120px;}
._2b{width:50.408640px;}
._3a{width:53.985600px;}
._3b{width:55.538880px;}
._11{width:59.748480px;}
._2c{width:61.338240px;}
._2d{width:62.664000px;}
._28{width:65.246400px;}
._29{width:66.571200px;}
._39{width:67.697280px;}
._2e{width:83.197440px;}
._35{width:87.466560px;}
._34{width:88.827840px;}
._37{width:95.451840px;}
._36{width:97.306560px;}
._20{width:105.754080px;}
._30{width:113.866560px;}
._2f{width:114.992640px;}
._31{width:116.082240px;}
._2a{width:125.763840px;}
._27{width:198.546720px;}
._26{width:199.976640px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(33,33,33);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y9c{bottom:13.140000px;}
.y9d{bottom:13.500000px;}
.y9f{bottom:13.680000px;}
.yb0{bottom:15.480000px;}
.ya7{bottom:15.525000px;}
.ybe{bottom:19.074000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.yae{bottom:21.420000px;}
.y35{bottom:37.080000px;}
.ya5{bottom:41.940000px;}
.yac{bottom:42.120000px;}
.yb3{bottom:46.650000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y99{bottom:92.376000px;}
.y30{bottom:97.596000px;}
.y68{bottom:99.396000px;}
.y5c{bottom:99.756000px;}
.yc0{bottom:100.656000px;}
.y81{bottom:104.076000px;}
.y61{bottom:112.536000px;}
.y98{bottom:120.816000px;}
.y2f{bottom:126.036000px;}
.y67{bottom:127.836000px;}
.y5b{bottom:128.196000px;}
.ybf{bottom:129.096000px;}
.y80{bottom:132.516000px;}
.y60{bottom:137.196000px;}
.ybd{bottom:145.116000px;}
.y97{bottom:149.436000px;}
.y2e{bottom:154.470000px;}
.y66{bottom:156.270000px;}
.y5a{bottom:156.630000px;}
.y7f{bottom:160.950000px;}
.y96{bottom:177.870000px;}
.ybc{bottom:179.850000px;}
.y2d{bottom:182.910000px;}
.y59{bottom:185.250000px;}
.y7e{bottom:189.390000px;}
.y95{bottom:206.310000px;}
.ybb{bottom:209.190000px;}
.y2c{bottom:211.350000px;}
.y58{bottom:213.690000px;}
.y7d{bottom:217.830000px;}
.y94{bottom:234.750000px;}
.yba{bottom:238.350000px;}
.y2b{bottom:239.790000px;}
.yc1{bottom:241.770000px;}
.y57{bottom:242.130000px;}
.y7c{bottom:246.270000px;}
.y93{bottom:263.190000px;}
.y2a{bottom:268.230000px;}
.y65{bottom:270.210000px;}
.y56{bottom:270.570000px;}
.y7b{bottom:274.710000px;}
.y92{bottom:291.630000px;}
.y29{bottom:296.850000px;}
.y55{bottom:299.010000px;}
.y7a{bottom:303.150000px;}
.yb9{bottom:309.450000px;}
.y91{bottom:320.115000px;}
.y28{bottom:325.335000px;}
.y5f{bottom:326.055000px;}
.yb8{bottom:326.775000px;}
.y54{bottom:327.495000px;}
.y79{bottom:331.635000px;}
.y90{bottom:348.555000px;}
.y5e{bottom:350.715000px;}
.y27{bottom:353.415000px;}
.y31{bottom:353.775000px;}
.y53{bottom:355.935000px;}
.yb7{bottom:358.635000px;}
.y78{bottom:360.255000px;}
.y8f{bottom:376.995000px;}
.y52{bottom:384.375000px;}
.y26{bottom:385.995000px;}
.y77{bottom:388.695000px;}
.yb6{bottom:390.495000px;}
.y8e{bottom:405.615000px;}
.y51{bottom:412.815000px;}
.y25{bottom:414.435000px;}
.y76{bottom:416.775000px;}
.yb5{bottom:422.355000px;}
.y8d{bottom:434.055000px;}
.y50{bottom:441.435000px;}
.y24{bottom:442.875000px;}
.y75{bottom:445.575000px;}
.yb4{bottom:454.035000px;}
.y8c{bottom:462.495000px;}
.y64{bottom:469.515000px;}
.y4f{bottom:469.875000px;}
.y23{bottom:471.315000px;}
.y74{bottom:474.015000px;}
.y8b{bottom:490.935000px;}
.y4e{bottom:498.315000px;}
.y22{bottom:499.755000px;}
.y73{bottom:502.455000px;}
.y8a{bottom:519.375000px;}
.y4d{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.y72{bottom:531.075000px;}
.yb2{bottom:542.415000px;}
.y89{bottom:547.455000px;}
.y4c{bottom:555.195000px;}
.y20{bottom:556.635000px;}
.y71{bottom:560.595000px;}
.yb1{bottom:573.585000px;}
.y88{bottom:576.285000px;}
.y4b{bottom:583.665000px;}
.y1f{bottom:585.105000px;}
.y70{bottom:589.065000px;}
.y87{bottom:600.945000px;}
.yaf{bottom:604.725000px;}
.y4a{bottom:612.105000px;}
.y1e{bottom:613.725000px;}
.y6f{bottom:617.685000px;}
.yad{bottom:635.865000px;}
.y9a{bottom:640.185000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.y6e{bottom:647.205000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.yab{bottom:672.945000px;}
.y6d{bottom:675.645000px;}
.y47{bottom:697.605000px;}
.y6c{bottom:704.085000px;}
.y1b{bottom:704.985000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.y6b{bottom:732.165000px;}
.yaa{bottom:744.225000px;}
.y45{bottom:754.485000px;}
.y86{bottom:758.265000px;}
.ya9{bottom:759.885000px;}
.y6a{bottom:760.605000px;}
.y19{bottom:761.865000px;}
.y85{bottom:782.745000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.y69{bottom:785.625000px;}
.ya8{bottom:789.045000px;}
.y63{bottom:811.005000px;}
.y43{bottom:811.365000px;}
.ya6{bottom:818.385000px;}
.y17{bottom:818.745000px;}
.y82{bottom:839.490000px;}
.y42{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.ya4{bottom:849.570000px;}
.y41{bottom:868.290000px;}
.y15{bottom:875.850000px;}
.y40{bottom:896.730000px;}
.y14{bottom:898.350000px;}
.ya3{bottom:920.670000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:932.730000px;}
.ya2{bottom:936.510000px;}
.y84{bottom:946.950000px;}
.y5d{bottom:953.430000px;}
.y3e{bottom:953.790000px;}
.y12{bottom:955.230000px;}
.ya1{bottom:965.670000px;}
.y83{bottom:971.610000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:989.610000px;}
.ya0{bottom:1008.330000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y9e{bottom:1023.990000px;}
.y4{bottom:1032.810000px;}
.yc2{bottom:1038.750000px;}
.y3b{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y9b{bottom:1053.330000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y62{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h15{height:28.440000px;}
.h13{height:28.476000px;}
.h14{height:28.620000px;}
.h1a{height:30.420000px;}
.h17{height:30.456000px;}
.h6{height:33.480000px;}
.h1c{height:34.020000px;}
.h19{height:36.360000px;}
.hb{height:41.250938px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h16{height:56.880000px;}
.h18{height:57.060000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h1b{height:61.596000px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.h1d{height:65.846250px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h12{height:68.956875px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.hf{height:111.043849px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w23{width:47.160000px;}
.w1a{width:58.860000px;}
.w11{width:59.220000px;}
.w2c{width:64.980000px;}
.w1d{width:84.240000px;}
.w14{width:84.276000px;}
.w26{width:84.816000px;}
.w2f{width:95.760000px;}
.w12{width:96.876000px;}
.w31{width:98.820000px;}
.w24{width:105.156000px;}
.wd{width:108.396000px;}
.w9{width:109.116000px;}
.w22{width:115.776000px;}
.w19{width:118.476000px;}
.w10{width:119.016000px;}
.w30{width:124.056000px;}
.w1c{width:125.136000px;}
.w1f{width:126.180000px;}
.w13{width:126.900000px;}
.w25{width:128.700000px;}
.w2b{width:130.356000px;}
.w1b{width:133.416000px;}
.w2e{width:137.736000px;}
.w28{width:139.320000px;}
.w2d{width:146.916000px;}
.w15{width:148.176000px;}
.w1e{width:149.796000px;}
.w29{width:164.010000px;}
.w16{width:165.420000px;}
.w27{width:175.170000px;}
.w20{width:178.050000px;}
.w17{width:178.950000px;}
.w32{width:196.050000px;}
.wc{width:217.290000px;}
.w8{width:218.550000px;}
.wf{width:229.710000px;}
.wb{width:230.970000px;}
.we{width:244.650000px;}
.wa{width:245.910000px;}
.w33{width:320.250000px;}
.w3{width:361.335000px;}
.w21{width:361.830000px;}
.w18{width:399.315000px;}
.w2a{width:401.475000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xf{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x11{left:167.249986px;}
.x21{left:170.310000px;}
.x17{left:173.370000px;}
.x27{left:184.710000px;}
.x22{left:218.550000px;}
.x18{left:233.310000px;}
.x28{left:250.410000px;}
.x15{left:271.830000px;}
.x12{left:272.910000px;}
.x10{left:306.074986px;}
.x23{left:324.795000px;}
.x19{left:330.915000px;}
.x1d{left:366.735000px;}
.xc{left:380.954986px;}
.x13{left:382.935000px;}
.x29{left:398.055000px;}
.xe{left:432.074986px;}
.x24{left:454.575000px;}
.x1a{left:458.535000px;}
.x8{left:486.104986px;}
.x1e{left:492.765000px;}
.xd{left:513.104986px;}
.x5{left:521.025000px;}
.x2a{left:536.505000px;}
.x25{left:540.465000px;}
.x1b{left:543.525000px;}
.x1f{left:577.905000px;}
.x16{left:626.325000px;}
.x14{left:629.565000px;}
.x2b{left:632.985000px;}
.x1c{left:692.430000px;}
.x26{left:716.730000px;}
.x20{left:728.430000px;}
.x2c{left:757.950000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.244267pt;}
.ls7{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.504533pt;}
.ls12{letter-spacing:6.031360pt;}
.lsb{letter-spacing:6.720000pt;}
.lsc{letter-spacing:35.471360pt;}
.lsd{letter-spacing:52.751360pt;}
.ls8{letter-spacing:94.720000pt;}
.ls0{letter-spacing:184.370347pt;}
.wsb{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.120000pt;}
.wsa{word-spacing:-25.522133pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.486933pt;}
.wsf{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.390400pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-1.825280pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._7{width:2.355200pt;}
._6{width:3.350187pt;}
._d{width:4.276693pt;}
._8{width:5.290667pt;}
._a{width:6.830080pt;}
._b{width:7.831040pt;}
._c{width:8.728747pt;}
._18{width:9.774933pt;}
._9{width:10.897067pt;}
._4{width:11.788800pt;}
._3{width:12.966400pt;}
._f{width:15.957333pt;}
._e{width:17.134080pt;}
._13{width:18.690560pt;}
._10{width:19.783680pt;}
._21{width:20.811093pt;}
._19{width:21.785600pt;}
._1f{width:22.995627pt;}
._1a{width:24.049493pt;}
._12{width:25.168213pt;}
._25{width:26.359467pt;}
._22{width:27.320320pt;}
._17{width:29.025067pt;}
._14{width:30.146560pt;}
._33{width:31.042773pt;}
._38{width:32.063147pt;}
._15{width:32.999253pt;}
._16{width:34.038613pt;}
._23{width:35.118933pt;}
._24{width:36.152320pt;}
._1d{width:37.447680pt;}
._1e{width:38.665387pt;}
._32{width:39.685120pt;}
._1c{width:41.451520pt;}
._1b{width:43.432107pt;}
._2b{width:44.807680pt;}
._3a{width:47.987200pt;}
._3b{width:49.367893pt;}
._11{width:53.109760pt;}
._2c{width:54.522880pt;}
._2d{width:55.701333pt;}
._28{width:57.996800pt;}
._29{width:59.174400pt;}
._39{width:60.175360pt;}
._2e{width:73.953280pt;}
._35{width:77.748053pt;}
._34{width:78.958080pt;}
._37{width:84.846080pt;}
._36{width:86.494720pt;}
._20{width:94.003627pt;}
._30{width:101.214720pt;}
._2f{width:102.215680pt;}
._31{width:103.184213pt;}
._2a{width:111.790080pt;}
._27{width:176.485973pt;}
._26{width:177.757013pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y9c{bottom:11.680000pt;}
.y9d{bottom:12.000000pt;}
.y9f{bottom:12.160000pt;}
.yb0{bottom:13.760000pt;}
.ya7{bottom:13.800000pt;}
.ybe{bottom:16.954667pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.yae{bottom:19.040000pt;}
.y35{bottom:32.960000pt;}
.ya5{bottom:37.280000pt;}
.yac{bottom:37.440000pt;}
.yb3{bottom:41.466667pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y99{bottom:82.112000pt;}
.y30{bottom:86.752000pt;}
.y68{bottom:88.352000pt;}
.y5c{bottom:88.672000pt;}
.yc0{bottom:89.472000pt;}
.y81{bottom:92.512000pt;}
.y61{bottom:100.032000pt;}
.y98{bottom:107.392000pt;}
.y2f{bottom:112.032000pt;}
.y67{bottom:113.632000pt;}
.y5b{bottom:113.952000pt;}
.ybf{bottom:114.752000pt;}
.y80{bottom:117.792000pt;}
.y60{bottom:121.952000pt;}
.ybd{bottom:128.992000pt;}
.y97{bottom:132.832000pt;}
.y2e{bottom:137.306667pt;}
.y66{bottom:138.906667pt;}
.y5a{bottom:139.226667pt;}
.y7f{bottom:143.066667pt;}
.y96{bottom:158.106667pt;}
.ybc{bottom:159.866667pt;}
.y2d{bottom:162.586667pt;}
.y59{bottom:164.666667pt;}
.y7e{bottom:168.346667pt;}
.y95{bottom:183.386667pt;}
.ybb{bottom:185.946667pt;}
.y2c{bottom:187.866667pt;}
.y58{bottom:189.946667pt;}
.y7d{bottom:193.626667pt;}
.y94{bottom:208.666667pt;}
.yba{bottom:211.866667pt;}
.y2b{bottom:213.146667pt;}
.yc1{bottom:214.906667pt;}
.y57{bottom:215.226667pt;}
.y7c{bottom:218.906667pt;}
.y93{bottom:233.946667pt;}
.y2a{bottom:238.426667pt;}
.y65{bottom:240.186667pt;}
.y56{bottom:240.506667pt;}
.y7b{bottom:244.186667pt;}
.y92{bottom:259.226667pt;}
.y29{bottom:263.866667pt;}
.y55{bottom:265.786667pt;}
.y7a{bottom:269.466667pt;}
.yb9{bottom:275.066667pt;}
.y91{bottom:284.546667pt;}
.y28{bottom:289.186667pt;}
.y5f{bottom:289.826667pt;}
.yb8{bottom:290.466667pt;}
.y54{bottom:291.106667pt;}
.y79{bottom:294.786667pt;}
.y90{bottom:309.826667pt;}
.y5e{bottom:311.746667pt;}
.y27{bottom:314.146667pt;}
.y31{bottom:314.466667pt;}
.y53{bottom:316.386667pt;}
.yb7{bottom:318.786667pt;}
.y78{bottom:320.226667pt;}
.y8f{bottom:335.106667pt;}
.y52{bottom:341.666667pt;}
.y26{bottom:343.106667pt;}
.y77{bottom:345.506667pt;}
.yb6{bottom:347.106667pt;}
.y8e{bottom:360.546667pt;}
.y51{bottom:366.946667pt;}
.y25{bottom:368.386667pt;}
.y76{bottom:370.466667pt;}
.yb5{bottom:375.426667pt;}
.y8d{bottom:385.826667pt;}
.y50{bottom:392.386667pt;}
.y24{bottom:393.666667pt;}
.y75{bottom:396.066667pt;}
.yb4{bottom:403.586667pt;}
.y8c{bottom:411.106667pt;}
.y64{bottom:417.346667pt;}
.y4f{bottom:417.666667pt;}
.y23{bottom:418.946667pt;}
.y74{bottom:421.346667pt;}
.y8b{bottom:436.386667pt;}
.y4e{bottom:442.946667pt;}
.y22{bottom:444.226667pt;}
.y73{bottom:446.626667pt;}
.y8a{bottom:461.666667pt;}
.y4d{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.y72{bottom:472.066667pt;}
.yb2{bottom:482.146667pt;}
.y89{bottom:486.626667pt;}
.y4c{bottom:493.506667pt;}
.y20{bottom:494.786667pt;}
.y71{bottom:498.306667pt;}
.yb1{bottom:509.853333pt;}
.y88{bottom:512.253333pt;}
.y4b{bottom:518.813333pt;}
.y1f{bottom:520.093333pt;}
.y70{bottom:523.613333pt;}
.y87{bottom:534.173333pt;}
.yaf{bottom:537.533333pt;}
.y4a{bottom:544.093333pt;}
.y1e{bottom:545.533333pt;}
.y6f{bottom:549.053333pt;}
.yad{bottom:565.213333pt;}
.y9a{bottom:569.053333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.y6e{bottom:575.293333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.yab{bottom:598.173333pt;}
.y6d{bottom:600.573333pt;}
.y47{bottom:620.093333pt;}
.y6c{bottom:625.853333pt;}
.y1b{bottom:626.653333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.y6b{bottom:650.813333pt;}
.yaa{bottom:661.533333pt;}
.y45{bottom:670.653333pt;}
.y86{bottom:674.013333pt;}
.ya9{bottom:675.453333pt;}
.y6a{bottom:676.093333pt;}
.y19{bottom:677.213333pt;}
.y85{bottom:695.773333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.y69{bottom:698.333333pt;}
.ya8{bottom:701.373333pt;}
.y63{bottom:720.893333pt;}
.y43{bottom:721.213333pt;}
.ya6{bottom:727.453333pt;}
.y17{bottom:727.773333pt;}
.y82{bottom:746.213333pt;}
.y42{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.ya4{bottom:755.173333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:778.533333pt;}
.y40{bottom:797.093333pt;}
.y14{bottom:798.533333pt;}
.ya3{bottom:818.373333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:829.093333pt;}
.ya2{bottom:832.453333pt;}
.y84{bottom:841.733333pt;}
.y5d{bottom:847.493333pt;}
.y3e{bottom:847.813333pt;}
.y12{bottom:849.093333pt;}
.ya1{bottom:858.373333pt;}
.y83{bottom:863.653333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:879.653333pt;}
.ya0{bottom:896.293333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y9e{bottom:910.213333pt;}
.y4{bottom:918.053333pt;}
.yc2{bottom:923.333333pt;}
.y3b{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y9b{bottom:936.293333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y62{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h15{height:25.280000pt;}
.h13{height:25.312000pt;}
.h14{height:25.440000pt;}
.h1a{height:27.040000pt;}
.h17{height:27.072000pt;}
.h6{height:29.760000pt;}
.h1c{height:30.240000pt;}
.h19{height:32.320000pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h16{height:50.560000pt;}
.h18{height:50.720000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h1b{height:54.752000pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.h1d{height:58.530000pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h12{height:61.295000pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.hf{height:98.705643pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w23{width:41.920000pt;}
.w1a{width:52.320000pt;}
.w11{width:52.640000pt;}
.w2c{width:57.760000pt;}
.w1d{width:74.880000pt;}
.w14{width:74.912000pt;}
.w26{width:75.392000pt;}
.w2f{width:85.120000pt;}
.w12{width:86.112000pt;}
.w31{width:87.840000pt;}
.w24{width:93.472000pt;}
.wd{width:96.352000pt;}
.w9{width:96.992000pt;}
.w22{width:102.912000pt;}
.w19{width:105.312000pt;}
.w10{width:105.792000pt;}
.w30{width:110.272000pt;}
.w1c{width:111.232000pt;}
.w1f{width:112.160000pt;}
.w13{width:112.800000pt;}
.w25{width:114.400000pt;}
.w2b{width:115.872000pt;}
.w1b{width:118.592000pt;}
.w2e{width:122.432000pt;}
.w28{width:123.840000pt;}
.w2d{width:130.592000pt;}
.w15{width:131.712000pt;}
.w1e{width:133.152000pt;}
.w29{width:145.786667pt;}
.w16{width:147.040000pt;}
.w27{width:155.706667pt;}
.w20{width:158.266667pt;}
.w17{width:159.066667pt;}
.w32{width:174.266667pt;}
.wc{width:193.146667pt;}
.w8{width:194.266667pt;}
.wf{width:204.186667pt;}
.wb{width:205.306667pt;}
.we{width:217.466667pt;}
.wa{width:218.586667pt;}
.w33{width:284.666667pt;}
.w3{width:321.186667pt;}
.w21{width:321.626667pt;}
.w18{width:354.946667pt;}
.w2a{width:356.866667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xf{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x11{left:148.666655pt;}
.x21{left:151.386667pt;}
.x17{left:154.106667pt;}
.x27{left:164.186667pt;}
.x22{left:194.266667pt;}
.x18{left:207.386667pt;}
.x28{left:222.586667pt;}
.x15{left:241.626667pt;}
.x12{left:242.586667pt;}
.x10{left:272.066655pt;}
.x23{left:288.706667pt;}
.x19{left:294.146667pt;}
.x1d{left:325.986667pt;}
.xc{left:338.626655pt;}
.x13{left:340.386667pt;}
.x29{left:353.826667pt;}
.xe{left:384.066655pt;}
.x24{left:404.066667pt;}
.x1a{left:407.586667pt;}
.x8{left:432.093321pt;}
.x1e{left:438.013333pt;}
.xd{left:456.093321pt;}
.x5{left:463.133333pt;}
.x2a{left:476.893333pt;}
.x25{left:480.413333pt;}
.x1b{left:483.133333pt;}
.x1f{left:513.693333pt;}
.x16{left:556.733333pt;}
.x14{left:559.613333pt;}
.x2b{left:562.653333pt;}
.x1c{left:615.493333pt;}
.x26{left:637.093333pt;}
.x20{left:647.493333pt;}
.x2c{left:673.733333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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