
    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_932a68712332f14bc3a58947.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027832;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_8b4ba6c9d2e2fa081a380e5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133301;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_fdf7b9082f2c169876f5c5c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.737305;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_0d9fe9bd38b9838f730eb242.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_846fe85a3773c97d4862293d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c9a6f0a59f0fdd604b3fd6a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d05c473e3c236e8a50b43a73.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_949f97f43207404be5a94027.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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);}
.m2{transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251302,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);}
.v3{vertical-align:-20.117400px;}
.v2{vertical-align:-18.105600px;}
.v4{vertical-align:-4.404600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.116800px;}
.ls21{letter-spacing:-4.062000px;}
.ls22{letter-spacing:-2.142000px;}
.ls16{letter-spacing:-1.026000px;}
.ls2{letter-spacing:-0.021600px;}
.ls7{letter-spacing:-0.019200px;}
.ls23{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.014400px;}
.ls18{letter-spacing:-0.012000px;}
.ls20{letter-spacing:-0.009600px;}
.ls3{letter-spacing:-0.007200px;}
.ls15{letter-spacing:-0.006000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004000px;}
.ls12{letter-spacing:0.004199px;}
.ls8{letter-spacing:0.006000px;}
.ls1b{letter-spacing:0.007140px;}
.lse{letter-spacing:0.007599px;}
.ls14{letter-spacing:0.007839px;}
.ls19{letter-spacing:0.008000px;}
.lsf{letter-spacing:0.008199px;}
.ls9{letter-spacing:0.008400px;}
.ls6{letter-spacing:0.009600px;}
.ls13{letter-spacing:0.011940px;}
.ls1c{letter-spacing:0.011992px;}
.lsa{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.028800px;}
.ls1f{letter-spacing:0.780000px;}
.lsd{letter-spacing:0.796800px;}
.lsb{letter-spacing:1.249800px;}
.ls1e{letter-spacing:1.830000px;}
.lsc{letter-spacing:1.839999px;}
.ls17{letter-spacing:2.790000px;}
.ls11{letter-spacing:2.999400px;}
.ls10{letter-spacing:4.056000px;}
.ls1d{letter-spacing:7.782000px;}
.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;}
}
.wsd{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.944000px;}
.ws10{word-spacing:-18.450000px;}
.ws11{word-spacing:-17.400000px;}
.ws4{word-spacing:-16.812000px;}
.ws5{word-spacing:-16.806000px;}
.wsf{word-spacing:-16.800000px;}
.wse{word-spacing:-16.782000px;}
.ws12{word-spacing:-16.626000px;}
.ws6{word-spacing:-16.620000px;}
.ws13{word-spacing:-14.958000px;}
.ws9{word-spacing:-11.088001px;}
.wsa{word-spacing:-11.084001px;}
.ws7{word-spacing:-11.080001px;}
.ws3{word-spacing:-9.972000px;}
.ws8{word-spacing:-0.086400px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:11.506380px;}
.wsb{word-spacing:93.990115px;}
.wsc{word-spacing:110.628927px;}
._1a{margin-left:-354.013689px;}
._1f{margin-left:-16.960620px;}
._1c{margin-left:-13.906800px;}
._1b{margin-left:-12.187620px;}
._1d{margin-left:-10.044600px;}
._15{margin-left:-7.835400px;}
._b{margin-left:-6.540000px;}
._7{margin-left:-4.650000px;}
._6{margin-left:-3.324000px;}
._4{margin-left:-2.127600px;}
._9{margin-left:-1.017600px;}
._14{width:1.000800px;}
._0{width:2.001600px;}
._8{width:3.252000px;}
._2{width:4.424400px;}
._3{width:5.556000px;}
._1{width:7.044000px;}
._13{width:8.602800px;}
._5{width:9.984000px;}
._f{width:11.215200px;}
._a{width:12.726000px;}
._10{width:14.508000px;}
._1e{width:16.531200px;}
._d{width:17.948400px;}
._c{width:19.338000px;}
._11{width:21.072000px;}
._18{width:22.244400px;}
._17{width:23.376000px;}
._12{width:26.061600px;}
._19{width:28.924980px;}
._16{width:38.395980px;}
._e{width:65.687400px;}
.fc3{color:rgb(0,0,153);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,31,103);}
.fs5{font-size:36.000000px;}
.fs4{font-size:40.000002px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:59.961750px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y98{bottom:10.500000px;}
.y5{bottom:12.000000px;}
.y99{bottom:13.500000px;}
.y74{bottom:14.314050px;}
.y72{bottom:14.314200px;}
.y70{bottom:17.743650px;}
.y85{bottom:25.571775px;}
.y4{bottom:34.500000px;}
.y2d{bottom:55.350000px;}
.y84{bottom:57.801225px;}
.y83{bottom:86.283075px;}
.y82{bottom:114.764775px;}
.y2f{bottom:161.850000px;}
.yc2{bottom:166.350000px;}
.ye7{bottom:172.350000px;}
.y55{bottom:178.350000px;}
.y2e{bottom:182.876400px;}
.yc1{bottom:184.350000px;}
.yb1{bottom:185.850000px;}
.ye6{bottom:188.850000px;}
.ycf{bottom:190.350000px;}
.y54{bottom:194.850000px;}
.y79{bottom:196.350000px;}
.y96{bottom:199.376400px;}
.ye5{bottom:205.350000px;}
.yce{bottom:208.350000px;}
.y7{bottom:209.850000px;}
.yc0{bottom:211.350000px;}
.y78{bottom:214.350000px;}
.y53{bottom:215.876400px;}
.ye4{bottom:221.850000px;}
.y2c{bottom:224.850000px;}
.ycd{bottom:226.350000px;}
.ybf{bottom:229.350000px;}
.y77{bottom:232.350000px;}
.y2b{bottom:242.850000px;}
.ycc{bottom:244.350000px;}
.ybe{bottom:247.350000px;}
.yad{bottom:250.350000px;}
.y76{bottom:257.850000px;}
.y52{bottom:259.350000px;}
.y2a{bottom:260.850000px;}
.ybd{bottom:265.350000px;}
.y6{bottom:271.350000px;}
.y51{bottom:277.350000px;}
.yac{bottom:278.850000px;}
.y29{bottom:287.850000px;}
.ycb{bottom:289.350000px;}
.ybc{bottom:293.850000px;}
.y75{bottom:294.664050px;}
.y50{bottom:304.350000px;}
.y28{bottom:305.850000px;}
.yca{bottom:307.350000px;}
.y95{bottom:308.850000px;}
.y3{bottom:310.350000px;}
.y4f{bottom:322.350000px;}
.y27{bottom:323.850000px;}
.yc9{bottom:325.350000px;}
.y94{bottom:326.850000px;}
.y73{bottom:331.478100px;}
.ye3{bottom:335.850000px;}
.yab{bottom:340.350000px;}
.y26{bottom:341.850000px;}
.yc8{bottom:343.350000px;}
.y93{bottom:344.850000px;}
.y4e{bottom:349.350000px;}
.yaa{bottom:361.350000px;}
.ybb{bottom:362.850000px;}
.ye2{bottom:365.850000px;}
.y4d{bottom:367.350000px;}
.y71{bottom:368.292150px;}
.y25{bottom:368.850000px;}
.y92{bottom:371.850000px;}
.yc7{bottom:379.350000px;}
.yba{bottom:380.850000px;}
.ya9{bottom:382.350000px;}
.y24{bottom:386.850000px;}
.y4c{bottom:394.350000px;}
.yc6{bottom:397.350000px;}
.y91{bottom:398.850000px;}
.ya8{bottom:403.350000px;}
.y23{bottom:404.850000px;}
.y6f{bottom:405.106350px;}
.y4b{bottom:412.350000px;}
.yc5{bottom:415.350000px;}
.y90{bottom:416.850000px;}
.y22{bottom:422.850000px;}
.ye1{bottom:428.850000px;}
.y8f{bottom:434.850000px;}
.y4a{bottom:439.350000px;}
.y21{bottom:440.850000px;}
.ya7{bottom:442.350000px;}
.ye0{bottom:446.850000px;}
.y8e{bottom:452.850000px;}
.y49{bottom:457.350000px;}
.y20{bottom:458.850000px;}
.y6e{bottom:460.350000px;}
.ydf{bottom:464.850000px;}
.ya6{bottom:469.350000px;}
.yb9{bottom:470.850000px;}
.y48{bottom:475.350000px;}
.y1f{bottom:476.850000px;}
.y6d{bottom:478.350000px;}
.y8d{bottom:479.850000px;}
.yde{bottom:482.850000px;}
.y47{bottom:493.350000px;}
.y1e{bottom:494.850000px;}
.y8c{bottom:497.850000px;}
.ya5{bottom:506.850000px;}
.ydd{bottom:509.850000px;}
.y6c{bottom:515.850000px;}
.y46{bottom:521.850000px;}
.y1d{bottom:524.850000px;}
.ydc{bottom:527.850000px;}
.y8b{bottom:533.850000px;}
.y6b{bottom:536.850000px;}
.ya4{bottom:544.350000px;}
.ydb{bottom:545.850000px;}
.y8a{bottom:551.850000px;}
.yda{bottom:563.850000px;}
.y89{bottom:569.850000px;}
.y45{bottom:572.850000px;}
.y6a{bottom:575.850000px;}
.ya3{bottom:581.850000px;}
.y1c{bottom:587.850000px;}
.y44{bottom:590.850000px;}
.y69{bottom:593.850000px;}
.y1b{bottom:605.850000px;}
.y43{bottom:608.850000px;}
.ya2{bottom:619.350000px;}
.y68{bottom:620.850000px;}
.y88{bottom:623.850000px;}
.yd9{bottom:626.850000px;}
.y1a{bottom:632.850000px;}
.y42{bottom:635.850000px;}
.y87{bottom:641.850000px;}
.yd8{bottom:644.850000px;}
.y67{bottom:647.850000px;}
.yb8{bottom:650.850000px;}
.y41{bottom:653.850000px;}
.ya1{bottom:656.850000px;}
.y19{bottom:659.850000px;}
.yd7{bottom:662.850000px;}
.y86{bottom:668.850000px;}
.y40{bottom:671.850000px;}
.y66{bottom:674.850000px;}
.y2{bottom:680.850000px;}
.y18{bottom:686.850000px;}
.y3f{bottom:689.850000px;}
.y65{bottom:692.850000px;}
.ya0{bottom:694.350000px;}
.y81{bottom:696.000000px;}
.yd6{bottom:698.850000px;}
.y3e{bottom:707.850000px;}
.y64{bottom:710.850000px;}
.y17{bottom:713.850000px;}
.yb7{bottom:715.350000px;}
.y1{bottom:724.350000px;}
.yd5{bottom:725.850000px;}
.y63{bottom:728.850000px;}
.y9f{bottom:731.850000px;}
.y3d{bottom:734.850000px;}
.y16{bottom:740.850000px;}
.yd4{bottom:743.850000px;}
.y3c{bottom:752.850000px;}
.y62{bottom:755.850000px;}
.yd3{bottom:761.850000px;}
.y9e{bottom:769.350000px;}
.y15{bottom:770.850000px;}
.y61{bottom:773.850000px;}
.yb6{bottom:776.850000px;}
.yd2{bottom:779.850000px;}
.y3b{bottom:788.850000px;}
.yb5{bottom:797.850000px;}
.y60{bottom:800.850000px;}
.y3a{bottom:806.850000px;}
.yd1{bottom:815.850000px;}
.y5f{bottom:818.850000px;}
.y39{bottom:824.850000px;}
.y14{bottom:833.850000px;}
.yb4{bottom:839.850000px;}
.y38{bottom:842.850000px;}
.y9d{bottom:844.350000px;}
.y5e{bottom:845.850000px;}
.y13{bottom:851.850000px;}
.yb3{bottom:860.850000px;}
.y5d{bottom:863.850000px;}
.y12{bottom:869.850000px;}
.yd0{bottom:878.850000px;}
.y80{bottom:881.850000px;}
.y37{bottom:887.850000px;}
.y5c{bottom:890.850000px;}
.y11{bottom:896.850000px;}
.y7f{bottom:899.850000px;}
.y36{bottom:905.850000px;}
.y5b{bottom:908.850000px;}
.y10{bottom:914.850000px;}
.y7e{bottom:917.850000px;}
.y9c{bottom:919.350000px;}
.y35{bottom:923.850000px;}
.y5a{bottom:926.850000px;}
.yf{bottom:932.850000px;}
.y7d{bottom:935.850000px;}
.y34{bottom:941.850000px;}
.y59{bottom:944.850000px;}
.yc4{bottom:950.850000px;}
.yb2{bottom:953.850000px;}
.y9b{bottom:956.850000px;}
.ye{bottom:959.850000px;}
.y7c{bottom:962.850000px;}
.yc3{bottom:968.850000px;}
.y58{bottom:971.850000px;}
.yd{bottom:977.850000px;}
.yb0{bottom:980.850000px;}
.y33{bottom:989.850000px;}
.y9a{bottom:994.350000px;}
.yc{bottom:995.850000px;}
.yaf{bottom:998.850000px;}
.y7b{bottom:1007.850000px;}
.yb{bottom:1013.850000px;}
.y57{bottom:1016.850000px;}
.y7a{bottom:1025.850000px;}
.ya{bottom:1031.850000px;}
.yae{bottom:1034.850000px;}
.y56{bottom:1043.850000px;}
.y9{bottom:1049.850000px;}
.y32{bottom:1052.850000px;}
.y97{bottom:1069.350000px;}
.y31{bottom:1070.850000px;}
.y8{bottom:1079.850000px;}
.y30{bottom:1088.850000px;}
.h19{height:33.000000px;}
.hb{height:33.310547px;}
.h1a{height:36.000000px;}
.h15{height:36.814035px;}
.h16{height:36.814065px;}
.h6{height:37.500000px;}
.h13{height:40.243740px;}
.ha{height:43.037109px;}
.h18{height:44.151523px;}
.hf{height:46.816406px;}
.h10{height:49.189453px;}
.hc{height:49.965820px;}
.h11{height:52.910370px;}
.h12{height:54.000000px;}
.h8{height:55.517578px;}
.h9{height:57.128521px;}
.h14{height:57.128881px;}
.he{height:57.129121px;}
.h4{height:59.027344px;}
.h3{height:60.000000px;}
.h5{height:66.621094px;}
.hd{height:68.865234px;}
.h7{height:78.703125px;}
.h2{height:118.054688px;}
.h17{height:138.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.we{width:79.287390px;}
.w11{width:79.471350px;}
.w8{width:80.787390px;}
.wb{width:80.971350px;}
.wf{width:96.164745px;}
.w12{width:96.295260px;}
.w9{width:96.914745px;}
.wc{width:97.045260px;}
.w4{width:114.000000px;}
.w6{width:117.555135px;}
.wd{width:125.266140px;}
.w10{width:125.266155px;}
.w7{width:126.016140px;}
.wa{width:126.016155px;}
.w5{width:165.000000px;}
.w2{width:211.050000px;}
.w3{width:419.700450px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x2d{left:-133.240245px;}
.x32{left:-94.261785px;}
.x2b{left:-52.452945px;}
.x30{left:-13.290435px;}
.x0{left:0.000000px;}
.x4{left:7.500000px;}
.x17{left:10.139627px;}
.x9{left:22.955205px;}
.x1c{left:28.627425px;}
.x1e{left:33.578595px;}
.x1f{left:40.177710px;}
.x8{left:45.472785px;}
.x29{left:73.563240px;}
.x23{left:76.803180px;}
.x22{left:85.116165px;}
.x18{left:90.756077px;}
.x21{left:93.429150px;}
.x24{left:99.808545px;}
.x6{left:101.221800px;}
.x25{left:105.345660px;}
.x7{left:109.350225px;}
.x2e{left:112.725615px;}
.x34{left:126.000006px;}
.xb{left:127.559055px;}
.x3{left:129.150015px;}
.x28{left:141.150015px;}
.xc{left:148.818900px;}
.xa{left:168.787650px;}
.xd{left:174.330750px;}
.x12{left:188.915550px;}
.x10{left:206.389200px;}
.x1b{left:208.650000px;}
.x2{left:233.150400px;}
.x26{left:249.202950px;}
.x15{left:251.976450px;}
.x2a{left:267.166200px;}
.x1a{left:293.133600px;}
.x19{left:294.525150px;}
.x33{left:303.929400px;}
.x1{left:309.750000px;}
.xf{left:319.472700px;}
.x1d{left:327.705150px;}
.x13{left:333.150000px;}
.x11{left:336.098700px;}
.x5{left:341.700000px;}
.x2c{left:347.953500px;}
.x16{left:363.000000px;}
.x27{left:367.353450px;}
.xe{left:442.078800px;}
.x14{left:447.150000px;}
.x20{left:565.815450px;}
.x2f{left:572.384400px;}
.x31{left:653.355750px;}
@media print{
.v3{vertical-align:-17.882133pt;}
.v2{vertical-align:-16.093867pt;}
.v4{vertical-align:-3.915200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.881600pt;}
.ls21{letter-spacing:-3.610667pt;}
.ls22{letter-spacing:-1.904000pt;}
.ls16{letter-spacing:-0.912000pt;}
.ls2{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:-0.017067pt;}
.ls23{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls18{letter-spacing:-0.010667pt;}
.ls20{letter-spacing:-0.008533pt;}
.ls3{letter-spacing:-0.006400pt;}
.ls15{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003556pt;}
.ls12{letter-spacing:0.003732pt;}
.ls8{letter-spacing:0.005333pt;}
.ls1b{letter-spacing:0.006347pt;}
.lse{letter-spacing:0.006755pt;}
.ls14{letter-spacing:0.006968pt;}
.ls19{letter-spacing:0.007111pt;}
.lsf{letter-spacing:0.007288pt;}
.ls9{letter-spacing:0.007467pt;}
.ls6{letter-spacing:0.008533pt;}
.ls13{letter-spacing:0.010613pt;}
.ls1c{letter-spacing:0.010660pt;}
.lsa{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.025600pt;}
.ls1f{letter-spacing:0.693333pt;}
.lsd{letter-spacing:0.708267pt;}
.lsb{letter-spacing:1.110933pt;}
.ls1e{letter-spacing:1.626667pt;}
.lsc{letter-spacing:1.635555pt;}
.ls17{letter-spacing:2.480000pt;}
.ls11{letter-spacing:2.666133pt;}
.ls10{letter-spacing:3.605333pt;}
.ls1d{letter-spacing:6.917333pt;}
.wsd{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws10{word-spacing:-16.400000pt;}
.ws11{word-spacing:-15.466667pt;}
.ws4{word-spacing:-14.944000pt;}
.ws5{word-spacing:-14.938667pt;}
.wsf{word-spacing:-14.933333pt;}
.wse{word-spacing:-14.917333pt;}
.ws12{word-spacing:-14.778667pt;}
.ws6{word-spacing:-14.773333pt;}
.ws13{word-spacing:-13.296000pt;}
.ws9{word-spacing:-9.856000pt;}
.wsa{word-spacing:-9.852445pt;}
.ws7{word-spacing:-9.848889pt;}
.ws3{word-spacing:-8.864000pt;}
.ws8{word-spacing:-0.076800pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:10.227893pt;}
.wsb{word-spacing:83.546769pt;}
.wsc{word-spacing:98.336824pt;}
._1a{margin-left:-314.678834pt;}
._1f{margin-left:-15.076107pt;}
._1c{margin-left:-12.361600pt;}
._1b{margin-left:-10.833440pt;}
._1d{margin-left:-8.928533pt;}
._15{margin-left:-6.964800pt;}
._b{margin-left:-5.813333pt;}
._7{margin-left:-4.133333pt;}
._6{margin-left:-2.954667pt;}
._4{margin-left:-1.891200pt;}
._9{margin-left:-0.904533pt;}
._14{width:0.889600pt;}
._0{width:1.779200pt;}
._8{width:2.890667pt;}
._2{width:3.932800pt;}
._3{width:4.938667pt;}
._1{width:6.261333pt;}
._13{width:7.646933pt;}
._5{width:8.874667pt;}
._f{width:9.969067pt;}
._a{width:11.312000pt;}
._10{width:12.896000pt;}
._1e{width:14.694400pt;}
._d{width:15.954133pt;}
._c{width:17.189333pt;}
._11{width:18.730667pt;}
._18{width:19.772800pt;}
._17{width:20.778667pt;}
._12{width:23.165867pt;}
._19{width:25.711093pt;}
._16{width:34.129760pt;}
._e{width:58.388800pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:35.555557pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.299333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:9.333333pt;}
.y5{bottom:10.666667pt;}
.y99{bottom:12.000000pt;}
.y74{bottom:12.723600pt;}
.y72{bottom:12.723733pt;}
.y70{bottom:15.772133pt;}
.y85{bottom:22.730467pt;}
.y4{bottom:30.666667pt;}
.y2d{bottom:49.200000pt;}
.y84{bottom:51.378867pt;}
.y83{bottom:76.696067pt;}
.y82{bottom:102.013133pt;}
.y2f{bottom:143.866667pt;}
.yc2{bottom:147.866667pt;}
.ye7{bottom:153.200000pt;}
.y55{bottom:158.533333pt;}
.y2e{bottom:162.556800pt;}
.yc1{bottom:163.866667pt;}
.yb1{bottom:165.200000pt;}
.ye6{bottom:167.866667pt;}
.ycf{bottom:169.200000pt;}
.y54{bottom:173.200000pt;}
.y79{bottom:174.533333pt;}
.y96{bottom:177.223467pt;}
.ye5{bottom:182.533333pt;}
.yce{bottom:185.200000pt;}
.y7{bottom:186.533333pt;}
.yc0{bottom:187.866667pt;}
.y78{bottom:190.533333pt;}
.y53{bottom:191.890133pt;}
.ye4{bottom:197.200000pt;}
.y2c{bottom:199.866667pt;}
.ycd{bottom:201.200000pt;}
.ybf{bottom:203.866667pt;}
.y77{bottom:206.533333pt;}
.y2b{bottom:215.866667pt;}
.ycc{bottom:217.200000pt;}
.ybe{bottom:219.866667pt;}
.yad{bottom:222.533333pt;}
.y76{bottom:229.200000pt;}
.y52{bottom:230.533333pt;}
.y2a{bottom:231.866667pt;}
.ybd{bottom:235.866667pt;}
.y6{bottom:241.200000pt;}
.y51{bottom:246.533333pt;}
.yac{bottom:247.866667pt;}
.y29{bottom:255.866667pt;}
.ycb{bottom:257.200000pt;}
.ybc{bottom:261.200000pt;}
.y75{bottom:261.923600pt;}
.y50{bottom:270.533333pt;}
.y28{bottom:271.866667pt;}
.yca{bottom:273.200000pt;}
.y95{bottom:274.533333pt;}
.y3{bottom:275.866667pt;}
.y4f{bottom:286.533333pt;}
.y27{bottom:287.866667pt;}
.yc9{bottom:289.200000pt;}
.y94{bottom:290.533333pt;}
.y73{bottom:294.647200pt;}
.ye3{bottom:298.533333pt;}
.yab{bottom:302.533333pt;}
.y26{bottom:303.866667pt;}
.yc8{bottom:305.200000pt;}
.y93{bottom:306.533333pt;}
.y4e{bottom:310.533333pt;}
.yaa{bottom:321.200000pt;}
.ybb{bottom:322.533333pt;}
.ye2{bottom:325.200000pt;}
.y4d{bottom:326.533333pt;}
.y71{bottom:327.370800pt;}
.y25{bottom:327.866667pt;}
.y92{bottom:330.533333pt;}
.yc7{bottom:337.200000pt;}
.yba{bottom:338.533333pt;}
.ya9{bottom:339.866667pt;}
.y24{bottom:343.866667pt;}
.y4c{bottom:350.533333pt;}
.yc6{bottom:353.200000pt;}
.y91{bottom:354.533333pt;}
.ya8{bottom:358.533333pt;}
.y23{bottom:359.866667pt;}
.y6f{bottom:360.094533pt;}
.y4b{bottom:366.533333pt;}
.yc5{bottom:369.200000pt;}
.y90{bottom:370.533333pt;}
.y22{bottom:375.866667pt;}
.ye1{bottom:381.200000pt;}
.y8f{bottom:386.533333pt;}
.y4a{bottom:390.533333pt;}
.y21{bottom:391.866667pt;}
.ya7{bottom:393.200000pt;}
.ye0{bottom:397.200000pt;}
.y8e{bottom:402.533333pt;}
.y49{bottom:406.533333pt;}
.y20{bottom:407.866667pt;}
.y6e{bottom:409.200000pt;}
.ydf{bottom:413.200000pt;}
.ya6{bottom:417.200000pt;}
.yb9{bottom:418.533333pt;}
.y48{bottom:422.533333pt;}
.y1f{bottom:423.866667pt;}
.y6d{bottom:425.200000pt;}
.y8d{bottom:426.533333pt;}
.yde{bottom:429.200000pt;}
.y47{bottom:438.533333pt;}
.y1e{bottom:439.866667pt;}
.y8c{bottom:442.533333pt;}
.ya5{bottom:450.533333pt;}
.ydd{bottom:453.200000pt;}
.y6c{bottom:458.533333pt;}
.y46{bottom:463.866667pt;}
.y1d{bottom:466.533333pt;}
.ydc{bottom:469.200000pt;}
.y8b{bottom:474.533333pt;}
.y6b{bottom:477.200000pt;}
.ya4{bottom:483.866667pt;}
.ydb{bottom:485.200000pt;}
.y8a{bottom:490.533333pt;}
.yda{bottom:501.200000pt;}
.y89{bottom:506.533333pt;}
.y45{bottom:509.200000pt;}
.y6a{bottom:511.866667pt;}
.ya3{bottom:517.200000pt;}
.y1c{bottom:522.533333pt;}
.y44{bottom:525.200000pt;}
.y69{bottom:527.866667pt;}
.y1b{bottom:538.533333pt;}
.y43{bottom:541.200000pt;}
.ya2{bottom:550.533333pt;}
.y68{bottom:551.866667pt;}
.y88{bottom:554.533333pt;}
.yd9{bottom:557.200000pt;}
.y1a{bottom:562.533333pt;}
.y42{bottom:565.200000pt;}
.y87{bottom:570.533333pt;}
.yd8{bottom:573.200000pt;}
.y67{bottom:575.866667pt;}
.yb8{bottom:578.533333pt;}
.y41{bottom:581.200000pt;}
.ya1{bottom:583.866667pt;}
.y19{bottom:586.533333pt;}
.yd7{bottom:589.200000pt;}
.y86{bottom:594.533333pt;}
.y40{bottom:597.200000pt;}
.y66{bottom:599.866667pt;}
.y2{bottom:605.200000pt;}
.y18{bottom:610.533333pt;}
.y3f{bottom:613.200000pt;}
.y65{bottom:615.866667pt;}
.ya0{bottom:617.200000pt;}
.y81{bottom:618.666667pt;}
.yd6{bottom:621.200000pt;}
.y3e{bottom:629.200000pt;}
.y64{bottom:631.866667pt;}
.y17{bottom:634.533333pt;}
.yb7{bottom:635.866667pt;}
.y1{bottom:643.866667pt;}
.yd5{bottom:645.200000pt;}
.y63{bottom:647.866667pt;}
.y9f{bottom:650.533333pt;}
.y3d{bottom:653.200000pt;}
.y16{bottom:658.533333pt;}
.yd4{bottom:661.200000pt;}
.y3c{bottom:669.200000pt;}
.y62{bottom:671.866667pt;}
.yd3{bottom:677.200000pt;}
.y9e{bottom:683.866667pt;}
.y15{bottom:685.200000pt;}
.y61{bottom:687.866667pt;}
.yb6{bottom:690.533333pt;}
.yd2{bottom:693.200000pt;}
.y3b{bottom:701.200000pt;}
.yb5{bottom:709.200000pt;}
.y60{bottom:711.866667pt;}
.y3a{bottom:717.200000pt;}
.yd1{bottom:725.200000pt;}
.y5f{bottom:727.866667pt;}
.y39{bottom:733.200000pt;}
.y14{bottom:741.200000pt;}
.yb4{bottom:746.533333pt;}
.y38{bottom:749.200000pt;}
.y9d{bottom:750.533333pt;}
.y5e{bottom:751.866667pt;}
.y13{bottom:757.200000pt;}
.yb3{bottom:765.200000pt;}
.y5d{bottom:767.866667pt;}
.y12{bottom:773.200000pt;}
.yd0{bottom:781.200000pt;}
.y80{bottom:783.866667pt;}
.y37{bottom:789.200000pt;}
.y5c{bottom:791.866667pt;}
.y11{bottom:797.200000pt;}
.y7f{bottom:799.866667pt;}
.y36{bottom:805.200000pt;}
.y5b{bottom:807.866667pt;}
.y10{bottom:813.200000pt;}
.y7e{bottom:815.866667pt;}
.y9c{bottom:817.200000pt;}
.y35{bottom:821.200000pt;}
.y5a{bottom:823.866667pt;}
.yf{bottom:829.200000pt;}
.y7d{bottom:831.866667pt;}
.y34{bottom:837.200000pt;}
.y59{bottom:839.866667pt;}
.yc4{bottom:845.200000pt;}
.yb2{bottom:847.866667pt;}
.y9b{bottom:850.533333pt;}
.ye{bottom:853.200000pt;}
.y7c{bottom:855.866667pt;}
.yc3{bottom:861.200000pt;}
.y58{bottom:863.866667pt;}
.yd{bottom:869.200000pt;}
.yb0{bottom:871.866667pt;}
.y33{bottom:879.866667pt;}
.y9a{bottom:883.866667pt;}
.yc{bottom:885.200000pt;}
.yaf{bottom:887.866667pt;}
.y7b{bottom:895.866667pt;}
.yb{bottom:901.200000pt;}
.y57{bottom:903.866667pt;}
.y7a{bottom:911.866667pt;}
.ya{bottom:917.200000pt;}
.yae{bottom:919.866667pt;}
.y56{bottom:927.866667pt;}
.y9{bottom:933.200000pt;}
.y32{bottom:935.866667pt;}
.y97{bottom:950.533333pt;}
.y31{bottom:951.866667pt;}
.y8{bottom:959.866667pt;}
.y30{bottom:967.866667pt;}
.h19{height:29.333333pt;}
.hb{height:29.609375pt;}
.h1a{height:32.000000pt;}
.h15{height:32.723587pt;}
.h16{height:32.723613pt;}
.h6{height:33.333333pt;}
.h13{height:35.772213pt;}
.ha{height:38.255208pt;}
.h18{height:39.245798pt;}
.hf{height:41.614583pt;}
.h10{height:43.723958pt;}
.hc{height:44.414062pt;}
.h11{height:47.031440pt;}
.h12{height:48.000000pt;}
.h8{height:49.348958pt;}
.h9{height:50.780907pt;}
.h14{height:50.781227pt;}
.he{height:50.781441pt;}
.h4{height:52.468750pt;}
.h3{height:53.333333pt;}
.h5{height:59.218750pt;}
.hd{height:61.213542pt;}
.h7{height:69.958333pt;}
.h2{height:104.937500pt;}
.h17{height:122.666667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.we{width:70.477680pt;}
.w11{width:70.641200pt;}
.w8{width:71.811013pt;}
.wb{width:71.974533pt;}
.wf{width:85.479773pt;}
.w12{width:85.595787pt;}
.w9{width:86.146440pt;}
.wc{width:86.262453pt;}
.w4{width:101.333333pt;}
.w6{width:104.493453pt;}
.wd{width:111.347680pt;}
.w10{width:111.347693pt;}
.w7{width:112.014347pt;}
.wa{width:112.014360pt;}
.w5{width:146.666667pt;}
.w2{width:187.600000pt;}
.w3{width:373.067067pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x2d{left:-118.435773pt;}
.x32{left:-83.788253pt;}
.x2b{left:-46.624840pt;}
.x30{left:-11.813720pt;}
.x0{left:0.000000pt;}
.x4{left:6.666667pt;}
.x17{left:9.013002pt;}
.x9{left:20.404627pt;}
.x1c{left:25.446600pt;}
.x1e{left:29.847640pt;}
.x1f{left:35.713520pt;}
.x8{left:40.420253pt;}
.x29{left:65.389547pt;}
.x23{left:68.269493pt;}
.x22{left:75.658813pt;}
.x18{left:80.672069pt;}
.x21{left:83.048133pt;}
.x24{left:88.718707pt;}
.x6{left:89.974933pt;}
.x25{left:93.640587pt;}
.x7{left:97.200200pt;}
.x2e{left:100.200547pt;}
.x34{left:112.000005pt;}
.xb{left:113.385827pt;}
.x3{left:114.800013pt;}
.x28{left:125.466680pt;}
.xc{left:132.283467pt;}
.xa{left:150.033467pt;}
.xd{left:154.960667pt;}
.x12{left:167.924933pt;}
.x10{left:183.457067pt;}
.x1b{left:185.466667pt;}
.x2{left:207.244800pt;}
.x26{left:221.513733pt;}
.x15{left:223.979067pt;}
.x2a{left:237.481067pt;}
.x1a{left:260.563200pt;}
.x19{left:261.800133pt;}
.x33{left:270.159467pt;}
.x1{left:275.333333pt;}
.xf{left:283.975733pt;}
.x1d{left:291.293467pt;}
.x13{left:296.133333pt;}
.x11{left:298.754400pt;}
.x5{left:303.733333pt;}
.x2c{left:309.292000pt;}
.x16{left:322.666667pt;}
.x27{left:326.536400pt;}
.xe{left:392.958933pt;}
.x14{left:397.466667pt;}
.x20{left:502.947067pt;}
.x2f{left:508.786133pt;}
.x31{left:580.760667pt;}
}




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