
    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_07c28740977b9d93e2495b53.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3041de891c0c54cbf852cc25.woff')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_ac5a9bd853ef4aea0855beed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.110840;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_86ea3ffe99809b8fe1ada371.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8d719dac011b190b647a6d39.woff')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_abbbe6aa4512292340d3605a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff7{font-family:ff7;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;}
.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.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m3{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:-69.120000px;}
.v1{vertical-align:-67.680000px;}
.v2{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-10.532160px;}
.ls22{letter-spacing:-8.807040px;}
.ls21{letter-spacing:-8.363520px;}
.ls23{letter-spacing:-8.046720px;}
.ls25{letter-spacing:-7.983360px;}
.ls20{letter-spacing:-6.906240px;}
.ls1f{letter-spacing:-6.526080px;}
.ls26{letter-spacing:-5.955840px;}
.ls1d{letter-spacing:-3.240000px;}
.lsa{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.334200px;}
.ls10{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.219000px;}
.lsf{letter-spacing:-0.166800px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.152640px;}
.ls2{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305280px;}
.lsc{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:1.267200px;}
.ls18{letter-spacing:1.440000px;}
.ls24{letter-spacing:3.801600px;}
.ls8{letter-spacing:6.865920px;}
.ls4{letter-spacing:7.920000px;}
.ls17{letter-spacing:8.640000px;}
.ls5{letter-spacing:11.160000px;}
.ls1b{letter-spacing:11.520000px;}
.ls14{letter-spacing:13.800000px;}
.ls13{letter-spacing:17.585280px;}
.ls6{letter-spacing:20.545920px;}
.ls7{letter-spacing:21.985920px;}
.ls1c{letter-spacing:33.505920px;}
.ls16{letter-spacing:44.945280px;}
.ls11{letter-spacing:119.136000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.145400px;}
.wsd{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.948000px;}
.ws3{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.673200px;}
.ws4{word-spacing:-15.621000px;}
.ws6{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.860000px;}
.wsf{word-spacing:-0.744000px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:35.256000px;}
._15{margin-left:-4.923840px;}
._7{margin-left:-3.819840px;}
._6{margin-left:-2.782080px;}
._1{margin-left:-1.589760px;}
._5{width:1.728480px;}
._b{width:2.937120px;}
._11{width:4.046400px;}
._e{width:5.208480px;}
._2{width:6.256800px;}
._0{width:7.286400px;}
._9{width:8.611200px;}
._d{width:9.688320px;}
._10{width:11.407680px;}
._3{width:13.314240px;}
._4{width:14.440320px;}
._18{width:15.446880px;}
._a{width:17.055840px;}
._f{width:18.679680px;}
._16{width:20.136960px;}
._17{width:21.479520px;}
._8{width:22.521600px;}
._13{width:26.231040px;}
._14{width:27.284640px;}
._12{width:31.199040px;}
._19{width:51.096000px;}
._1a{width:52.887360px;}
._c{width:861.418560px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(42,42,42);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:208.650000px;}
.y8d{bottom:229.170000px;}
.y32{bottom:229.350000px;}
.y62{bottom:229.710000px;}
.ybc{bottom:232.050000px;}
.ye5{bottom:235.470000px;}
.y114{bottom:247.350000px;}
.y31{bottom:247.530000px;}
.yfc{bottom:247.890000px;}
.y8c{bottom:248.250000px;}
.y61{bottom:248.610000px;}
.ybb{bottom:250.770000px;}
.ye4{bottom:254.370000px;}
.y113{bottom:264.990000px;}
.y30{bottom:265.530000px;}
.yfb{bottom:266.790000px;}
.y8b{bottom:267.150000px;}
.y60{bottom:267.330000px;}
.yba{bottom:269.670000px;}
.ye3{bottom:273.090000px;}
.y112{bottom:282.810000px;}
.y2f{bottom:283.710000px;}
.yfa{bottom:285.690000px;}
.y5f{bottom:286.230000px;}
.yb9{bottom:288.390000px;}
.ye2{bottom:291.990000px;}
.y111{bottom:299.190000px;}
.y2e{bottom:301.890000px;}
.yf9{bottom:304.410000px;}
.y5e{bottom:304.770000px;}
.y8a{bottom:305.130000px;}
.yb8{bottom:307.290000px;}
.ye1{bottom:310.710000px;}
.y110{bottom:311.070000px;}
.y2d{bottom:319.890000px;}
.yf8{bottom:323.310000px;}
.y5d{bottom:323.490000px;}
.y89{bottom:324.030000px;}
.yb7{bottom:326.010000px;}
.ye0{bottom:329.610000px;}
.y10f{bottom:329.970000px;}
.y2c{bottom:336.630000px;}
.y5c{bottom:342.030000px;}
.yf7{bottom:342.210000px;}
.y88{bottom:343.110000px;}
.yb6{bottom:344.910000px;}
.y2b{bottom:348.330000px;}
.y10e{bottom:348.690000px;}
.y5b{bottom:360.570000px;}
.yf6{bottom:361.110000px;}
.y87{bottom:362.010000px;}
.yb5{bottom:363.630000px;}
.y2a{bottom:366.510000px;}
.ydf{bottom:367.230000px;}
.y10d{bottom:367.590000px;}
.y5a{bottom:379.110000px;}
.yf5{bottom:380.010000px;}
.y86{bottom:381.090000px;}
.yb4{bottom:382.530000px;}
.y29{bottom:384.690000px;}
.yde{bottom:385.950000px;}
.y10c{bottom:386.310000px;}
.y59{bottom:397.695000px;}
.yf4{bottom:399.135000px;}
.y85{bottom:400.035000px;}
.yb3{bottom:401.475000px;}
.ydd{bottom:404.895000px;}
.y10b{bottom:405.255000px;}
.y28{bottom:413.355000px;}
.y58{bottom:416.415000px;}
.yf3{bottom:418.035000px;}
.y84{bottom:418.935000px;}
.yb2{bottom:420.195000px;}
.ydc{bottom:423.615000px;}
.y10a{bottom:423.975000px;}
.y27{bottom:432.255000px;}
.y57{bottom:434.955000px;}
.yf2{bottom:437.115000px;}
.y83{bottom:438.015000px;}
.yb1{bottom:439.095000px;}
.ydb{bottom:442.515000px;}
.y109{bottom:442.875000px;}
.y26{bottom:449.715000px;}
.y56{bottom:453.495000px;}
.yf1{bottom:456.015000px;}
.y82{bottom:456.915000px;}
.yb0{bottom:457.815000px;}
.yda{bottom:461.415000px;}
.y25{bottom:461.595000px;}
.y55{bottom:472.035000px;}
.yf0{bottom:474.915000px;}
.y81{bottom:475.995000px;}
.yaf{bottom:476.715000px;}
.y24{bottom:480.135000px;}
.yd9{bottom:480.315000px;}
.y108{bottom:480.495000px;}
.y54{bottom:490.575000px;}
.yef{bottom:493.995000px;}
.y80{bottom:494.895000px;}
.yae{bottom:495.435000px;}
.y23{bottom:497.595000px;}
.yd8{bottom:499.035000px;}
.y107{bottom:499.215000px;}
.y53{bottom:509.295000px;}
.yee{bottom:512.895000px;}
.y7f{bottom:513.795000px;}
.yad{bottom:514.335000px;}
.y22{bottom:515.775000px;}
.yd7{bottom:517.935000px;}
.y106{bottom:518.115000px;}
.y52{bottom:528.015000px;}
.yed{bottom:531.975000px;}
.y7e{bottom:532.875000px;}
.yac{bottom:533.055000px;}
.y21{bottom:533.775000px;}
.yd6{bottom:536.655000px;}
.y105{bottom:536.835000px;}
.y51{bottom:546.735000px;}
.yec{bottom:550.875000px;}
.y7d{bottom:551.775000px;}
.y20{bottom:551.955000px;}
.yd5{bottom:555.555000px;}
.y104{bottom:555.735000px;}
.y50{bottom:565.635000px;}
.yeb{bottom:569.775000px;}
.y1f{bottom:570.135000px;}
.yab{bottom:570.675000px;}
.y7c{bottom:570.855000px;}
.yd4{bottom:574.455000px;}
.y4f{bottom:584.355000px;}
.y1e{bottom:588.135000px;}
.yea{bottom:588.855000px;}
.yaa{bottom:589.575000px;}
.y7b{bottom:589.755000px;}
.yd3{bottom:593.175000px;}
.y103{bottom:593.355000px;}
.y4e{bottom:603.255000px;}
.y1d{bottom:606.315000px;}
.ye9{bottom:607.755000px;}
.ya9{bottom:608.295000px;}
.y7a{bottom:608.835000px;}
.yd2{bottom:612.075000px;}
.y4d{bottom:621.975000px;}
.y1c{bottom:624.495000px;}
.ye8{bottom:626.835000px;}
.ya8{bottom:627.195000px;}
.y79{bottom:627.735000px;}
.yd1{bottom:630.795000px;}
.y102{bottom:630.975000px;}
.y4c{bottom:640.905000px;}
.y1b{bottom:642.525000px;}
.ye7{bottom:645.765000px;}
.ya7{bottom:645.945000px;}
.y78{bottom:646.665000px;}
.yd0{bottom:649.725000px;}
.y101{bottom:649.905000px;}
.y4b{bottom:659.625000px;}
.y1a{bottom:660.705000px;}
.ye6{bottom:664.665000px;}
.ya6{bottom:664.845000px;}
.y77{bottom:665.745000px;}
.ycf{bottom:668.445000px;}
.y100{bottom:668.625000px;}
.y4a{bottom:678.525000px;}
.y19{bottom:678.705000px;}
.ya5{bottom:683.745000px;}
.y76{bottom:684.645000px;}
.yce{bottom:687.345000px;}
.yff{bottom:687.525000px;}
.y18{bottom:696.885000px;}
.y49{bottom:697.245000px;}
.ya4{bottom:702.645000px;}
.y75{bottom:703.725000px;}
.ycd{bottom:706.065000px;}
.yfe{bottom:706.245000px;}
.y17{bottom:715.065000px;}
.y48{bottom:716.145000px;}
.ya3{bottom:721.725000px;}
.y74{bottom:722.625000px;}
.ycc{bottom:724.965000px;}
.yfd{bottom:725.145000px;}
.y16{bottom:733.065000px;}
.y47{bottom:734.865000px;}
.ya2{bottom:740.625000px;}
.y73{bottom:741.525000px;}
.ycb{bottom:743.865000px;}
.y15{bottom:751.245000px;}
.y46{bottom:753.765000px;}
.ya1{bottom:759.705000px;}
.y72{bottom:760.605000px;}
.yca{bottom:762.765000px;}
.y45{bottom:772.665000px;}
.ya0{bottom:778.605000px;}
.y71{bottom:779.505000px;}
.yc9{bottom:781.485000px;}
.y14{bottom:786.165000px;}
.y44{bottom:791.385000px;}
.y9f{bottom:797.505000px;}
.y13{bottom:798.045000px;}
.y70{bottom:798.585000px;}
.yc8{bottom:800.385000px;}
.y43{bottom:810.285000px;}
.y9e{bottom:816.585000px;}
.y12{bottom:816.945000px;}
.y6f{bottom:817.485000px;}
.yc7{bottom:819.105000px;}
.y42{bottom:829.005000px;}
.y9d{bottom:835.485000px;}
.y11{bottom:836.025000px;}
.y6e{bottom:836.385000px;}
.yc6{bottom:838.005000px;}
.y41{bottom:847.905000px;}
.y9c{bottom:854.565000px;}
.y10{bottom:854.925000px;}
.y6d{bottom:855.465000px;}
.yc5{bottom:856.725000px;}
.y40{bottom:866.625000px;}
.y9b{bottom:873.465000px;}
.yf{bottom:874.005000px;}
.y6c{bottom:874.365000px;}
.yc4{bottom:875.625000px;}
.y120{bottom:884.625000px;}
.y3f{bottom:885.525000px;}
.y9a{bottom:892.365000px;}
.ye{bottom:892.950000px;}
.y6b{bottom:893.490000px;}
.yc3{bottom:894.390000px;}
.y11f{bottom:902.670000px;}
.y3e{bottom:904.290000px;}
.y99{bottom:911.490000px;}
.yd{bottom:911.850000px;}
.y6a{bottom:912.390000px;}
.yc2{bottom:913.290000px;}
.y11e{bottom:921.570000px;}
.y3d{bottom:923.190000px;}
.y98{bottom:930.390000px;}
.yc{bottom:930.930000px;}
.y69{bottom:931.290000px;}
.yc1{bottom:932.010000px;}
.y11d{bottom:939.570000px;}
.y3c{bottom:941.910000px;}
.y97{bottom:949.470000px;}
.yb{bottom:949.830000px;}
.y68{bottom:950.370000px;}
.yc0{bottom:950.910000px;}
.y11c{bottom:957.750000px;}
.y3b{bottom:960.810000px;}
.y96{bottom:968.370000px;}
.ya{bottom:968.910000px;}
.y67{bottom:969.270000px;}
.ybf{bottom:969.630000px;}
.y11b{bottom:975.930000px;}
.y3a{bottom:979.530000px;}
.y95{bottom:987.270000px;}
.y9{bottom:987.810000px;}
.y66{bottom:988.350000px;}
.ybe{bottom:988.530000px;}
.y11a{bottom:993.930000px;}
.y39{bottom:998.430000px;}
.y94{bottom:1006.350000px;}
.y8{bottom:1006.710000px;}
.y65{bottom:1007.250000px;}
.ybd{bottom:1007.430000px;}
.y119{bottom:1012.110000px;}
.y38{bottom:1017.150000px;}
.y93{bottom:1025.250000px;}
.y7{bottom:1025.790000px;}
.y64{bottom:1026.150000px;}
.y118{bottom:1030.290000px;}
.y37{bottom:1036.050000px;}
.y92{bottom:1044.330000px;}
.y6{bottom:1044.690000px;}
.y63{bottom:1045.050000px;}
.y117{bottom:1048.290000px;}
.y36{bottom:1054.770000px;}
.y91{bottom:1063.230000px;}
.y5{bottom:1063.770000px;}
.y116{bottom:1066.470000px;}
.y90{bottom:1082.130000px;}
.y4{bottom:1082.670000px;}
.y115{bottom:1084.470000px;}
.y35{bottom:1090.950000px;}
.y8f{bottom:1101.210000px;}
.y3{bottom:1101.390000px;}
.y34{bottom:1102.650000px;}
.y8e{bottom:1120.110000px;}
.y2{bottom:1120.290000px;}
.y33{bottom:1120.830000px;}
.h7{height:35.332031px;}
.hc{height:36.281250px;}
.h2{height:52.998047px;}
.h10{height:53.573906px;}
.hb{height:58.651172px;}
.h6{height:59.383125px;}
.h11{height:61.423863px;}
.hd{height:62.153438px;}
.h9{height:62.184375px;}
.ha{height:63.855000px;}
.h3{height:64.978594px;}
.h4{height:65.010937px;}
.h8{height:65.124096px;}
.h5{height:66.757500px;}
.h12{height:68.084282px;}
.h1{height:490.500000px;}
.h0{height:490.819500px;}
.hf{height:1263.000000px;}
.he{height:1263.060000px;}
.w1{width:888.750000px;}
.w0{width:888.975000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:139.101000px;}
.x11{left:140.435987px;}
.x6{left:145.401000px;}
.x14{left:147.816000px;}
.x5{left:149.715000px;}
.x12{left:151.049987px;}
.x13{left:158.969987px;}
.x4{left:166.095000px;}
.x2{left:171.135000px;}
.x10{left:172.469987px;}
.x7{left:193.095000px;}
.x9{left:211.275000px;}
.xa{left:358.560000px;}
.x1{left:435.090000px;}
.xf{left:436.424987px;}
.x8{left:445.350000px;}
.xc{left:450.930000px;}
.xb{left:513.030000px;}
.xd{left:598.035000px;}
.xe{left:751.605000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.160000pt;}
.v2{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-9.361920pt;}
.ls22{letter-spacing:-7.828480pt;}
.ls21{letter-spacing:-7.434240pt;}
.ls23{letter-spacing:-7.152640pt;}
.ls25{letter-spacing:-7.096320pt;}
.ls20{letter-spacing:-6.138880pt;}
.ls1f{letter-spacing:-5.800960pt;}
.ls26{letter-spacing:-5.294080pt;}
.ls1d{letter-spacing:-2.880000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.297067pt;}
.ls10{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.194667pt;}
.lsf{letter-spacing:-0.148267pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.135680pt;}
.ls2{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271360pt;}
.lsc{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:1.126400pt;}
.ls18{letter-spacing:1.280000pt;}
.ls24{letter-spacing:3.379200pt;}
.ls8{letter-spacing:6.103040pt;}
.ls4{letter-spacing:7.040000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls5{letter-spacing:9.920000pt;}
.ls1b{letter-spacing:10.240000pt;}
.ls14{letter-spacing:12.266667pt;}
.ls13{letter-spacing:15.631360pt;}
.ls6{letter-spacing:18.263040pt;}
.ls7{letter-spacing:19.543040pt;}
.ls1c{letter-spacing:29.783040pt;}
.ls16{letter-spacing:39.951360pt;}
.ls11{letter-spacing:105.898667pt;}
.ws2{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.351467pt;}
.wsd{word-spacing:-14.313067pt;}
.wsb{word-spacing:-14.176000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.931733pt;}
.ws4{word-spacing:-13.885333pt;}
.ws6{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsf{word-spacing:-0.661333pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:31.338667pt;}
._15{margin-left:-4.376747pt;}
._7{margin-left:-3.395413pt;}
._6{margin-left:-2.472960pt;}
._1{margin-left:-1.413120pt;}
._5{width:1.536427pt;}
._b{width:2.610773pt;}
._11{width:3.596800pt;}
._e{width:4.629760pt;}
._2{width:5.561600pt;}
._0{width:6.476800pt;}
._9{width:7.654400pt;}
._d{width:8.611840pt;}
._10{width:10.140160pt;}
._3{width:11.834880pt;}
._4{width:12.835840pt;}
._18{width:13.730560pt;}
._a{width:15.160747pt;}
._f{width:16.604160pt;}
._16{width:17.899520pt;}
._17{width:19.092907pt;}
._8{width:20.019200pt;}
._13{width:23.316480pt;}
._14{width:24.253013pt;}
._12{width:27.732480pt;}
._19{width:45.418667pt;}
._1a{width:47.010987pt;}
._c{width:765.705387pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:185.466667pt;}
.y8d{bottom:203.706667pt;}
.y32{bottom:203.866667pt;}
.y62{bottom:204.186667pt;}
.ybc{bottom:206.266667pt;}
.ye5{bottom:209.306667pt;}
.y114{bottom:219.866667pt;}
.y31{bottom:220.026667pt;}
.yfc{bottom:220.346667pt;}
.y8c{bottom:220.666667pt;}
.y61{bottom:220.986667pt;}
.ybb{bottom:222.906667pt;}
.ye4{bottom:226.106667pt;}
.y113{bottom:235.546667pt;}
.y30{bottom:236.026667pt;}
.yfb{bottom:237.146667pt;}
.y8b{bottom:237.466667pt;}
.y60{bottom:237.626667pt;}
.yba{bottom:239.706667pt;}
.ye3{bottom:242.746667pt;}
.y112{bottom:251.386667pt;}
.y2f{bottom:252.186667pt;}
.yfa{bottom:253.946667pt;}
.y5f{bottom:254.426667pt;}
.yb9{bottom:256.346667pt;}
.ye2{bottom:259.546667pt;}
.y111{bottom:265.946667pt;}
.y2e{bottom:268.346667pt;}
.yf9{bottom:270.586667pt;}
.y5e{bottom:270.906667pt;}
.y8a{bottom:271.226667pt;}
.yb8{bottom:273.146667pt;}
.ye1{bottom:276.186667pt;}
.y110{bottom:276.506667pt;}
.y2d{bottom:284.346667pt;}
.yf8{bottom:287.386667pt;}
.y5d{bottom:287.546667pt;}
.y89{bottom:288.026667pt;}
.yb7{bottom:289.786667pt;}
.ye0{bottom:292.986667pt;}
.y10f{bottom:293.306667pt;}
.y2c{bottom:299.226667pt;}
.y5c{bottom:304.026667pt;}
.yf7{bottom:304.186667pt;}
.y88{bottom:304.986667pt;}
.yb6{bottom:306.586667pt;}
.y2b{bottom:309.626667pt;}
.y10e{bottom:309.946667pt;}
.y5b{bottom:320.506667pt;}
.yf6{bottom:320.986667pt;}
.y87{bottom:321.786667pt;}
.yb5{bottom:323.226667pt;}
.y2a{bottom:325.786667pt;}
.ydf{bottom:326.426667pt;}
.y10d{bottom:326.746667pt;}
.y5a{bottom:336.986667pt;}
.yf5{bottom:337.786667pt;}
.y86{bottom:338.746667pt;}
.yb4{bottom:340.026667pt;}
.y29{bottom:341.946667pt;}
.yde{bottom:343.066667pt;}
.y10c{bottom:343.386667pt;}
.y59{bottom:353.506667pt;}
.yf4{bottom:354.786667pt;}
.y85{bottom:355.586667pt;}
.yb3{bottom:356.866667pt;}
.ydd{bottom:359.906667pt;}
.y10b{bottom:360.226667pt;}
.y28{bottom:367.426667pt;}
.y58{bottom:370.146667pt;}
.yf3{bottom:371.586667pt;}
.y84{bottom:372.386667pt;}
.yb2{bottom:373.506667pt;}
.ydc{bottom:376.546667pt;}
.y10a{bottom:376.866667pt;}
.y27{bottom:384.226667pt;}
.y57{bottom:386.626667pt;}
.yf2{bottom:388.546667pt;}
.y83{bottom:389.346667pt;}
.yb1{bottom:390.306667pt;}
.ydb{bottom:393.346667pt;}
.y109{bottom:393.666667pt;}
.y26{bottom:399.746667pt;}
.y56{bottom:403.106667pt;}
.yf1{bottom:405.346667pt;}
.y82{bottom:406.146667pt;}
.yb0{bottom:406.946667pt;}
.yda{bottom:410.146667pt;}
.y25{bottom:410.306667pt;}
.y55{bottom:419.586667pt;}
.yf0{bottom:422.146667pt;}
.y81{bottom:423.106667pt;}
.yaf{bottom:423.746667pt;}
.y24{bottom:426.786667pt;}
.yd9{bottom:426.946667pt;}
.y108{bottom:427.106667pt;}
.y54{bottom:436.066667pt;}
.yef{bottom:439.106667pt;}
.y80{bottom:439.906667pt;}
.yae{bottom:440.386667pt;}
.y23{bottom:442.306667pt;}
.yd8{bottom:443.586667pt;}
.y107{bottom:443.746667pt;}
.y53{bottom:452.706667pt;}
.yee{bottom:455.906667pt;}
.y7f{bottom:456.706667pt;}
.yad{bottom:457.186667pt;}
.y22{bottom:458.466667pt;}
.yd7{bottom:460.386667pt;}
.y106{bottom:460.546667pt;}
.y52{bottom:469.346667pt;}
.yed{bottom:472.866667pt;}
.y7e{bottom:473.666667pt;}
.yac{bottom:473.826667pt;}
.y21{bottom:474.466667pt;}
.yd6{bottom:477.026667pt;}
.y105{bottom:477.186667pt;}
.y51{bottom:485.986667pt;}
.yec{bottom:489.666667pt;}
.y7d{bottom:490.466667pt;}
.y20{bottom:490.626667pt;}
.yd5{bottom:493.826667pt;}
.y104{bottom:493.986667pt;}
.y50{bottom:502.786667pt;}
.yeb{bottom:506.466667pt;}
.y1f{bottom:506.786667pt;}
.yab{bottom:507.266667pt;}
.y7c{bottom:507.426667pt;}
.yd4{bottom:510.626667pt;}
.y4f{bottom:519.426667pt;}
.y1e{bottom:522.786667pt;}
.yea{bottom:523.426667pt;}
.yaa{bottom:524.066667pt;}
.y7b{bottom:524.226667pt;}
.yd3{bottom:527.266667pt;}
.y103{bottom:527.426667pt;}
.y4e{bottom:536.226667pt;}
.y1d{bottom:538.946667pt;}
.ye9{bottom:540.226667pt;}
.ya9{bottom:540.706667pt;}
.y7a{bottom:541.186667pt;}
.yd2{bottom:544.066667pt;}
.y4d{bottom:552.866667pt;}
.y1c{bottom:555.106667pt;}
.ye8{bottom:557.186667pt;}
.ya8{bottom:557.506667pt;}
.y79{bottom:557.986667pt;}
.yd1{bottom:560.706667pt;}
.y102{bottom:560.866667pt;}
.y4c{bottom:569.693333pt;}
.y1b{bottom:571.133333pt;}
.ye7{bottom:574.013333pt;}
.ya7{bottom:574.173333pt;}
.y78{bottom:574.813333pt;}
.yd0{bottom:577.533333pt;}
.y101{bottom:577.693333pt;}
.y4b{bottom:586.333333pt;}
.y1a{bottom:587.293333pt;}
.ye6{bottom:590.813333pt;}
.ya6{bottom:590.973333pt;}
.y77{bottom:591.773333pt;}
.ycf{bottom:594.173333pt;}
.y100{bottom:594.333333pt;}
.y4a{bottom:603.133333pt;}
.y19{bottom:603.293333pt;}
.ya5{bottom:607.773333pt;}
.y76{bottom:608.573333pt;}
.yce{bottom:610.973333pt;}
.yff{bottom:611.133333pt;}
.y18{bottom:619.453333pt;}
.y49{bottom:619.773333pt;}
.ya4{bottom:624.573333pt;}
.y75{bottom:625.533333pt;}
.ycd{bottom:627.613333pt;}
.yfe{bottom:627.773333pt;}
.y17{bottom:635.613333pt;}
.y48{bottom:636.573333pt;}
.ya3{bottom:641.533333pt;}
.y74{bottom:642.333333pt;}
.ycc{bottom:644.413333pt;}
.yfd{bottom:644.573333pt;}
.y16{bottom:651.613333pt;}
.y47{bottom:653.213333pt;}
.ya2{bottom:658.333333pt;}
.y73{bottom:659.133333pt;}
.ycb{bottom:661.213333pt;}
.y15{bottom:667.773333pt;}
.y46{bottom:670.013333pt;}
.ya1{bottom:675.293333pt;}
.y72{bottom:676.093333pt;}
.yca{bottom:678.013333pt;}
.y45{bottom:686.813333pt;}
.ya0{bottom:692.093333pt;}
.y71{bottom:692.893333pt;}
.yc9{bottom:694.653333pt;}
.y14{bottom:698.813333pt;}
.y44{bottom:703.453333pt;}
.y9f{bottom:708.893333pt;}
.y13{bottom:709.373333pt;}
.y70{bottom:709.853333pt;}
.yc8{bottom:711.453333pt;}
.y43{bottom:720.253333pt;}
.y9e{bottom:725.853333pt;}
.y12{bottom:726.173333pt;}
.y6f{bottom:726.653333pt;}
.yc7{bottom:728.093333pt;}
.y42{bottom:736.893333pt;}
.y9d{bottom:742.653333pt;}
.y11{bottom:743.133333pt;}
.y6e{bottom:743.453333pt;}
.yc6{bottom:744.893333pt;}
.y41{bottom:753.693333pt;}
.y9c{bottom:759.613333pt;}
.y10{bottom:759.933333pt;}
.y6d{bottom:760.413333pt;}
.yc5{bottom:761.533333pt;}
.y40{bottom:770.333333pt;}
.y9b{bottom:776.413333pt;}
.yf{bottom:776.893333pt;}
.y6c{bottom:777.213333pt;}
.yc4{bottom:778.333333pt;}
.y120{bottom:786.333333pt;}
.y3f{bottom:787.133333pt;}
.y9a{bottom:793.213333pt;}
.ye{bottom:793.733333pt;}
.y6b{bottom:794.213333pt;}
.yc3{bottom:795.013333pt;}
.y11f{bottom:802.373333pt;}
.y3e{bottom:803.813333pt;}
.y99{bottom:810.213333pt;}
.yd{bottom:810.533333pt;}
.y6a{bottom:811.013333pt;}
.yc2{bottom:811.813333pt;}
.y11e{bottom:819.173333pt;}
.y3d{bottom:820.613333pt;}
.y98{bottom:827.013333pt;}
.yc{bottom:827.493333pt;}
.y69{bottom:827.813333pt;}
.yc1{bottom:828.453333pt;}
.y11d{bottom:835.173333pt;}
.y3c{bottom:837.253333pt;}
.y97{bottom:843.973333pt;}
.yb{bottom:844.293333pt;}
.y68{bottom:844.773333pt;}
.yc0{bottom:845.253333pt;}
.y11c{bottom:851.333333pt;}
.y3b{bottom:854.053333pt;}
.y96{bottom:860.773333pt;}
.ya{bottom:861.253333pt;}
.y67{bottom:861.573333pt;}
.ybf{bottom:861.893333pt;}
.y11b{bottom:867.493333pt;}
.y3a{bottom:870.693333pt;}
.y95{bottom:877.573333pt;}
.y9{bottom:878.053333pt;}
.y66{bottom:878.533333pt;}
.ybe{bottom:878.693333pt;}
.y11a{bottom:883.493333pt;}
.y39{bottom:887.493333pt;}
.y94{bottom:894.533333pt;}
.y8{bottom:894.853333pt;}
.y65{bottom:895.333333pt;}
.ybd{bottom:895.493333pt;}
.y119{bottom:899.653333pt;}
.y38{bottom:904.133333pt;}
.y93{bottom:911.333333pt;}
.y7{bottom:911.813333pt;}
.y64{bottom:912.133333pt;}
.y118{bottom:915.813333pt;}
.y37{bottom:920.933333pt;}
.y92{bottom:928.293333pt;}
.y6{bottom:928.613333pt;}
.y63{bottom:928.933333pt;}
.y117{bottom:931.813333pt;}
.y36{bottom:937.573333pt;}
.y91{bottom:945.093333pt;}
.y5{bottom:945.573333pt;}
.y116{bottom:947.973333pt;}
.y90{bottom:961.893333pt;}
.y4{bottom:962.373333pt;}
.y115{bottom:963.973333pt;}
.y35{bottom:969.733333pt;}
.y8f{bottom:978.853333pt;}
.y3{bottom:979.013333pt;}
.y34{bottom:980.133333pt;}
.y8e{bottom:995.653333pt;}
.y2{bottom:995.813333pt;}
.y33{bottom:996.293333pt;}
.h7{height:31.406250pt;}
.hc{height:32.250000pt;}
.h2{height:47.109375pt;}
.h10{height:47.621250pt;}
.hb{height:52.134375pt;}
.h6{height:52.785000pt;}
.h11{height:54.598989pt;}
.hd{height:55.247500pt;}
.h9{height:55.275000pt;}
.ha{height:56.760000pt;}
.h3{height:57.758750pt;}
.h4{height:57.787500pt;}
.h8{height:57.888085pt;}
.h5{height:59.340000pt;}
.h12{height:60.519362pt;}
.h1{height:436.000000pt;}
.h0{height:436.284000pt;}
.hf{height:1122.666667pt;}
.he{height:1122.720000pt;}
.w1{width:790.000000pt;}
.w0{width:790.200000pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:123.645333pt;}
.x11{left:124.831988pt;}
.x6{left:129.245333pt;}
.x14{left:131.392000pt;}
.x5{left:133.080000pt;}
.x12{left:134.266655pt;}
.x13{left:141.306655pt;}
.x4{left:147.640000pt;}
.x2{left:152.120000pt;}
.x10{left:153.306655pt;}
.x7{left:171.640000pt;}
.x9{left:187.800000pt;}
.xa{left:318.720000pt;}
.x1{left:386.746667pt;}
.xf{left:387.933322pt;}
.x8{left:395.866667pt;}
.xc{left:400.826667pt;}
.xb{left:456.026667pt;}
.xd{left:531.586667pt;}
.xe{left:668.093333pt;}
}




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