
    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_97ea3c1eea38fec53f59c3ed.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_856b57ed12637f987db63c69.woff')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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_21b884939b0a7ef760b868b3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_c93543d8e52bdbd19e259e17.woff')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_bc6fa7a9edfdda6086fcc247.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_4b20e4cfe3c45e181d33c7c2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_63ea1772bbe8952b9953bc11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_036680b1cfaf429d297c6eb7.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0d02561be7c9bd1d1cc34d53.woff')format("woff");}.ffb{font-family:ffb;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-1.980000px;}
.ls18{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.924000px;}
.ls6{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.208200px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.029520px;}
.ls9{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.749520px;}
.ls15{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.620000px;}
.lsa{letter-spacing:2.106720px;}
.ls1a{letter-spacing:3.060000px;}
.lse{letter-spacing:4.500000px;}
.ls16{letter-spacing:5.220000px;}
.ls17{letter-spacing:5.940000px;}
.ls14{letter-spacing:6.660000px;}
.ls1c{letter-spacing:8.100000px;}
.ls12{letter-spacing:9.540000px;}
.ls22{letter-spacing:11.466720px;}
.ls1b{letter-spacing:19.821600px;}
.ls1e{letter-spacing:20.340000px;}
.ls20{letter-spacing:41.706720px;}
.ls1d{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(22,198,12),0 0.015em rgb(22,198,12),0.015em 0 rgb(22,198,12),0 -0.015em  rgb(22,198,12);}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(22,198,12);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsc{word-spacing:-13.680000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1445.990040px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-579.228480px;}
._1a{margin-left:-82.050480px;}
._23{margin-left:-5.228160px;}
._11{margin-left:-3.378960px;}
._19{margin-left:-2.327040px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._d{width:3.047760px;}
._b{width:4.456800px;}
._a{width:6.184080px;}
._c{width:7.828560px;}
._e{width:9.083520px;}
._12{width:10.519920px;}
._10{width:12.182400px;}
._f{width:13.505760px;}
._16{width:16.035840px;}
._18{width:17.194800px;}
._17{width:18.986880px;}
._15{width:20.149200px;}
._14{width:21.763920px;}
._13{width:23.306400px;}
._1c{width:25.100880px;}
._1b{width:26.593200px;}
._1d{width:27.670320px;}
._22{width:29.371440px;}
._8{width:31.140000px;}
._1e{width:37.030320px;}
._20{width:47.632800px;}
._1f{width:48.704400px;}
._7{width:52.158720px;}
._21{width:65.317680px;}
._9{width:201.036000px;}
.fc6{color:rgb(212,140,0);}
.fc3{color:rgb(22,198,12);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(51,51,51);}
.fc5{color:rgb(255,200,61);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs6{font-size:7.200000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:5.760000px;}
.y108{bottom:10.800000px;}
.yd7{bottom:13.320000px;}
.yd4{bottom:23.220000px;}
.yf1{bottom:25.740000px;}
.y107{bottom:30.600000px;}
.yd6{bottom:33.120000px;}
.y104{bottom:34.740000px;}
.ye7{bottom:41.265000px;}
.yd3{bottom:43.020000px;}
.yf0{bottom:45.585000px;}
.y106{bottom:50.400000px;}
.yd5{bottom:52.920000px;}
.y6{bottom:56.700000px;}
.ye6{bottom:61.065000px;}
.yef{bottom:65.385000px;}
.y105{bottom:70.200000px;}
.ye5{bottom:80.865000px;}
.yee{bottom:85.185000px;}
.y86{bottom:88.020000px;}
.y34{bottom:90.000000px;}
.yd0{bottom:93.060000px;}
.y102{bottom:95.400000px;}
.ye4{bottom:100.665000px;}
.yed{bottom:104.985000px;}
.y33{bottom:109.980000px;}
.y85{bottom:110.160000px;}
.ycf{bottom:112.860000px;}
.ya6{bottom:114.120000px;}
.y6a{bottom:114.660000px;}
.y101{bottom:115.200000px;}
.y103{bottom:120.240000px;}
.ye3{bottom:120.645000px;}
.yec{bottom:124.965000px;}
.y32{bottom:129.780000px;}
.y84{bottom:130.860000px;}
.yce{bottom:132.660000px;}
.ya5{bottom:133.920000px;}
.y69{bottom:134.460000px;}
.y100{bottom:135.000000px;}
.ye2{bottom:141.525000px;}
.yeb{bottom:144.765000px;}
.y31{bottom:149.580000px;}
.ycd{bottom:152.460000px;}
.y83{bottom:153.720000px;}
.y68{bottom:154.260000px;}
.yff{bottom:154.980000px;}
.ye1{bottom:162.405000px;}
.yea{bottom:164.565000px;}
.y30{bottom:169.380000px;}
.ycc{bottom:172.260000px;}
.ya4{bottom:173.700000px;}
.y67{bottom:174.240000px;}
.yfe{bottom:174.780000px;}
.y82{bottom:175.860000px;}
.ye0{bottom:183.285000px;}
.ye9{bottom:184.365000px;}
.y2f{bottom:189.180000px;}
.ycb{bottom:192.240000px;}
.ya3{bottom:193.500000px;}
.y66{bottom:194.040000px;}
.yfd{bottom:194.580000px;}
.y81{bottom:196.560000px;}
.ydf{bottom:203.085000px;}
.ye8{bottom:204.165000px;}
.y2e{bottom:209.160000px;}
.yca{bottom:212.070000px;}
.ya2{bottom:213.330000px;}
.y65{bottom:213.870000px;}
.yfc{bottom:214.410000px;}
.y80{bottom:219.630000px;}
.yde{bottom:224.145000px;}
.y2d{bottom:228.990000px;}
.yc9{bottom:231.870000px;}
.ya1{bottom:233.130000px;}
.y64{bottom:233.670000px;}
.yfb{bottom:234.210000px;}
.y7f{bottom:241.590000px;}
.ydd{bottom:243.945000px;}
.y2c{bottom:248.790000px;}
.yc8{bottom:251.670000px;}
.ya0{bottom:252.930000px;}
.y63{bottom:253.470000px;}
.yfa{bottom:254.190000px;}
.y7e{bottom:262.290000px;}
.ydc{bottom:263.745000px;}
.y2b{bottom:268.590000px;}
.yc7{bottom:271.470000px;}
.y9f{bottom:272.910000px;}
.y62{bottom:273.450000px;}
.yf9{bottom:273.990000px;}
.ydb{bottom:283.575000px;}
.y7d{bottom:284.250000px;}
.y2a{bottom:288.390000px;}
.yc6{bottom:291.450000px;}
.y9e{bottom:292.710000px;}
.y61{bottom:293.250000px;}
.yf8{bottom:293.790000px;}
.y7c{bottom:300.990000px;}
.yda{bottom:303.375000px;}
.y29{bottom:308.370000px;}
.yc5{bottom:311.250000px;}
.y9d{bottom:312.510000px;}
.y60{bottom:313.050000px;}
.yf7{bottom:313.590000px;}
.yd9{bottom:323.355000px;}
.y28{bottom:328.170000px;}
.yc4{bottom:331.050000px;}
.y5f{bottom:332.850000px;}
.y9c{bottom:333.210000px;}
.yf6{bottom:333.390000px;}
.y27{bottom:347.970000px;}
.yc3{bottom:350.850000px;}
.y5e{bottom:352.650000px;}
.yf5{bottom:353.370000px;}
.y9b{bottom:355.350000px;}
.y26{bottom:367.770000px;}
.yc2{bottom:370.650000px;}
.y5d{bottom:372.630000px;}
.yf4{bottom:373.170000px;}
.y9a{bottom:376.050000px;}
.y25{bottom:387.570000px;}
.yc1{bottom:390.630000px;}
.yf3{bottom:392.970000px;}
.y99{bottom:399.090000px;}
.y5c{bottom:401.430000px;}
.y24{bottom:407.550000px;}
.yd8{bottom:407.730000px;}
.yc0{bottom:411.510000px;}
.y98{bottom:421.050000px;}
.y5b{bottom:421.230000px;}
.y23{bottom:427.350000px;}
.ybf{bottom:431.310000px;}
.y5a{bottom:441.030000px;}
.y97{bottom:441.750000px;}
.y22{bottom:447.195000px;}
.ybe{bottom:452.235000px;}
.y59{bottom:460.875000px;}
.y96{bottom:464.835000px;}
.y21{bottom:466.995000px;}
.ybd{bottom:472.035000px;}
.y58{bottom:480.855000px;}
.y20{bottom:486.795000px;}
.y95{bottom:487.695000px;}
.ybc{bottom:492.015000px;}
.y57{bottom:500.655000px;}
.y1f{bottom:506.775000px;}
.y94{bottom:509.655000px;}
.ybb{bottom:511.815000px;}
.y56{bottom:520.455000px;}
.y1e{bottom:526.575000px;}
.y93{bottom:530.535000px;}
.yba{bottom:531.615000px;}
.y55{bottom:540.255000px;}
.y1d{bottom:546.375000px;}
.yb9{bottom:551.415000px;}
.y92{bottom:553.395000px;}
.y54{bottom:560.055000px;}
.y1c{bottom:566.175000px;}
.yb8{bottom:571.215000px;}
.y91{bottom:576.435000px;}
.y53{bottom:580.035000px;}
.y1b{bottom:585.975000px;}
.yb7{bottom:591.195000px;}
.y90{bottom:598.395000px;}
.y52{bottom:599.835000px;}
.y1a{bottom:605.955000px;}
.yb6{bottom:610.995000px;}
.y8f{bottom:619.095000px;}
.y51{bottom:619.635000px;}
.y7b{bottom:621.795000px;}
.y19{bottom:625.755000px;}
.yb5{bottom:630.795000px;}
.y8e{bottom:637.995000px;}
.y50{bottom:639.435000px;}
.y7a{bottom:641.595000px;}
.y18{bottom:645.555000px;}
.yb4{bottom:650.595000px;}
.y4f{bottom:659.235000px;}
.y79{bottom:661.395000px;}
.y17{bottom:665.355000px;}
.yb3{bottom:670.395000px;}
.y4e{bottom:679.215000px;}
.y78{bottom:681.405000px;}
.y16{bottom:687.525000px;}
.yb2{bottom:690.405000px;}
.y4d{bottom:699.045000px;}
.y77{bottom:701.205000px;}
.yb1{bottom:710.205000px;}
.y15{bottom:716.325000px;}
.y4c{bottom:718.845000px;}
.y76{bottom:721.005000px;}
.yb0{bottom:730.005000px;}
.y14{bottom:736.125000px;}
.y4b{bottom:738.645000px;}
.y75{bottom:740.805000px;}
.yd2{bottom:745.845000px;}
.yaf{bottom:749.805000px;}
.y13{bottom:755.925000px;}
.y4a{bottom:758.445000px;}
.y74{bottom:760.605000px;}
.yae{bottom:769.605000px;}
.y12{bottom:775.905000px;}
.y73{bottom:780.585000px;}
.y49{bottom:787.425000px;}
.yad{bottom:789.585000px;}
.y11{bottom:795.705000px;}
.y72{bottom:800.385000px;}
.y48{bottom:807.225000px;}
.yac{bottom:809.385000px;}
.y10{bottom:815.505000px;}
.y71{bottom:820.185000px;}
.y47{bottom:827.025000px;}
.yab{bottom:829.185000px;}
.yf{bottom:835.305000px;}
.y70{bottom:839.985000px;}
.y46{bottom:846.825000px;}
.yaa{bottom:848.985000px;}
.ye{bottom:855.105000px;}
.y6f{bottom:859.785000px;}
.y45{bottom:866.625000px;}
.ya9{bottom:868.785000px;}
.yd{bottom:874.905000px;}
.y6e{bottom:879.765000px;}
.y44{bottom:886.605000px;}
.ya8{bottom:888.765000px;}
.yc{bottom:897.045000px;}
.y6d{bottom:899.565000px;}
.y43{bottom:906.405000px;}
.ya7{bottom:908.565000px;}
.yb{bottom:922.290000px;}
.y42{bottom:927.330000px;}
.y6c{bottom:928.410000px;}
.ya{bottom:937.410000px;}
.y41{bottom:947.130000px;}
.y6b{bottom:948.210000px;}
.y9{bottom:958.650000px;}
.yd1{bottom:966.930000px;}
.y40{bottom:968.010000px;}
.y8{bottom:982.050000px;}
.y3f{bottom:987.990000px;}
.y3e{bottom:1007.790000px;}
.y7{bottom:1013.910000px;}
.y8d{bottom:1015.170000px;}
.y3d{bottom:1027.590000px;}
.y8c{bottom:1035.870000px;}
.y3c{bottom:1047.390000px;}
.y5{bottom:1052.250000px;}
.y8b{bottom:1058.010000px;}
.y3b{bottom:1067.190000px;}
.y8a{bottom:1078.710000px;}
.y4{bottom:1083.030000px;}
.y3a{bottom:1087.170000px;}
.y89{bottom:1101.750000px;}
.y39{bottom:1106.970000px;}
.y3{bottom:1113.810000px;}
.y88{bottom:1123.710000px;}
.y38{bottom:1126.770000px;}
.y87{bottom:1144.410000px;}
.y2{bottom:1144.770000px;}
.y37{bottom:1146.570000px;}
.y36{bottom:1174.140000px;}
.y1{bottom:1178.640000px;}
.y35{bottom:1194.300000px;}
.h10{height:2.460938px;}
.h7{height:33.222656px;}
.h5{height:42.164648px;}
.hb{height:43.156758px;}
.h3{height:46.736719px;}
.h9{height:51.064453px;}
.h6{height:53.224453px;}
.h8{height:53.252930px;}
.hc{height:54.536836px;}
.h4{height:56.601562px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.hd{height:74.700000px;}
.hf{height:84.240000px;}
.he{height:337.395000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:210.855000px;}
.w5{width:211.890000px;}
.w4{width:233.355000px;}
.w3{width:264.630000px;}
.w7{width:580.965000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.xb{left:-19.476000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.xc{left:10.080000px;}
.xa{left:13.392000px;}
.x1{left:54.179987px;}
.x5{left:64.619987px;}
.xd{left:81.035987px;}
.x6{left:90.756000px;}
.x2{left:96.515987px;}
.xe{left:108.035987px;}
.xf{left:191.370000px;}
.x10{left:264.855000px;}
.x8{left:356.115000px;}
.x9{left:590.190000px;}
.x3{left:635.189987px;}
.x4{left:776.879987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-1.760000pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.821333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.026240pt;}
.ls9{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.666240pt;}
.ls15{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.440000pt;}
.lsa{letter-spacing:1.872640pt;}
.ls1a{letter-spacing:2.720000pt;}
.lse{letter-spacing:4.000000pt;}
.ls16{letter-spacing:4.640000pt;}
.ls17{letter-spacing:5.280000pt;}
.ls14{letter-spacing:5.920000pt;}
.ls1c{letter-spacing:7.200000pt;}
.ls12{letter-spacing:8.480000pt;}
.ls22{letter-spacing:10.192640pt;}
.ls1b{letter-spacing:17.619200pt;}
.ls1e{letter-spacing:18.080000pt;}
.ls20{letter-spacing:37.072640pt;}
.ls1d{letter-spacing:57.040640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.160000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1285.324480pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-514.869760pt;}
._1a{margin-left:-72.933760pt;}
._23{margin-left:-4.647253pt;}
._11{margin-left:-3.003520pt;}
._19{margin-left:-2.068480pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._d{width:2.709120pt;}
._b{width:3.961600pt;}
._a{width:5.496960pt;}
._c{width:6.958720pt;}
._e{width:8.074240pt;}
._12{width:9.351040pt;}
._10{width:10.828800pt;}
._f{width:12.005120pt;}
._16{width:14.254080pt;}
._18{width:15.284267pt;}
._17{width:16.877227pt;}
._15{width:17.910400pt;}
._14{width:19.345707pt;}
._13{width:20.716800pt;}
._1c{width:22.311893pt;}
._1b{width:23.638400pt;}
._1d{width:24.595840pt;}
._22{width:26.107947pt;}
._8{width:27.680000pt;}
._1e{width:32.915840pt;}
._20{width:42.340267pt;}
._1f{width:43.292800pt;}
._7{width:46.363307pt;}
._21{width:58.060160pt;}
._9{width:178.698667pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:6.400000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:5.120000pt;}
.y108{bottom:9.600000pt;}
.yd7{bottom:11.840000pt;}
.yd4{bottom:20.640000pt;}
.yf1{bottom:22.880000pt;}
.y107{bottom:27.200000pt;}
.yd6{bottom:29.440000pt;}
.y104{bottom:30.880000pt;}
.ye7{bottom:36.680000pt;}
.yd3{bottom:38.240000pt;}
.yf0{bottom:40.520000pt;}
.y106{bottom:44.800000pt;}
.yd5{bottom:47.040000pt;}
.y6{bottom:50.400000pt;}
.ye6{bottom:54.280000pt;}
.yef{bottom:58.120000pt;}
.y105{bottom:62.400000pt;}
.ye5{bottom:71.880000pt;}
.yee{bottom:75.720000pt;}
.y86{bottom:78.240000pt;}
.y34{bottom:80.000000pt;}
.yd0{bottom:82.720000pt;}
.y102{bottom:84.800000pt;}
.ye4{bottom:89.480000pt;}
.yed{bottom:93.320000pt;}
.y33{bottom:97.760000pt;}
.y85{bottom:97.920000pt;}
.ycf{bottom:100.320000pt;}
.ya6{bottom:101.440000pt;}
.y6a{bottom:101.920000pt;}
.y101{bottom:102.400000pt;}
.y103{bottom:106.880000pt;}
.ye3{bottom:107.240000pt;}
.yec{bottom:111.080000pt;}
.y32{bottom:115.360000pt;}
.y84{bottom:116.320000pt;}
.yce{bottom:117.920000pt;}
.ya5{bottom:119.040000pt;}
.y69{bottom:119.520000pt;}
.y100{bottom:120.000000pt;}
.ye2{bottom:125.800000pt;}
.yeb{bottom:128.680000pt;}
.y31{bottom:132.960000pt;}
.ycd{bottom:135.520000pt;}
.y83{bottom:136.640000pt;}
.y68{bottom:137.120000pt;}
.yff{bottom:137.760000pt;}
.ye1{bottom:144.360000pt;}
.yea{bottom:146.280000pt;}
.y30{bottom:150.560000pt;}
.ycc{bottom:153.120000pt;}
.ya4{bottom:154.400000pt;}
.y67{bottom:154.880000pt;}
.yfe{bottom:155.360000pt;}
.y82{bottom:156.320000pt;}
.ye0{bottom:162.920000pt;}
.ye9{bottom:163.880000pt;}
.y2f{bottom:168.160000pt;}
.ycb{bottom:170.880000pt;}
.ya3{bottom:172.000000pt;}
.y66{bottom:172.480000pt;}
.yfd{bottom:172.960000pt;}
.y81{bottom:174.720000pt;}
.ydf{bottom:180.520000pt;}
.ye8{bottom:181.480000pt;}
.y2e{bottom:185.920000pt;}
.yca{bottom:188.506667pt;}
.ya2{bottom:189.626667pt;}
.y65{bottom:190.106667pt;}
.yfc{bottom:190.586667pt;}
.y80{bottom:195.226667pt;}
.yde{bottom:199.240000pt;}
.y2d{bottom:203.546667pt;}
.yc9{bottom:206.106667pt;}
.ya1{bottom:207.226667pt;}
.y64{bottom:207.706667pt;}
.yfb{bottom:208.186667pt;}
.y7f{bottom:214.746667pt;}
.ydd{bottom:216.840000pt;}
.y2c{bottom:221.146667pt;}
.yc8{bottom:223.706667pt;}
.ya0{bottom:224.826667pt;}
.y63{bottom:225.306667pt;}
.yfa{bottom:225.946667pt;}
.y7e{bottom:233.146667pt;}
.ydc{bottom:234.440000pt;}
.y2b{bottom:238.746667pt;}
.yc7{bottom:241.306667pt;}
.y9f{bottom:242.586667pt;}
.y62{bottom:243.066667pt;}
.yf9{bottom:243.546667pt;}
.ydb{bottom:252.066667pt;}
.y7d{bottom:252.666667pt;}
.y2a{bottom:256.346667pt;}
.yc6{bottom:259.066667pt;}
.y9e{bottom:260.186667pt;}
.y61{bottom:260.666667pt;}
.yf8{bottom:261.146667pt;}
.y7c{bottom:267.546667pt;}
.yda{bottom:269.666667pt;}
.y29{bottom:274.106667pt;}
.yc5{bottom:276.666667pt;}
.y9d{bottom:277.786667pt;}
.y60{bottom:278.266667pt;}
.yf7{bottom:278.746667pt;}
.yd9{bottom:287.426667pt;}
.y28{bottom:291.706667pt;}
.yc4{bottom:294.266667pt;}
.y5f{bottom:295.866667pt;}
.y9c{bottom:296.186667pt;}
.yf6{bottom:296.346667pt;}
.y27{bottom:309.306667pt;}
.yc3{bottom:311.866667pt;}
.y5e{bottom:313.466667pt;}
.yf5{bottom:314.106667pt;}
.y9b{bottom:315.866667pt;}
.y26{bottom:326.906667pt;}
.yc2{bottom:329.466667pt;}
.y5d{bottom:331.226667pt;}
.yf4{bottom:331.706667pt;}
.y9a{bottom:334.266667pt;}
.y25{bottom:344.506667pt;}
.yc1{bottom:347.226667pt;}
.yf3{bottom:349.306667pt;}
.y99{bottom:354.746667pt;}
.y5c{bottom:356.826667pt;}
.y24{bottom:362.266667pt;}
.yd8{bottom:362.426667pt;}
.yc0{bottom:365.786667pt;}
.y98{bottom:374.266667pt;}
.y5b{bottom:374.426667pt;}
.y23{bottom:379.866667pt;}
.ybf{bottom:383.386667pt;}
.y5a{bottom:392.026667pt;}
.y97{bottom:392.666667pt;}
.y22{bottom:397.506667pt;}
.ybe{bottom:401.986667pt;}
.y59{bottom:409.666667pt;}
.y96{bottom:413.186667pt;}
.y21{bottom:415.106667pt;}
.ybd{bottom:419.586667pt;}
.y58{bottom:427.426667pt;}
.y20{bottom:432.706667pt;}
.y95{bottom:433.506667pt;}
.ybc{bottom:437.346667pt;}
.y57{bottom:445.026667pt;}
.y1f{bottom:450.466667pt;}
.y94{bottom:453.026667pt;}
.ybb{bottom:454.946667pt;}
.y56{bottom:462.626667pt;}
.y1e{bottom:468.066667pt;}
.y93{bottom:471.586667pt;}
.yba{bottom:472.546667pt;}
.y55{bottom:480.226667pt;}
.y1d{bottom:485.666667pt;}
.yb9{bottom:490.146667pt;}
.y92{bottom:491.906667pt;}
.y54{bottom:497.826667pt;}
.y1c{bottom:503.266667pt;}
.yb8{bottom:507.746667pt;}
.y91{bottom:512.386667pt;}
.y53{bottom:515.586667pt;}
.y1b{bottom:520.866667pt;}
.yb7{bottom:525.506667pt;}
.y90{bottom:531.906667pt;}
.y52{bottom:533.186667pt;}
.y1a{bottom:538.626667pt;}
.yb6{bottom:543.106667pt;}
.y8f{bottom:550.306667pt;}
.y51{bottom:550.786667pt;}
.y7b{bottom:552.706667pt;}
.y19{bottom:556.226667pt;}
.yb5{bottom:560.706667pt;}
.y8e{bottom:567.106667pt;}
.y50{bottom:568.386667pt;}
.y7a{bottom:570.306667pt;}
.y18{bottom:573.826667pt;}
.yb4{bottom:578.306667pt;}
.y4f{bottom:585.986667pt;}
.y79{bottom:587.906667pt;}
.y17{bottom:591.426667pt;}
.yb3{bottom:595.906667pt;}
.y4e{bottom:603.746667pt;}
.y78{bottom:605.693333pt;}
.y16{bottom:611.133333pt;}
.yb2{bottom:613.693333pt;}
.y4d{bottom:621.373333pt;}
.y77{bottom:623.293333pt;}
.yb1{bottom:631.293333pt;}
.y15{bottom:636.733333pt;}
.y4c{bottom:638.973333pt;}
.y76{bottom:640.893333pt;}
.yb0{bottom:648.893333pt;}
.y14{bottom:654.333333pt;}
.y4b{bottom:656.573333pt;}
.y75{bottom:658.493333pt;}
.yd2{bottom:662.973333pt;}
.yaf{bottom:666.493333pt;}
.y13{bottom:671.933333pt;}
.y4a{bottom:674.173333pt;}
.y74{bottom:676.093333pt;}
.yae{bottom:684.093333pt;}
.y12{bottom:689.693333pt;}
.y73{bottom:693.853333pt;}
.y49{bottom:699.933333pt;}
.yad{bottom:701.853333pt;}
.y11{bottom:707.293333pt;}
.y72{bottom:711.453333pt;}
.y48{bottom:717.533333pt;}
.yac{bottom:719.453333pt;}
.y10{bottom:724.893333pt;}
.y71{bottom:729.053333pt;}
.y47{bottom:735.133333pt;}
.yab{bottom:737.053333pt;}
.yf{bottom:742.493333pt;}
.y70{bottom:746.653333pt;}
.y46{bottom:752.733333pt;}
.yaa{bottom:754.653333pt;}
.ye{bottom:760.093333pt;}
.y6f{bottom:764.253333pt;}
.y45{bottom:770.333333pt;}
.ya9{bottom:772.253333pt;}
.yd{bottom:777.693333pt;}
.y6e{bottom:782.013333pt;}
.y44{bottom:788.093333pt;}
.ya8{bottom:790.013333pt;}
.yc{bottom:797.373333pt;}
.y6d{bottom:799.613333pt;}
.y43{bottom:805.693333pt;}
.ya7{bottom:807.613333pt;}
.yb{bottom:819.813333pt;}
.y42{bottom:824.293333pt;}
.y6c{bottom:825.253333pt;}
.ya{bottom:833.253333pt;}
.y41{bottom:841.893333pt;}
.y6b{bottom:842.853333pt;}
.y9{bottom:852.133333pt;}
.yd1{bottom:859.493333pt;}
.y40{bottom:860.453333pt;}
.y8{bottom:872.933333pt;}
.y3f{bottom:878.213333pt;}
.y3e{bottom:895.813333pt;}
.y7{bottom:901.253333pt;}
.y8d{bottom:902.373333pt;}
.y3d{bottom:913.413333pt;}
.y8c{bottom:920.773333pt;}
.y3c{bottom:931.013333pt;}
.y5{bottom:935.333333pt;}
.y8b{bottom:940.453333pt;}
.y3b{bottom:948.613333pt;}
.y8a{bottom:958.853333pt;}
.y4{bottom:962.693333pt;}
.y3a{bottom:966.373333pt;}
.y89{bottom:979.333333pt;}
.y39{bottom:983.973333pt;}
.y3{bottom:990.053333pt;}
.y88{bottom:998.853333pt;}
.y38{bottom:1001.573333pt;}
.y87{bottom:1017.253333pt;}
.y2{bottom:1017.573333pt;}
.y37{bottom:1019.173333pt;}
.y36{bottom:1043.680000pt;}
.y1{bottom:1047.680000pt;}
.y35{bottom:1061.600000pt;}
.h10{height:2.187500pt;}
.h7{height:29.531250pt;}
.h5{height:37.479688pt;}
.hb{height:38.361562pt;}
.h3{height:41.543750pt;}
.h9{height:45.390625pt;}
.h6{height:47.310625pt;}
.h8{height:47.335938pt;}
.hc{height:48.477187pt;}
.h4{height:50.312500pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.hd{height:66.400000pt;}
.hf{height:74.880000pt;}
.he{height:299.906667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:187.426667pt;}
.w5{width:188.346667pt;}
.w4{width:207.426667pt;}
.w3{width:235.226667pt;}
.w7{width:516.413333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.xb{left:-17.312000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.xc{left:8.960000pt;}
.xa{left:11.904000pt;}
.x1{left:48.159988pt;}
.x5{left:57.439988pt;}
.xd{left:72.031988pt;}
.x6{left:80.672000pt;}
.x2{left:85.791988pt;}
.xe{left:96.031988pt;}
.xf{left:170.106667pt;}
.x10{left:235.426667pt;}
.x8{left:316.546667pt;}
.x9{left:524.613333pt;}
.x3{left:564.613322pt;}
.x4{left:690.559988pt;}
}




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