
    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_d63098ef617305505bd41870.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_cf7768b6942c48a703c736a3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_9fd82655547d2a69e82c4255.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_3fad634c8d727c1700fa63bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_eaa8f96ac63780a82a222378.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_603ac13f6c9395ea5142201a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_d1655b4623021c8b5fcdd521.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_e2e87da326cdfbdf2a90f83e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916016;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_f590fd50b2f259cd753a1142.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916016;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_9082a8792c20947f00cad312.woff')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_28c848442b3e536cfa8b42ad.woff')format("woff");}.ffe{font-family:ffe;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.360000px;}
.ls4{letter-spacing:4.104000px;}
.ls5{letter-spacing:4.824000px;}
.ls7{letter-spacing:9.378720px;}
.ls8{letter-spacing:9.558720px;}
.ls9{letter-spacing:54.840000px;}
.lsb{letter-spacing:54.864000px;}
.lsc{letter-spacing:64.002720px;}
.ls3{letter-spacing:75.384000px;}
.ls6{letter-spacing:840.216000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws6{word-spacing:-71.712000px;}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-36.000000px;}
.ws2{word-spacing:-35.712000px;}
.ws7{word-spacing:-24.300000px;}
.ws8{word-spacing:-23.940000px;}
.wsa{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.wsb{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.712400px;}
.wse{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.904000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-13.248000px;}
._8{margin-left:-11.508000px;}
._6{margin-left:-9.816000px;}
._9{margin-left:-8.592000px;}
._3{margin-left:-7.200000px;}
._c{margin-left:-6.160320px;}
._a{margin-left:-4.968000px;}
._5{margin-left:-3.696000px;}
._1{margin-left:-2.448000px;}
._7{margin-left:-1.104000px;}
._2{width:1.152000px;}
._b{width:2.160000px;}
._4{width:846.156000px;}
.fc1{color:rgb(15,71,97);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y103{bottom:120.456000px;}
.y72{bottom:138.636000px;}
.y57{bottom:151.410000px;}
.yd6{bottom:160.590000px;}
.y102{bottom:161.850000px;}
.yf3{bottom:171.930000px;}
.yc6{bottom:173.730000px;}
.y122{bottom:178.230000px;}
.y41{bottom:180.930000px;}
.y7d{bottom:181.110000px;}
.ye0{bottom:183.990000px;}
.y71{bottom:191.910000px;}
.y56{bottom:192.810000px;}
.y38{bottom:202.170000px;}
.yd5{bottom:210.450000px;}
.yf2{bottom:213.330000px;}
.yc5{bottom:215.130000px;}
.y121{bottom:219.630000px;}
.ydf{bottom:221.970000px;}
.y40{bottom:222.330000px;}
.y7c{bottom:232.410000px;}
.y70{bottom:233.310000px;}
.ya9{bottom:233.670000px;}
.y55{bottom:240.150000px;}
.y111{bottom:240.510000px;}
.yd4{bottom:248.430000px;}
.yf1{bottom:254.730000px;}
.y37{bottom:255.630000px;}
.yc4{bottom:256.350000px;}
.y101{bottom:256.530000px;}
.yde{bottom:259.950000px;}
.yae{bottom:260.850000px;}
.y3f{bottom:263.730000px;}
.y7b{bottom:270.390000px;}
.y120{bottom:272.910000px;}
.y6f{bottom:274.710000px;}
.ya8{bottom:275.070000px;}
.yd3{bottom:286.410000px;}
.y54{bottom:293.430000px;}
.y110{bottom:293.970000px;}
.yf0{bottom:296.130000px;}
.ydd{bottom:297.930000px;}
.yc3{bottom:299.190000px;}
.y3e{bottom:305.130000px;}
.y7a{bottom:308.370000px;}
.y36{bottom:308.910000px;}
.yad{bottom:310.890000px;}
.y11f{bottom:314.310000px;}
.y6e{bottom:316.110000px;}
.ya7{bottom:317.955000px;}
.yd2{bottom:324.255000px;}
.y53{bottom:334.875000px;}
.yef{bottom:337.395000px;}
.y100{bottom:339.375000px;}
.yc2{bottom:340.635000px;}
.y3d{bottom:346.395000px;}
.y10f{bottom:347.475000px;}
.yac{bottom:348.735000px;}
.y9a{bottom:354.855000px;}
.y6d{bottom:357.555000px;}
.ya6{bottom:359.355000px;}
.y35{bottom:362.415000px;}
.y11e{bottom:367.815000px;}
.y25{bottom:367.995000px;}
.yd1{bottom:374.295000px;}
.y52{bottom:376.275000px;}
.yee{bottom:380.235000px;}
.yff{bottom:380.775000px;}
.yc1{bottom:383.475000px;}
.yab{bottom:386.715000px;}
.y3c{bottom:395.175000px;}
.y99{bottom:396.255000px;}
.yb9{bottom:396.435000px;}
.ya5{bottom:400.575000px;}
.y10e{bottom:400.755000px;}
.y66{bottom:404.175000px;}
.y24{bottom:405.255000px;}
.y11d{bottom:409.215000px;}
.y6c{bottom:413.355000px;}
.y34{bottom:415.875000px;}
.y51{bottom:419.115000px;}
.yed{bottom:421.635000px;}
.yfe{bottom:422.175000px;}
.yc0{bottom:424.695000px;}
.yd0{bottom:426.495000px;}
.y98{bottom:437.655000px;}
.yb8{bottom:437.835000px;}
.y23{bottom:438.195000px;}
.yaa{bottom:438.915000px;}
.ya4{bottom:443.415000px;}
.y3b{bottom:448.635000px;}
.y65{bottom:450.615000px;}
.y8b{bottom:453.135000px;}
.y10d{bottom:454.215000px;}
.yf{bottom:458.355000px;}
.y50{bottom:460.515000px;}
.y11c{bottom:462.675000px;}
.yec{bottom:463.035000px;}
.yfd{bottom:463.575000px;}
.y33{bottom:469.155000px;}
.y22{bottom:471.135000px;}
.ybf{bottom:473.475000px;}
.y97{bottom:479.055000px;}
.yb7{bottom:479.235000px;}
.ycf{bottom:479.775000px;}
.ya3{bottom:484.815000px;}
.y6b{bottom:487.155000px;}
.y8a{bottom:494.535000px;}
.y64{bottom:497.055000px;}
.y4f{bottom:501.735000px;}
.y21{bottom:504.075000px;}
.yeb{bottom:504.435000px;}
.yfc{bottom:504.975000px;}
.y10c{bottom:507.675000px;}
.ye{bottom:511.815000px;}
.y11b{bottom:515.955000px;}
.y96{bottom:520.455000px;}
.y32{bottom:522.615000px;}
.ybe{bottom:524.595000px;}
.ya2{bottom:526.035000px;}
.yce{bottom:533.235000px;}
.y89{bottom:535.935000px;}
.y6a{bottom:536.475000px;}
.y20{bottom:537.015000px;}
.y4e{bottom:544.575000px;}
.yea{bottom:545.655000px;}
.y63{bottom:547.815000px;}
.y10b{bottom:549.075000px;}
.yfb{bottom:560.775000px;}
.yb6{bottom:561.855000px;}
.yd{bottom:565.275000px;}
.ya1{bottom:568.905000px;}
.y11a{bottom:569.445000px;}
.y1f{bottom:569.985000px;}
.y69{bottom:570.885000px;}
.y95{bottom:573.945000px;}
.ybd{bottom:574.665000px;}
.y31{bottom:576.105000px;}
.y88{bottom:577.365000px;}
.y4d{bottom:586.005000px;}
.ycd{bottom:586.725000px;}
.ye9{bottom:588.525000px;}
.y10a{bottom:590.505000px;}
.y62{bottom:601.305000px;}
.yc{bottom:601.665000px;}
.y1e{bottom:603.105000px;}
.y68{bottom:605.445000px;}
.yb5{bottom:609.405000px;}
.ya0{bottom:610.305000px;}
.y119{bottom:610.845000px;}
.ybc{bottom:612.645000px;}
.y3a{bottom:617.505000px;}
.y94{bottom:623.085000px;}
.y87{bottom:624.705000px;}
.y4c{bottom:627.405000px;}
.y30{bottom:629.385000px;}
.ye8{bottom:629.925000px;}
.y109{bottom:631.905000px;}
.yfa{bottom:634.605000px;}
.y1d{bottom:636.045000px;}
.ycc{bottom:640.005000px;}
.yb4{bottom:646.665000px;}
.ybb{bottom:650.625000px;}
.y9f{bottom:651.525000px;}
.y61{bottom:654.585000px;}
.yb{bottom:655.125000px;}
.y93{bottom:657.645000px;}
.y39{bottom:658.905000px;}
.y118{bottom:664.125000px;}
.y4b{bottom:668.805000px;}
.y1c{bottom:668.985000px;}
.y2f{bottom:670.785000px;}
.ye7{bottom:671.325000px;}
.ydc{bottom:672.585000px;}
.y108{bottom:673.125000px;}
.y86{bottom:678.165000px;}
.yf9{bottom:688.065000px;}
.yba{bottom:688.425000px;}
.y92{bottom:692.025000px;}
.ycb{bottom:693.465000px;}
.yb3{bottom:700.125000px;}
.y9e{bottom:700.305000px;}
.y1b{bottom:701.925000px;}
.y60{bottom:708.045000px;}
.ya{bottom:708.405000px;}
.y4a{bottom:710.205000px;}
.y2e{bottom:712.185000px;}
.ye6{bottom:712.725000px;}
.y107{bottom:714.525000px;}
.y117{bottom:717.585000px;}
.y85{bottom:719.385000px;}
.ydb{bottom:726.045000px;}
.yf8{bottom:729.465000px;}
.y1a{bottom:734.865000px;}
.y127{bottom:737.385000px;}
.yb2{bottom:741.525000px;}
.y91{bottom:742.785000px;}
.yca{bottom:746.745000px;}
.y5f{bottom:749.445000px;}
.y9{bottom:749.805000px;}
.y49{bottom:751.425000px;}
.y9d{bottom:751.605000px;}
.y2d{bottom:753.585000px;}
.ye5{bottom:753.945000px;}
.y79{bottom:755.385000px;}
.y106{bottom:755.925000px;}
.y116{bottom:758.985000px;}
.y84{bottom:762.225000px;}
.yda{bottom:767.445000px;}
.y19{bottom:767.805000px;}
.yf7{bottom:770.865000px;}
.y126{bottom:778.785000px;}
.yb1{bottom:782.925000px;}
.y5e{bottom:790.845000px;}
.y8{bottom:791.205000px;}
.y2c{bottom:794.985000px;}
.y90{bottom:796.245000px;}
.y78{bottom:796.785000px;}
.y105{bottom:797.325000px;}
.y48{bottom:800.205000px;}
.y18{bottom:800.745000px;}
.y9c{bottom:801.465000px;}
.ye4{bottom:802.725000px;}
.y83{bottom:803.445000px;}
.yd9{bottom:808.845000px;}
.yf6{bottom:812.265000px;}
.y115{bottom:812.445000px;}
.yb0{bottom:824.370000px;}
.y125{bottom:832.290000px;}
.y17{bottom:833.730000px;}
.y2b{bottom:836.430000px;}
.y77{bottom:838.230000px;}
.yc9{bottom:841.650000px;}
.y5d{bottom:844.170000px;}
.y7{bottom:844.710000px;}
.y82{bottom:846.330000px;}
.y8f{bottom:849.570000px;}
.y9b{bottom:849.750000px;}
.yd8{bottom:850.290000px;}
.y104{bottom:853.170000px;}
.y47{bottom:853.710000px;}
.y114{bottom:853.890000px;}
.ye3{bottom:856.230000px;}
.yaf{bottom:865.770000px;}
.y16{bottom:866.670000px;}
.y124{bottom:873.690000px;}
.y2a{bottom:877.830000px;}
.y76{bottom:879.630000px;}
.y5c{bottom:885.570000px;}
.y6{bottom:886.110000px;}
.y81{bottom:887.550000px;}
.yd7{bottom:891.690000px;}
.yf5{bottom:894.930000px;}
.y46{bottom:895.110000px;}
.ye2{bottom:897.630000px;}
.y15{bottom:899.610000px;}
.y8e{bottom:903.030000px;}
.y113{bottom:907.170000px;}
.y29{bottom:919.230000px;}
.y5b{bottom:926.970000px;}
.y80{bottom:930.390000px;}
.y14{bottom:932.550000px;}
.y75{bottom:933.090000px;}
.y45{bottom:936.330000px;}
.yc8{bottom:936.510000px;}
.yf4{bottom:937.770000px;}
.ye1{bottom:939.030000px;}
.y5{bottom:939.570000px;}
.y112{bottom:948.570000px;}
.y8d{bottom:956.490000px;}
.y28{bottom:960.630000px;}
.y13{bottom:965.490000px;}
.y123{bottom:968.370000px;}
.y7f{bottom:971.790000px;}
.y74{bottom:974.490000px;}
.yc7{bottom:977.730000px;}
.y44{bottom:979.170000px;}
.y5a{bottom:980.430000px;}
.y4{bottom:992.850000px;}
.y12{bottom:998.430000px;}
.y27{bottom:1002.030000px;}
.y8c{bottom:1009.770000px;}
.y7e{bottom:1014.450000px;}
.y73{bottom:1015.890000px;}
.y43{bottom:1020.570000px;}
.y59{bottom:1021.830000px;}
.y11{bottom:1031.370000px;}
.y3{bottom:1046.310000px;}
.y10{bottom:1057.470000px;}
.y26{bottom:1057.650000px;}
.y42{bottom:1061.790000px;}
.y58{bottom:1063.230000px;}
.y67{bottom:1065.930000px;}
.y2{bottom:1095.120000px;}
.y1{bottom:1117.080000px;}
.h9{height:41.843672px;}
.ha{height:45.549492px;}
.hd{height:46.380937px;}
.h3{height:50.273438px;}
.hb{height:50.488594px;}
.h8{height:50.800781px;}
.h7{height:52.417969px;}
.hc{height:54.878906px;}
.h1{height:62.402344px;}
.h5{height:67.565039px;}
.h6{height:69.715898px;}
.h4{height:80.937773px;}
.h2{height:101.601562px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035986px;}
.x25{left:109.115986px;}
.x1e{left:110.555986px;}
.x16{left:115.595986px;}
.x7{left:120.455986px;}
.xc{left:126.035986px;}
.x10{left:135.035986px;}
.x13{left:137.555986px;}
.x24{left:140.075986px;}
.x1d{left:143.495986px;}
.x14{left:149.795986px;}
.x8{left:150.869986px;}
.xe{left:162.029986px;}
.x5{left:164.909986px;}
.x21{left:167.609986px;}
.x19{left:168.689986px;}
.x18{left:180.749986px;}
.xb{left:185.429986px;}
.x27{left:187.049986px;}
.x12{left:189.029986px;}
.x20{left:225.569986px;}
.x4{left:236.909986px;}
.x15{left:240.689986px;}
.x22{left:243.029986px;}
.x11{left:264.629986px;}
.xa{left:321.914986px;}
.x28{left:339.914986px;}
.x26{left:344.054986px;}
.xd{left:355.394986px;}
.x1f{left:370.154986px;}
.x6{left:371.594986px;}
.x9{left:385.994986px;}
.xf{left:393.914986px;}
.x2a{left:401.654986px;}
.x29{left:405.074986px;}
.x1a{left:407.414986px;}
.x3{left:459.074986px;}
.x1c{left:472.574986px;}
.x23{left:486.104986px;}
.x17{left:790.889986px;}
.x1{left:800.609986px;}
.x1b{left:837.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls4{letter-spacing:3.648000pt;}
.ls5{letter-spacing:4.288000pt;}
.ls7{letter-spacing:8.336640pt;}
.ls8{letter-spacing:8.496640pt;}
.ls9{letter-spacing:48.746667pt;}
.lsb{letter-spacing:48.768000pt;}
.lsc{letter-spacing:56.891307pt;}
.ls3{letter-spacing:67.008000pt;}
.ls6{letter-spacing:746.858667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws6{word-spacing:-63.744000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-32.000000pt;}
.ws2{word-spacing:-31.744000pt;}
.ws7{word-spacing:-21.600000pt;}
.ws8{word-spacing:-21.280000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsb{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.248000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-11.776000pt;}
._8{margin-left:-10.229333pt;}
._6{margin-left:-8.725333pt;}
._9{margin-left:-7.637333pt;}
._3{margin-left:-6.400000pt;}
._c{margin-left:-5.475840pt;}
._a{margin-left:-4.416000pt;}
._5{margin-left:-3.285333pt;}
._1{margin-left:-2.176000pt;}
._7{margin-left:-0.981333pt;}
._2{width:1.024000pt;}
._b{width:1.920000pt;}
._4{width:752.138667pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:107.072000pt;}
.y72{bottom:123.232000pt;}
.y57{bottom:134.586667pt;}
.yd6{bottom:142.746667pt;}
.y102{bottom:143.866667pt;}
.yf3{bottom:152.826667pt;}
.yc6{bottom:154.426667pt;}
.y122{bottom:158.426667pt;}
.y41{bottom:160.826667pt;}
.y7d{bottom:160.986667pt;}
.ye0{bottom:163.546667pt;}
.y71{bottom:170.586667pt;}
.y56{bottom:171.386667pt;}
.y38{bottom:179.706667pt;}
.yd5{bottom:187.066667pt;}
.yf2{bottom:189.626667pt;}
.yc5{bottom:191.226667pt;}
.y121{bottom:195.226667pt;}
.ydf{bottom:197.306667pt;}
.y40{bottom:197.626667pt;}
.y7c{bottom:206.586667pt;}
.y70{bottom:207.386667pt;}
.ya9{bottom:207.706667pt;}
.y55{bottom:213.466667pt;}
.y111{bottom:213.786667pt;}
.yd4{bottom:220.826667pt;}
.yf1{bottom:226.426667pt;}
.y37{bottom:227.226667pt;}
.yc4{bottom:227.866667pt;}
.y101{bottom:228.026667pt;}
.yde{bottom:231.066667pt;}
.yae{bottom:231.866667pt;}
.y3f{bottom:234.426667pt;}
.y7b{bottom:240.346667pt;}
.y120{bottom:242.586667pt;}
.y6f{bottom:244.186667pt;}
.ya8{bottom:244.506667pt;}
.yd3{bottom:254.586667pt;}
.y54{bottom:260.826667pt;}
.y110{bottom:261.306667pt;}
.yf0{bottom:263.226667pt;}
.ydd{bottom:264.826667pt;}
.yc3{bottom:265.946667pt;}
.y3e{bottom:271.226667pt;}
.y7a{bottom:274.106667pt;}
.y36{bottom:274.586667pt;}
.yad{bottom:276.346667pt;}
.y11f{bottom:279.386667pt;}
.y6e{bottom:280.986667pt;}
.ya7{bottom:282.626667pt;}
.yd2{bottom:288.226667pt;}
.y53{bottom:297.666667pt;}
.yef{bottom:299.906667pt;}
.y100{bottom:301.666667pt;}
.yc2{bottom:302.786667pt;}
.y3d{bottom:307.906667pt;}
.y10f{bottom:308.866667pt;}
.yac{bottom:309.986667pt;}
.y9a{bottom:315.426667pt;}
.y6d{bottom:317.826667pt;}
.ya6{bottom:319.426667pt;}
.y35{bottom:322.146667pt;}
.y11e{bottom:326.946667pt;}
.y25{bottom:327.106667pt;}
.yd1{bottom:332.706667pt;}
.y52{bottom:334.466667pt;}
.yee{bottom:337.986667pt;}
.yff{bottom:338.466667pt;}
.yc1{bottom:340.866667pt;}
.yab{bottom:343.746667pt;}
.y3c{bottom:351.266667pt;}
.y99{bottom:352.226667pt;}
.yb9{bottom:352.386667pt;}
.ya5{bottom:356.066667pt;}
.y10e{bottom:356.226667pt;}
.y66{bottom:359.266667pt;}
.y24{bottom:360.226667pt;}
.y11d{bottom:363.746667pt;}
.y6c{bottom:367.426667pt;}
.y34{bottom:369.666667pt;}
.y51{bottom:372.546667pt;}
.yed{bottom:374.786667pt;}
.yfe{bottom:375.266667pt;}
.yc0{bottom:377.506667pt;}
.yd0{bottom:379.106667pt;}
.y98{bottom:389.026667pt;}
.yb8{bottom:389.186667pt;}
.y23{bottom:389.506667pt;}
.yaa{bottom:390.146667pt;}
.ya4{bottom:394.146667pt;}
.y3b{bottom:398.786667pt;}
.y65{bottom:400.546667pt;}
.y8b{bottom:402.786667pt;}
.y10d{bottom:403.746667pt;}
.yf{bottom:407.426667pt;}
.y50{bottom:409.346667pt;}
.y11c{bottom:411.266667pt;}
.yec{bottom:411.586667pt;}
.yfd{bottom:412.066667pt;}
.y33{bottom:417.026667pt;}
.y22{bottom:418.786667pt;}
.ybf{bottom:420.866667pt;}
.y97{bottom:425.826667pt;}
.yb7{bottom:425.986667pt;}
.ycf{bottom:426.466667pt;}
.ya3{bottom:430.946667pt;}
.y6b{bottom:433.026667pt;}
.y8a{bottom:439.586667pt;}
.y64{bottom:441.826667pt;}
.y4f{bottom:445.986667pt;}
.y21{bottom:448.066667pt;}
.yeb{bottom:448.386667pt;}
.yfc{bottom:448.866667pt;}
.y10c{bottom:451.266667pt;}
.ye{bottom:454.946667pt;}
.y11b{bottom:458.626667pt;}
.y96{bottom:462.626667pt;}
.y32{bottom:464.546667pt;}
.ybe{bottom:466.306667pt;}
.ya2{bottom:467.586667pt;}
.yce{bottom:473.986667pt;}
.y89{bottom:476.386667pt;}
.y6a{bottom:476.866667pt;}
.y20{bottom:477.346667pt;}
.y4e{bottom:484.066667pt;}
.yea{bottom:485.026667pt;}
.y63{bottom:486.946667pt;}
.y10b{bottom:488.066667pt;}
.yfb{bottom:498.466667pt;}
.yb6{bottom:499.426667pt;}
.yd{bottom:502.466667pt;}
.ya1{bottom:505.693333pt;}
.y11a{bottom:506.173333pt;}
.y1f{bottom:506.653333pt;}
.y69{bottom:507.453333pt;}
.y95{bottom:510.173333pt;}
.ybd{bottom:510.813333pt;}
.y31{bottom:512.093333pt;}
.y88{bottom:513.213333pt;}
.y4d{bottom:520.893333pt;}
.ycd{bottom:521.533333pt;}
.ye9{bottom:523.133333pt;}
.y10a{bottom:524.893333pt;}
.y62{bottom:534.493333pt;}
.yc{bottom:534.813333pt;}
.y1e{bottom:536.093333pt;}
.y68{bottom:538.173333pt;}
.yb5{bottom:541.693333pt;}
.ya0{bottom:542.493333pt;}
.y119{bottom:542.973333pt;}
.ybc{bottom:544.573333pt;}
.y3a{bottom:548.893333pt;}
.y94{bottom:553.853333pt;}
.y87{bottom:555.293333pt;}
.y4c{bottom:557.693333pt;}
.y30{bottom:559.453333pt;}
.ye8{bottom:559.933333pt;}
.y109{bottom:561.693333pt;}
.yfa{bottom:564.093333pt;}
.y1d{bottom:565.373333pt;}
.ycc{bottom:568.893333pt;}
.yb4{bottom:574.813333pt;}
.ybb{bottom:578.333333pt;}
.y9f{bottom:579.133333pt;}
.y61{bottom:581.853333pt;}
.yb{bottom:582.333333pt;}
.y93{bottom:584.573333pt;}
.y39{bottom:585.693333pt;}
.y118{bottom:590.333333pt;}
.y4b{bottom:594.493333pt;}
.y1c{bottom:594.653333pt;}
.y2f{bottom:596.253333pt;}
.ye7{bottom:596.733333pt;}
.ydc{bottom:597.853333pt;}
.y108{bottom:598.333333pt;}
.y86{bottom:602.813333pt;}
.yf9{bottom:611.613333pt;}
.yba{bottom:611.933333pt;}
.y92{bottom:615.133333pt;}
.ycb{bottom:616.413333pt;}
.yb3{bottom:622.333333pt;}
.y9e{bottom:622.493333pt;}
.y1b{bottom:623.933333pt;}
.y60{bottom:629.373333pt;}
.ya{bottom:629.693333pt;}
.y4a{bottom:631.293333pt;}
.y2e{bottom:633.053333pt;}
.ye6{bottom:633.533333pt;}
.y107{bottom:635.133333pt;}
.y117{bottom:637.853333pt;}
.y85{bottom:639.453333pt;}
.ydb{bottom:645.373333pt;}
.yf8{bottom:648.413333pt;}
.y1a{bottom:653.213333pt;}
.y127{bottom:655.453333pt;}
.yb2{bottom:659.133333pt;}
.y91{bottom:660.253333pt;}
.yca{bottom:663.773333pt;}
.y5f{bottom:666.173333pt;}
.y9{bottom:666.493333pt;}
.y49{bottom:667.933333pt;}
.y9d{bottom:668.093333pt;}
.y2d{bottom:669.853333pt;}
.ye5{bottom:670.173333pt;}
.y79{bottom:671.453333pt;}
.y106{bottom:671.933333pt;}
.y116{bottom:674.653333pt;}
.y84{bottom:677.533333pt;}
.yda{bottom:682.173333pt;}
.y19{bottom:682.493333pt;}
.yf7{bottom:685.213333pt;}
.y126{bottom:692.253333pt;}
.yb1{bottom:695.933333pt;}
.y5e{bottom:702.973333pt;}
.y8{bottom:703.293333pt;}
.y2c{bottom:706.653333pt;}
.y90{bottom:707.773333pt;}
.y78{bottom:708.253333pt;}
.y105{bottom:708.733333pt;}
.y48{bottom:711.293333pt;}
.y18{bottom:711.773333pt;}
.y9c{bottom:712.413333pt;}
.ye4{bottom:713.533333pt;}
.y83{bottom:714.173333pt;}
.yd9{bottom:718.973333pt;}
.yf6{bottom:722.013333pt;}
.y115{bottom:722.173333pt;}
.yb0{bottom:732.773333pt;}
.y125{bottom:739.813333pt;}
.y17{bottom:741.093333pt;}
.y2b{bottom:743.493333pt;}
.y77{bottom:745.093333pt;}
.yc9{bottom:748.133333pt;}
.y5d{bottom:750.373333pt;}
.y7{bottom:750.853333pt;}
.y82{bottom:752.293333pt;}
.y8f{bottom:755.173333pt;}
.y9b{bottom:755.333333pt;}
.yd8{bottom:755.813333pt;}
.y104{bottom:758.373333pt;}
.y47{bottom:758.853333pt;}
.y114{bottom:759.013333pt;}
.ye3{bottom:761.093333pt;}
.yaf{bottom:769.573333pt;}
.y16{bottom:770.373333pt;}
.y124{bottom:776.613333pt;}
.y2a{bottom:780.293333pt;}
.y76{bottom:781.893333pt;}
.y5c{bottom:787.173333pt;}
.y6{bottom:787.653333pt;}
.y81{bottom:788.933333pt;}
.yd7{bottom:792.613333pt;}
.yf5{bottom:795.493333pt;}
.y46{bottom:795.653333pt;}
.ye2{bottom:797.893333pt;}
.y15{bottom:799.653333pt;}
.y8e{bottom:802.693333pt;}
.y113{bottom:806.373333pt;}
.y29{bottom:817.093333pt;}
.y5b{bottom:823.973333pt;}
.y80{bottom:827.013333pt;}
.y14{bottom:828.933333pt;}
.y75{bottom:829.413333pt;}
.y45{bottom:832.293333pt;}
.yc8{bottom:832.453333pt;}
.yf4{bottom:833.573333pt;}
.ye1{bottom:834.693333pt;}
.y5{bottom:835.173333pt;}
.y112{bottom:843.173333pt;}
.y8d{bottom:850.213333pt;}
.y28{bottom:853.893333pt;}
.y13{bottom:858.213333pt;}
.y123{bottom:860.773333pt;}
.y7f{bottom:863.813333pt;}
.y74{bottom:866.213333pt;}
.yc7{bottom:869.093333pt;}
.y44{bottom:870.373333pt;}
.y5a{bottom:871.493333pt;}
.y4{bottom:882.533333pt;}
.y12{bottom:887.493333pt;}
.y27{bottom:890.693333pt;}
.y8c{bottom:897.573333pt;}
.y7e{bottom:901.733333pt;}
.y73{bottom:903.013333pt;}
.y43{bottom:907.173333pt;}
.y59{bottom:908.293333pt;}
.y11{bottom:916.773333pt;}
.y3{bottom:930.053333pt;}
.y10{bottom:939.973333pt;}
.y26{bottom:940.133333pt;}
.y42{bottom:943.813333pt;}
.y58{bottom:945.093333pt;}
.y67{bottom:947.493333pt;}
.y2{bottom:973.440000pt;}
.y1{bottom:992.960000pt;}
.h9{height:37.194375pt;}
.ha{height:40.488438pt;}
.hd{height:41.227500pt;}
.h3{height:44.687500pt;}
.hb{height:44.878750pt;}
.h8{height:45.156250pt;}
.h7{height:46.593750pt;}
.hc{height:48.781250pt;}
.h1{height:55.468750pt;}
.h5{height:60.057813pt;}
.h6{height:61.969687pt;}
.h4{height:71.944688pt;}
.h2{height:90.312500pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x25{left:96.991988pt;}
.x1e{left:98.271988pt;}
.x16{left:102.751988pt;}
.x7{left:107.071988pt;}
.xc{left:112.031988pt;}
.x10{left:120.031988pt;}
.x13{left:122.271988pt;}
.x24{left:124.511988pt;}
.x1d{left:127.551988pt;}
.x14{left:133.151988pt;}
.x8{left:134.106655pt;}
.xe{left:144.026655pt;}
.x5{left:146.586655pt;}
.x21{left:148.986655pt;}
.x19{left:149.946655pt;}
.x18{left:160.666655pt;}
.xb{left:164.826655pt;}
.x27{left:166.266655pt;}
.x12{left:168.026655pt;}
.x20{left:200.506655pt;}
.x4{left:210.586655pt;}
.x15{left:213.946655pt;}
.x22{left:216.026655pt;}
.x11{left:235.226655pt;}
.xa{left:286.146655pt;}
.x28{left:302.146655pt;}
.x26{left:305.826655pt;}
.xd{left:315.906655pt;}
.x1f{left:329.026655pt;}
.x6{left:330.306655pt;}
.x9{left:343.106655pt;}
.xf{left:350.146655pt;}
.x2a{left:357.026655pt;}
.x29{left:360.066655pt;}
.x1a{left:362.146655pt;}
.x3{left:408.066655pt;}
.x1c{left:420.066655pt;}
.x23{left:432.093321pt;}
.x17{left:703.013321pt;}
.x1{left:711.653321pt;}
.x1b{left:744.133321pt;}
}




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