
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5c3fb81cb5f9c5f6162bb428.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_2aee1eabdc181870ee0c15d2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_b118e4b4c8618f67fe4aeb7c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_460801e948a0b87acfdd0b3d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_0813fb27bcc292524bb47c01.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_68e32c515602ae224f0ca0dc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_2a746909460cb04f17908b0c.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.444600px;}
.ls10{letter-spacing:-0.391800px;}
.ls1c{letter-spacing:-0.207000px;}
.ls15{letter-spacing:-0.186600px;}
.ls24{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.lsd{letter-spacing:-0.084000px;}
.lsa{letter-spacing:-0.051600px;}
.ls21{letter-spacing:-0.031680px;}
.ls1d{letter-spacing:-0.014760px;}
.lsc{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065520px;}
.ls11{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.173400px;}
.lsb{letter-spacing:0.174600px;}
.ls1f{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.181200px;}
.ls22{letter-spacing:0.199200px;}
.ls3{letter-spacing:0.225000px;}
.ls16{letter-spacing:0.275400px;}
.ls25{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:4.773600px;}
.ls20{letter-spacing:47.726640px;}
.ls19{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.wse{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._8{margin-left:-4.028401px;}
._7{margin-left:-2.825400px;}
._2{margin-left:-1.107840px;}
._1{width:1.207716px;}
._6{width:2.259599px;}
._4{width:3.847800px;}
._5{width:5.530800px;}
._c{width:7.034401px;}
._9{width:8.236200px;}
._e{width:9.757202px;}
._a{width:10.941600px;}
._b{width:11.965203px;}
._3{width:14.496852px;}
._0{width:15.769188px;}
._d{width:16.789355px;}
._f{width:18.665569px;}
._13{width:19.885532px;}
._14{width:25.370640px;}
._15{width:82.845360px;}
._11{width:115.754760px;}
._12{width:116.909640px;}
._10{width:386.751960px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:7.830000px;}
.y58{bottom:7.920000px;}
.y74{bottom:18.360000px;}
.y7c{bottom:25.470000px;}
.y7f{bottom:26.550000px;}
.y82{bottom:26.640000px;}
.y84{bottom:29.970000px;}
.y5a{bottom:35.190000px;}
.y73{bottom:40.410000px;}
.y91{bottom:54.630000px;}
.y62{bottom:62.460000px;}
.y5e{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7a{bottom:107.490000px;}
.y9b{bottom:111.360000px;}
.yea{bottom:125.130000px;}
.y72{bottom:128.640000px;}
.y9a{bottom:128.910000px;}
.yc8{bottom:139.620000px;}
.ye9{bottom:142.680000px;}
.y99{bottom:146.550000px;}
.y76{bottom:155.910000px;}
.yc7{bottom:157.260000px;}
.y27{bottom:161.580000px;}
.y98{bottom:164.100000px;}
.ye8{bottom:169.320000px;}
.y6b{bottom:171.900000px;}
.yc6{bottom:174.810000px;}
.y54{bottom:177.600000px;}
.y26{bottom:179.130000px;}
.y75{bottom:183.270000px;}
.ye7{bottom:186.870000px;}
.yc5{bottom:192.360000px;}
.y25{bottom:196.680000px;}
.y97{bottom:199.740000px;}
.yc4{bottom:210.000000px;}
.y6a{bottom:210.630000px;}
.y53{bottom:213.240000px;}
.ye6{bottom:213.420000px;}
.y24{bottom:214.320000px;}
.yc3{bottom:227.550000px;}
.y23{bottom:231.870000px;}
.y96{bottom:231.960000px;}
.y71{bottom:237.990000px;}
.ye5{bottom:240.060000px;}
.y52{bottom:240.150000px;}
.yc2{bottom:245.190000px;}
.y22{bottom:249.510000px;}
.ye4{bottom:257.610000px;}
.yc1{bottom:262.740000px;}
.y70{bottom:265.260000px;}
.y21{bottom:267.060000px;}
.yc0{bottom:280.290000px;}
.ye3{bottom:284.250000px;}
.y20{bottom:284.610000px;}
.y51{bottom:288.390000px;}
.y110{bottom:292.440000px;}
.y6f{bottom:292.620000px;}
.ybf{bottom:297.930000px;}
.ye2{bottom:301.800000px;}
.y1f{bottom:302.250000px;}
.y50{bottom:305.940000px;}
.y10f{bottom:309.990000px;}
.ybe{bottom:315.480000px;}
.y1e{bottom:319.800000px;}
.y6e{bottom:319.980000px;}
.y4f{bottom:323.580000px;}
.y10e{bottom:327.540000px;}
.ye1{bottom:328.350000px;}
.y1d{bottom:337.440000px;}
.ye0{bottom:345.990000px;}
.y6d{bottom:347.250000px;}
.ybd{bottom:351.120000px;}
.y10d{bottom:354.180000px;}
.y1c{bottom:354.990000px;}
.y4e{bottom:359.130000px;}
.ydf{bottom:363.540000px;}
.ybc{bottom:368.670000px;}
.y10c{bottom:371.730000px;}
.y6c{bottom:374.610000px;}
.ybb{bottom:386.220000px;}
.y10b{bottom:389.370000px;}
.yde{bottom:390.090000px;}
.y1b{bottom:390.540000px;}
.y4d{bottom:394.770000px;}
.y69{bottom:401.970000px;}
.yba{bottom:403.860000px;}
.ydd{bottom:407.730000px;}
.y1a{bottom:408.180000px;}
.y4c{bottom:412.320000px;}
.y10a{bottom:415.920000px;}
.yb9{bottom:421.410000px;}
.y19{bottom:425.730000px;}
.y4b{bottom:429.870000px;}
.y109{bottom:433.470000px;}
.ydc{bottom:434.280000px;}
.y18{bottom:443.280000px;}
.y4a{bottom:447.510000px;}
.yb8{bottom:447.960000px;}
.y68{bottom:450.660000px;}
.y108{bottom:451.110000px;}
.ydb{bottom:451.920000px;}
.y17{bottom:460.920000px;}
.y49{bottom:474.090000px;}
.y107{bottom:477.690000px;}
.y16{bottom:478.500000px;}
.yb7{bottom:483.630000px;}
.y67{bottom:486.240000px;}
.yda{bottom:496.050000px;}
.y15{bottom:496.140000px;}
.yb6{bottom:501.180000px;}
.y66{bottom:503.880000px;}
.y106{bottom:504.330000px;}
.y48{bottom:509.730000px;}
.y14{bottom:513.690000px;}
.yb5{bottom:518.820000px;}
.y65{bottom:521.430000px;}
.y105{bottom:521.880000px;}
.yd9{bottom:522.690000px;}
.y47{bottom:527.280000px;}
.yb4{bottom:536.370000px;}
.yd8{bottom:540.240000px;}
.y13{bottom:540.600000px;}
.y46{bottom:544.830000px;}
.y104{bottom:548.430000px;}
.y61{bottom:554.460000px;}
.yb3{bottom:554.820000px;}
.y45{bottom:562.470000px;}
.y103{bottom:566.070000px;}
.yd7{bottom:566.880000px;}
.yb2{bottom:572.370000px;}
.y64{bottom:581.730000px;}
.y12{bottom:589.200000px;}
.yb1{bottom:590.010000px;}
.y102{bottom:592.620000px;}
.yd6{bottom:593.430000px;}
.y44{bottom:598.020000px;}
.yb0{bottom:607.560000px;}
.y63{bottom:609.090000px;}
.yd5{bottom:610.980000px;}
.y43{bottom:615.660000px;}
.y101{bottom:619.260000px;}
.yaf{bottom:625.110000px;}
.y11{bottom:626.190000px;}
.y42{bottom:633.210000px;}
.y5d{bottom:636.450000px;}
.y100{bottom:636.810000px;}
.yd4{bottom:637.620000px;}
.y95{bottom:640.320000px;}
.yae{bottom:642.750000px;}
.y10{bottom:643.830000px;}
.y41{bottom:650.760000px;}
.yd3{bottom:655.170000px;}
.yad{bottom:660.300000px;}
.yf{bottom:661.380000px;}
.yff{bottom:663.360000px;}
.y60{bottom:663.720000px;}
.y40{bottom:668.400000px;}
.y94{bottom:673.260000px;}
.ye{bottom:679.020000px;}
.yfe{bottom:681.000000px;}
.yd2{bottom:682.080000px;}
.y5f{bottom:691.080000px;}
.y3f{bottom:694.950000px;}
.yd{bottom:696.570000px;}
.yac{bottom:696.750000px;}
.y90{bottom:700.620000px;}
.yfd{bottom:707.550000px;}
.yc{bottom:714.120000px;}
.yab{bottom:714.300000px;}
.y59{bottom:718.440000px;}
.yfc{bottom:725.190000px;}
.y93{bottom:727.980000px;}
.yd1{bottom:730.410000px;}
.y3e{bottom:730.590000px;}
.yaa{bottom:731.940000px;}
.yb{bottom:741.120000px;}
.yfb{bottom:742.740000px;}
.y5b{bottom:745.800000px;}
.yd0{bottom:747.960000px;}
.y3d{bottom:748.140000px;}
.ya9{bottom:749.490000px;}
.y92{bottom:755.250000px;}
.y3c{bottom:765.690000px;}
.ya8{bottom:767.040000px;}
.yfa{bottom:769.290000px;}
.y57{bottom:773.070000px;}
.ycf{bottom:774.870000px;}
.y89{bottom:782.610000px;}
.y3b{bottom:783.330000px;}
.yf9{bottom:786.930000px;}
.ya{bottom:787.830000px;}
.ya7{bottom:799.620000px;}
.y8f{bottom:809.970000px;}
.yce{bottom:811.860000px;}
.yf8{bottom:813.480000px;}
.ya6{bottom:817.260000px;}
.y3a{bottom:818.880000px;}
.y56{bottom:821.760000px;}
.y9{bottom:823.380000px;}
.yf7{bottom:831.030000px;}
.ya5{bottom:834.810000px;}
.y39{bottom:836.520000px;}
.y8e{bottom:837.330000px;}
.ycd{bottom:838.770000px;}
.ya4{bottom:852.360000px;}
.y38{bottom:854.070000px;}
.y55{bottom:857.400000px;}
.yf6{bottom:857.670000px;}
.y8{bottom:859.200000px;}
.y8d{bottom:864.600000px;}
.y37{bottom:871.620000px;}
.yf5{bottom:875.220000px;}
.ycc{bottom:876.120000px;}
.y80{bottom:881.340000px;}
.ya3{bottom:888.810000px;}
.y36{bottom:889.260000px;}
.y8c{bottom:891.960000px;}
.y7{bottom:898.980000px;}
.yf4{bottom:901.860000px;}
.ya2{bottom:906.450000px;}
.y35{bottom:906.810000px;}
.y81{bottom:908.700000px;}
.y6{bottom:916.980000px;}
.y8b{bottom:919.320000px;}
.yf3{bottom:919.410000px;}
.ya1{bottom:924.000000px;}
.y34{bottom:924.450000px;}
.y79{bottom:936.060000px;}
.ya0{bottom:941.550000px;}
.y33{bottom:942.000000px;}
.yf2{bottom:945.960000px;}
.y8a{bottom:946.680000px;}
.y5{bottom:949.290000px;}
.y9f{bottom:959.190000px;}
.ycb{bottom:959.550000px;}
.y7e{bottom:963.330000px;}
.yf1{bottom:963.600000px;}
.y32{bottom:968.910000px;}
.y88{bottom:973.950000px;}
.y9e{bottom:976.740000px;}
.yca{bottom:977.190000px;}
.y4{bottom:987.630000px;}
.yf0{bottom:990.150000px;}
.y7d{bottom:990.690000px;}
.yc9{bottom:994.740000px;}
.y9d{bottom:1003.290000px;}
.yef{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1017.180000px;}
.y7b{bottom:1018.080000px;}
.y87{bottom:1022.670000px;}
.yee{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y9c{bottom:1039.230000px;}
.yed{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y86{bottom:1058.310000px;}
.y78{bottom:1062.990000px;}
.y2e{bottom:1069.920000px;}
.yec{bottom:1078.560000px;}
.y85{bottom:1082.250000px;}
.y2d{bottom:1087.560000px;}
.y77{bottom:1090.350000px;}
.yeb{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y83{bottom:1109.610000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.ha{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:44.190000px;}
.h7{height:50.902383px;}
.hb{height:53.910000px;}
.h5{height:55.779258px;}
.h13{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:81.180000px;}
.hd{height:81.270000px;}
.h10{height:126.210000px;}
.hf{height:190.620000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:45.990000px;}
.w8{width:52.830000px;}
.w12{width:53.550000px;}
.w7{width:57.150000px;}
.w11{width:60.390000px;}
.w10{width:64.800000px;}
.wa{width:87.480000px;}
.w3{width:102.060000px;}
.wc{width:102.360000px;}
.w13{width:109.470000px;}
.w5{width:195.300000px;}
.wd{width:211.410000px;}
.w4{width:219.540000px;}
.wb{width:286.320000px;}
.w14{width:295.230000px;}
.w6{width:374.520000px;}
.wf{width:405.420000px;}
.we{width:440.400000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.x10{left:7.740000px;}
.x1{left:68.040000px;}
.x17{left:95.039987px;}
.x19{left:111.239987px;}
.x18{left:122.039987px;}
.xf{left:153.360000px;}
.xd{left:171.840000px;}
.x8{left:180.300000px;}
.x4{left:187.410000px;}
.x2{left:202.799987px;}
.x14{left:263.550000px;}
.xc{left:268.500000px;}
.x6{left:290.280000px;}
.x16{left:336.809987px;}
.xe{left:384.060000px;}
.x7{left:510.540000px;}
.x9{left:555.630000px;}
.x11{left:559.500000px;}
.xa{left:613.500000px;}
.x12{left:625.110000px;}
.x15{left:639.059987px;}
.xb{left:667.050000px;}
.x13{left:686.310000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.395200pt;}
.ls10{letter-spacing:-0.348267pt;}
.ls1c{letter-spacing:-0.184000pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls24{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.lsd{letter-spacing:-0.074667pt;}
.lsa{letter-spacing:-0.045867pt;}
.ls21{letter-spacing:-0.028160pt;}
.ls1d{letter-spacing:-0.013120pt;}
.lsc{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058240pt;}
.ls11{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.154133pt;}
.lsb{letter-spacing:0.155200pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.161067pt;}
.ls22{letter-spacing:0.177067pt;}
.ls3{letter-spacing:0.200000pt;}
.ls16{letter-spacing:0.244800pt;}
.ls25{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:4.243200pt;}
.ls20{letter-spacing:42.423680pt;}
.ls19{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._8{margin-left:-3.580801pt;}
._7{margin-left:-2.511466pt;}
._2{margin-left:-0.984747pt;}
._1{width:1.073525pt;}
._6{width:2.008532pt;}
._4{width:3.420267pt;}
._5{width:4.916266pt;}
._c{width:6.252801pt;}
._9{width:7.321066pt;}
._e{width:8.673069pt;}
._a{width:9.725866pt;}
._b{width:10.635736pt;}
._3{width:12.886090pt;}
._0{width:14.017056pt;}
._d{width:14.923871pt;}
._f{width:16.591617pt;}
._13{width:17.676029pt;}
._14{width:22.551680pt;}
._15{width:73.640320pt;}
._11{width:102.893120pt;}
._12{width:103.919680pt;}
._10{width:343.779520pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:6.960000pt;}
.y58{bottom:7.040000pt;}
.y74{bottom:16.320000pt;}
.y7c{bottom:22.640000pt;}
.y7f{bottom:23.600000pt;}
.y82{bottom:23.680000pt;}
.y84{bottom:26.640000pt;}
.y5a{bottom:31.280000pt;}
.y73{bottom:35.920000pt;}
.y91{bottom:48.560000pt;}
.y62{bottom:55.520000pt;}
.y5e{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7a{bottom:95.546667pt;}
.y9b{bottom:98.986667pt;}
.yea{bottom:111.226667pt;}
.y72{bottom:114.346667pt;}
.y9a{bottom:114.586667pt;}
.yc8{bottom:124.106667pt;}
.ye9{bottom:126.826667pt;}
.y99{bottom:130.266667pt;}
.y76{bottom:138.586667pt;}
.yc7{bottom:139.786667pt;}
.y27{bottom:143.626667pt;}
.y98{bottom:145.866667pt;}
.ye8{bottom:150.506667pt;}
.y6b{bottom:152.800000pt;}
.yc6{bottom:155.386667pt;}
.y54{bottom:157.866667pt;}
.y26{bottom:159.226667pt;}
.y75{bottom:162.906667pt;}
.ye7{bottom:166.106667pt;}
.yc5{bottom:170.986667pt;}
.y25{bottom:174.826667pt;}
.y97{bottom:177.546667pt;}
.yc4{bottom:186.666667pt;}
.y6a{bottom:187.226667pt;}
.y53{bottom:189.546667pt;}
.ye6{bottom:189.706667pt;}
.y24{bottom:190.506667pt;}
.yc3{bottom:202.266667pt;}
.y23{bottom:206.106667pt;}
.y96{bottom:206.186667pt;}
.y71{bottom:211.546667pt;}
.ye5{bottom:213.386667pt;}
.y52{bottom:213.466667pt;}
.yc2{bottom:217.946667pt;}
.y22{bottom:221.786667pt;}
.ye4{bottom:228.986667pt;}
.yc1{bottom:233.546667pt;}
.y70{bottom:235.786667pt;}
.y21{bottom:237.386667pt;}
.yc0{bottom:249.146667pt;}
.ye3{bottom:252.666667pt;}
.y20{bottom:252.986667pt;}
.y51{bottom:256.346667pt;}
.y110{bottom:259.946667pt;}
.y6f{bottom:260.106667pt;}
.ybf{bottom:264.826667pt;}
.ye2{bottom:268.266667pt;}
.y1f{bottom:268.666667pt;}
.y50{bottom:271.946667pt;}
.y10f{bottom:275.546667pt;}
.ybe{bottom:280.426667pt;}
.y1e{bottom:284.266667pt;}
.y6e{bottom:284.426667pt;}
.y4f{bottom:287.626667pt;}
.y10e{bottom:291.146667pt;}
.ye1{bottom:291.866667pt;}
.y1d{bottom:299.946667pt;}
.ye0{bottom:307.546667pt;}
.y6d{bottom:308.666667pt;}
.ybd{bottom:312.106667pt;}
.y10d{bottom:314.826667pt;}
.y1c{bottom:315.546667pt;}
.y4e{bottom:319.226667pt;}
.ydf{bottom:323.146667pt;}
.ybc{bottom:327.706667pt;}
.y10c{bottom:330.426667pt;}
.y6c{bottom:332.986667pt;}
.ybb{bottom:343.306667pt;}
.y10b{bottom:346.106667pt;}
.yde{bottom:346.746667pt;}
.y1b{bottom:347.146667pt;}
.y4d{bottom:350.906667pt;}
.y69{bottom:357.306667pt;}
.yba{bottom:358.986667pt;}
.ydd{bottom:362.426667pt;}
.y1a{bottom:362.826667pt;}
.y4c{bottom:366.506667pt;}
.y10a{bottom:369.706667pt;}
.yb9{bottom:374.586667pt;}
.y19{bottom:378.426667pt;}
.y4b{bottom:382.106667pt;}
.y109{bottom:385.306667pt;}
.ydc{bottom:386.026667pt;}
.y18{bottom:394.026667pt;}
.y4a{bottom:397.786667pt;}
.yb8{bottom:398.186667pt;}
.y68{bottom:400.586667pt;}
.y108{bottom:400.986667pt;}
.ydb{bottom:401.706667pt;}
.y17{bottom:409.706667pt;}
.y49{bottom:421.413333pt;}
.y107{bottom:424.613333pt;}
.y16{bottom:425.333333pt;}
.yb7{bottom:429.893333pt;}
.y67{bottom:432.213333pt;}
.yda{bottom:440.933333pt;}
.y15{bottom:441.013333pt;}
.yb6{bottom:445.493333pt;}
.y66{bottom:447.893333pt;}
.y106{bottom:448.293333pt;}
.y48{bottom:453.093333pt;}
.y14{bottom:456.613333pt;}
.yb5{bottom:461.173333pt;}
.y65{bottom:463.493333pt;}
.y105{bottom:463.893333pt;}
.yd9{bottom:464.613333pt;}
.y47{bottom:468.693333pt;}
.yb4{bottom:476.773333pt;}
.yd8{bottom:480.213333pt;}
.y13{bottom:480.533333pt;}
.y46{bottom:484.293333pt;}
.y104{bottom:487.493333pt;}
.y61{bottom:492.853333pt;}
.yb3{bottom:493.173333pt;}
.y45{bottom:499.973333pt;}
.y103{bottom:503.173333pt;}
.yd7{bottom:503.893333pt;}
.yb2{bottom:508.773333pt;}
.y64{bottom:517.093333pt;}
.y12{bottom:523.733333pt;}
.yb1{bottom:524.453333pt;}
.y102{bottom:526.773333pt;}
.yd6{bottom:527.493333pt;}
.y44{bottom:531.573333pt;}
.yb0{bottom:540.053333pt;}
.y63{bottom:541.413333pt;}
.yd5{bottom:543.093333pt;}
.y43{bottom:547.253333pt;}
.y101{bottom:550.453333pt;}
.yaf{bottom:555.653333pt;}
.y11{bottom:556.613333pt;}
.y42{bottom:562.853333pt;}
.y5d{bottom:565.733333pt;}
.y100{bottom:566.053333pt;}
.yd4{bottom:566.773333pt;}
.y95{bottom:569.173333pt;}
.yae{bottom:571.333333pt;}
.y10{bottom:572.293333pt;}
.y41{bottom:578.453333pt;}
.yd3{bottom:582.373333pt;}
.yad{bottom:586.933333pt;}
.yf{bottom:587.893333pt;}
.yff{bottom:589.653333pt;}
.y60{bottom:589.973333pt;}
.y40{bottom:594.133333pt;}
.y94{bottom:598.453333pt;}
.ye{bottom:603.573333pt;}
.yfe{bottom:605.333333pt;}
.yd2{bottom:606.293333pt;}
.y5f{bottom:614.293333pt;}
.y3f{bottom:617.733333pt;}
.yd{bottom:619.173333pt;}
.yac{bottom:619.333333pt;}
.y90{bottom:622.773333pt;}
.yfd{bottom:628.933333pt;}
.yc{bottom:634.773333pt;}
.yab{bottom:634.933333pt;}
.y59{bottom:638.613333pt;}
.yfc{bottom:644.613333pt;}
.y93{bottom:647.093333pt;}
.yd1{bottom:649.253333pt;}
.y3e{bottom:649.413333pt;}
.yaa{bottom:650.613333pt;}
.yb{bottom:658.773333pt;}
.yfb{bottom:660.213333pt;}
.y5b{bottom:662.933333pt;}
.yd0{bottom:664.853333pt;}
.y3d{bottom:665.013333pt;}
.ya9{bottom:666.213333pt;}
.y92{bottom:671.333333pt;}
.y3c{bottom:680.613333pt;}
.ya8{bottom:681.813333pt;}
.yfa{bottom:683.813333pt;}
.y57{bottom:687.173333pt;}
.ycf{bottom:688.773333pt;}
.y89{bottom:695.653333pt;}
.y3b{bottom:696.293333pt;}
.yf9{bottom:699.493333pt;}
.ya{bottom:700.293333pt;}
.ya7{bottom:710.773333pt;}
.y8f{bottom:719.973333pt;}
.yce{bottom:721.653333pt;}
.yf8{bottom:723.093333pt;}
.ya6{bottom:726.453333pt;}
.y3a{bottom:727.893333pt;}
.y56{bottom:730.453333pt;}
.y9{bottom:731.893333pt;}
.yf7{bottom:738.693333pt;}
.ya5{bottom:742.053333pt;}
.y39{bottom:743.573333pt;}
.y8e{bottom:744.293333pt;}
.ycd{bottom:745.573333pt;}
.ya4{bottom:757.653333pt;}
.y38{bottom:759.173333pt;}
.y55{bottom:762.133333pt;}
.yf6{bottom:762.373333pt;}
.y8{bottom:763.733333pt;}
.y8d{bottom:768.533333pt;}
.y37{bottom:774.773333pt;}
.yf5{bottom:777.973333pt;}
.ycc{bottom:778.773333pt;}
.y80{bottom:783.413333pt;}
.ya3{bottom:790.053333pt;}
.y36{bottom:790.453333pt;}
.y8c{bottom:792.853333pt;}
.y7{bottom:799.093333pt;}
.yf4{bottom:801.653333pt;}
.ya2{bottom:805.733333pt;}
.y35{bottom:806.053333pt;}
.y81{bottom:807.733333pt;}
.y6{bottom:815.093333pt;}
.y8b{bottom:817.173333pt;}
.yf3{bottom:817.253333pt;}
.ya1{bottom:821.333333pt;}
.y34{bottom:821.733333pt;}
.y79{bottom:832.053333pt;}
.ya0{bottom:836.933333pt;}
.y33{bottom:837.333333pt;}
.yf2{bottom:840.853333pt;}
.y8a{bottom:841.493333pt;}
.y5{bottom:843.813333pt;}
.y9f{bottom:852.613333pt;}
.ycb{bottom:852.933333pt;}
.y7e{bottom:856.293333pt;}
.yf1{bottom:856.533333pt;}
.y32{bottom:861.253333pt;}
.y88{bottom:865.733333pt;}
.y9e{bottom:868.213333pt;}
.yca{bottom:868.613333pt;}
.y4{bottom:877.893333pt;}
.yf0{bottom:880.133333pt;}
.y7d{bottom:880.613333pt;}
.yc9{bottom:884.213333pt;}
.y9d{bottom:891.813333pt;}
.yef{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:904.160000pt;}
.y7b{bottom:904.960000pt;}
.y87{bottom:909.040000pt;}
.yee{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y9c{bottom:923.760000pt;}
.yed{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y86{bottom:940.720000pt;}
.y78{bottom:944.880000pt;}
.y2e{bottom:951.040000pt;}
.yec{bottom:958.720000pt;}
.y85{bottom:962.000000pt;}
.y2d{bottom:966.720000pt;}
.y77{bottom:969.200000pt;}
.yeb{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y83{bottom:986.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.ha{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:39.280000pt;}
.h7{height:45.246562pt;}
.hb{height:47.920000pt;}
.h5{height:49.581562pt;}
.h13{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:72.160000pt;}
.hd{height:72.240000pt;}
.h10{height:112.186667pt;}
.hf{height:169.440000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:40.880000pt;}
.w8{width:46.960000pt;}
.w12{width:47.600000pt;}
.w7{width:50.800000pt;}
.w11{width:53.680000pt;}
.w10{width:57.600000pt;}
.wa{width:77.760000pt;}
.w3{width:90.720000pt;}
.wc{width:90.986667pt;}
.w13{width:97.306667pt;}
.w5{width:173.600000pt;}
.wd{width:187.920000pt;}
.w4{width:195.146667pt;}
.wb{width:254.506667pt;}
.w14{width:262.426667pt;}
.w6{width:332.906667pt;}
.wf{width:360.373333pt;}
.we{width:391.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.x10{left:6.880000pt;}
.x1{left:60.480000pt;}
.x17{left:84.479988pt;}
.x19{left:98.879988pt;}
.x18{left:108.479988pt;}
.xf{left:136.320000pt;}
.xd{left:152.746667pt;}
.x8{left:160.266667pt;}
.x4{left:166.586667pt;}
.x2{left:180.266655pt;}
.x14{left:234.266667pt;}
.xc{left:238.666667pt;}
.x6{left:258.026667pt;}
.x16{left:299.386655pt;}
.xe{left:341.386667pt;}
.x7{left:453.813333pt;}
.x9{left:493.893333pt;}
.x11{left:497.333333pt;}
.xa{left:545.333333pt;}
.x12{left:555.653333pt;}
.x15{left:568.053322pt;}
.xb{left:592.933333pt;}
.x13{left:610.053333pt;}
.x3{left:704.053322pt;}
}




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