
    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_c688a5f410c2a8638fc6b940.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_9f99aaf9013d4f0ac959da30.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_13b26f80685a0a6647cc13cc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_ed9a9d379c1b5d6fd2de3e6f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_db75d96c0f66787c8bcb3ad8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_cfac1c55bd88a7787a836eef.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_abc51be9e0bc218414f14bc6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_d74ce221a996cb452b48ee61.woff')format("woff");}.ff8{font-family:ff8;line-height:0.935000;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_f1944c74e910831bfa30f409.woff')format("woff");}.ff9{font-family:ff9;line-height:0.920000;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);}
.v2{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.778200px;}
.ls4{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.209880px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000120px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-39.998640px;}
.wsb{word-spacing:-36.696000px;}
.wsc{word-spacing:-23.352000px;}
.ws2{word-spacing:-18.181200px;}
.ws7{word-spacing:-16.680000px;}
.wsd{word-spacing:-15.012000px;}
.ws1{word-spacing:-10.599640px;}
.ws6{word-spacing:-9.724440px;}
.ws8{word-spacing:-9.648000px;}
.ws3{word-spacing:-5.834664px;}
.ws9{word-spacing:-5.624784px;}
.ws5{word-spacing:-1.242600px;}
.wse{word-spacing:-0.378000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.360000px;}
._4{margin-left:-39.998640px;}
._3{margin-left:-16.938600px;}
._9{margin-left:-9.420000px;}
._7{margin-left:-7.200000px;}
._8{margin-left:-6.120000px;}
._2{margin-left:-4.839600px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.620000px;}
._5{width:1.620000px;}
._6{width:103.380000px;}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(157,23,28);}
.fc1{color:rgb(38,69,143);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:20.988000px;}
.fsc{font-size:34.980000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.128200px;}
.fse{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs5{font-size:65.400000px;}
.fs7{font-size:66.000000px;}
.fsd{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fsa{font-size:132.000000px;}
.fs4{font-size:143.880000px;}
.fs1{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y105{bottom:59.660850px;}
.y157{bottom:64.372200px;}
.y45{bottom:68.226750px;}
.y135{bottom:68.872200px;}
.y104{bottom:71.657850px;}
.y44{bottom:80.226750px;}
.y156{bottom:82.372200px;}
.y103{bottom:86.651850px;}
.y134{bottom:86.872200px;}
.y43{bottom:92.226750px;}
.y102{bottom:98.651850px;}
.y155{bottom:100.372200px;}
.y42{bottom:104.226750px;}
.y133{bottom:104.872200px;}
.y101{bottom:110.651850px;}
.ya1{bottom:110.793600px;}
.y41{bottom:116.226750px;}
.y154{bottom:118.372200px;}
.ya0{bottom:119.799600px;}
.y100{bottom:122.651850px;}
.y132{bottom:122.881200px;}
.y40{bottom:128.226750px;}
.y9f{bottom:134.793600px;}
.y153{bottom:136.372200px;}
.y3f{bottom:140.226750px;}
.y9e{bottom:143.799600px;}
.y131{bottom:145.372200px;}
.y9d{bottom:158.793600px;}
.yd0{bottom:172.372200px;}
.yff{bottom:178.597200px;}
.y130{bottom:185.872200px;}
.ycf{bottom:190.372200px;}
.y21{bottom:191.094900px;}
.yfe{bottom:196.597200px;}
.y12f{bottom:203.872200px;}
.yce{bottom:208.372200px;}
.y20{bottom:210.714900px;}
.y70{bottom:211.836000px;}
.yfd{bottom:214.597200px;}
.y12e{bottom:221.872200px;}
.y9c{bottom:222.918450px;}
.ycd{bottom:226.372200px;}
.y6f{bottom:229.836000px;}
.y1f{bottom:230.334900px;}
.yfc{bottom:232.597200px;}
.y12d{bottom:239.872200px;}
.y9b{bottom:240.918450px;}
.y152{bottom:241.391700px;}
.ycc{bottom:244.372200px;}
.y6e{bottom:247.836000px;}
.y1e{bottom:249.954900px;}
.yfb{bottom:250.597200px;}
.y12c{bottom:257.872200px;}
.y9a{bottom:258.918450px;}
.y151{bottom:259.387200px;}
.ycb{bottom:262.372200px;}
.y6d{bottom:265.836000px;}
.yfa{bottom:268.597200px;}
.y1d{bottom:269.574900px;}
.y3a{bottom:270.603450px;}
.y150{bottom:274.385700px;}
.y12b{bottom:275.872200px;}
.y99{bottom:276.918450px;}
.yca{bottom:280.372200px;}
.y6c{bottom:283.836000px;}
.yf9{bottom:286.597200px;}
.y1c{bottom:289.194900px;}
.y14f{bottom:289.384200px;}
.y39{bottom:290.223450px;}
.y12a{bottom:293.872200px;}
.y98{bottom:294.918450px;}
.yc9{bottom:298.372200px;}
.y6b{bottom:301.836000px;}
.yf8{bottom:304.597200px;}
.y1b{bottom:308.814900px;}
.y38{bottom:309.843450px;}
.y129{bottom:311.872200px;}
.y97{bottom:312.918450px;}
.yc8{bottom:316.372200px;}
.y14e{bottom:319.381200px;}
.y6a{bottom:319.836000px;}
.yf7{bottom:322.597200px;}
.y1a{bottom:328.434900px;}
.y37{bottom:329.463450px;}
.y128{bottom:329.872200px;}
.y96{bottom:330.918450px;}
.yc7{bottom:334.372200px;}
.y14d{bottom:334.379700px;}
.y69{bottom:337.836000px;}
.y127{bottom:347.872200px;}
.y19{bottom:348.054900px;}
.y95{bottom:348.918450px;}
.y36{bottom:349.083450px;}
.yc6{bottom:352.372200px;}
.y68{bottom:355.836000px;}
.yf6{bottom:358.597200px;}
.y14c{bottom:364.376700px;}
.y126{bottom:365.872200px;}
.y94{bottom:366.918450px;}
.y18{bottom:367.674900px;}
.y35{bottom:368.703450px;}
.y67{bottom:373.836000px;}
.yf5{bottom:376.597200px;}
.y14b{bottom:379.375200px;}
.y125{bottom:383.872200px;}
.y93{bottom:384.918450px;}
.y17{bottom:387.294900px;}
.y34{bottom:388.323450px;}
.yc5{bottom:388.372200px;}
.y14a{bottom:394.373700px;}
.yf4{bottom:394.597200px;}
.y124{bottom:401.872200px;}
.y92{bottom:402.918450px;}
.yc4{bottom:406.372200px;}
.y149{bottom:409.372200px;}
.y66{bottom:409.836000px;}
.yf3{bottom:412.597200px;}
.y123{bottom:419.881200px;}
.yc3{bottom:424.372200px;}
.y16{bottom:426.534900px;}
.y33{bottom:427.563450px;}
.y65{bottom:427.836000px;}
.yf2{bottom:430.597200px;}
.y91{bottom:438.918450px;}
.y148{bottom:439.372200px;}
.yc2{bottom:442.372200px;}
.y64{bottom:445.836000px;}
.y15{bottom:446.154900px;}
.y32{bottom:447.183450px;}
.yf1{bottom:448.597200px;}
.y90{bottom:456.918450px;}
.yc1{bottom:460.372200px;}
.y63{bottom:463.836000px;}
.y14{bottom:465.774900px;}
.yf0{bottom:466.597200px;}
.y31{bottom:466.803450px;}
.y8f{bottom:474.918450px;}
.yc0{bottom:478.372200px;}
.y62{bottom:481.836000px;}
.y122{bottom:482.872200px;}
.yef{bottom:484.597200px;}
.y13{bottom:485.394900px;}
.y30{bottom:486.423450px;}
.y8e{bottom:492.918450px;}
.y121{bottom:500.872200px;}
.y12{bottom:505.014900px;}
.y147{bottom:505.372200px;}
.y2f{bottom:506.043450px;}
.y8d{bottom:510.918450px;}
.ybf{bottom:514.372200px;}
.y61{bottom:517.836000px;}
.y120{bottom:518.872200px;}
.yee{bottom:520.597200px;}
.y146{bottom:523.372200px;}
.y11{bottom:524.634900px;}
.y2e{bottom:525.663450px;}
.y8c{bottom:528.918450px;}
.ybe{bottom:532.372200px;}
.y60{bottom:535.836000px;}
.y11f{bottom:536.872200px;}
.yed{bottom:538.597200px;}
.y145{bottom:541.372200px;}
.y10{bottom:544.254900px;}
.y2d{bottom:545.283450px;}
.y8b{bottom:546.918450px;}
.ybd{bottom:550.372200px;}
.y5f{bottom:553.836000px;}
.y11e{bottom:554.872200px;}
.yec{bottom:556.597200px;}
.y144{bottom:559.372200px;}
.yf{bottom:563.874900px;}
.y2c{bottom:564.903450px;}
.y8a{bottom:564.918450px;}
.ybc{bottom:568.372200px;}
.y5e{bottom:571.836000px;}
.y11d{bottom:572.872200px;}
.yeb{bottom:574.597200px;}
.y143{bottom:577.372200px;}
.y89{bottom:582.918450px;}
.ye{bottom:583.494900px;}
.y2b{bottom:584.523450px;}
.ybb{bottom:586.372200px;}
.y5d{bottom:589.836000px;}
.y11c{bottom:590.872200px;}
.yea{bottom:592.597200px;}
.y142{bottom:595.372200px;}
.y2a{bottom:604.143450px;}
.yba{bottom:604.372200px;}
.y5c{bottom:607.836000px;}
.y11b{bottom:608.872200px;}
.ye9{bottom:610.597200px;}
.y141{bottom:613.372200px;}
.y88{bottom:618.918450px;}
.yb9{bottom:622.372200px;}
.yd{bottom:622.734900px;}
.y5b{bottom:625.836000px;}
.y11a{bottom:626.872200px;}
.ye8{bottom:628.597200px;}
.y140{bottom:631.372200px;}
.y87{bottom:636.918450px;}
.yb8{bottom:640.372200px;}
.y29{bottom:643.383450px;}
.y5a{bottom:643.836000px;}
.y119{bottom:644.872200px;}
.ye7{bottom:646.597200px;}
.y13f{bottom:649.372200px;}
.y86{bottom:654.918450px;}
.y59{bottom:661.836000px;}
.y118{bottom:662.872200px;}
.y28{bottom:663.003450px;}
.ye6{bottom:664.597200px;}
.y13e{bottom:667.372200px;}
.y85{bottom:672.918450px;}
.yb7{bottom:676.372200px;}
.y58{bottom:679.836000px;}
.y117{bottom:680.872200px;}
.y27{bottom:682.623450px;}
.y13d{bottom:685.372200px;}
.yc{bottom:685.518900px;}
.y84{bottom:690.918450px;}
.yb6{bottom:694.372200px;}
.y116{bottom:698.872200px;}
.ye5{bottom:700.597200px;}
.y26{bottom:702.243450px;}
.y13c{bottom:703.381200px;}
.yb{bottom:705.138900px;}
.y83{bottom:708.918450px;}
.yb5{bottom:712.372200px;}
.y57{bottom:715.836000px;}
.y115{bottom:716.872200px;}
.ye4{bottom:718.597200px;}
.y25{bottom:721.863450px;}
.ya{bottom:724.758900px;}
.y13b{bottom:725.872200px;}
.y82{bottom:726.918450px;}
.yb4{bottom:730.372200px;}
.y56{bottom:733.836000px;}
.y114{bottom:734.872200px;}
.y24{bottom:741.483450px;}
.y9{bottom:744.378900px;}
.y81{bottom:744.918450px;}
.yb3{bottom:748.372200px;}
.y55{bottom:751.836000px;}
.ye3{bottom:754.597200px;}
.y23{bottom:761.103450px;}
.y80{bottom:762.918450px;}
.y8{bottom:763.998900px;}
.yb2{bottom:766.372200px;}
.y54{bottom:769.836000px;}
.y113{bottom:775.372200px;}
.y13a{bottom:784.372200px;}
.y53{bottom:787.836000px;}
.y7f{bottom:798.918450px;}
.y22{bottom:800.343450px;}
.yb1{bottom:802.372200px;}
.y7{bottom:803.238900px;}
.y52{bottom:805.836000px;}
.y139{bottom:820.372200px;}
.ye2{bottom:823.597200px;}
.y51{bottom:823.836000px;}
.y7e{bottom:831.918450px;}
.yb0{bottom:835.372200px;}
.y138{bottom:838.372200px;}
.ye1{bottom:841.597200px;}
.y50{bottom:841.836000px;}
.y112{bottom:856.372200px;}
.ye0{bottom:859.597200px;}
.y4f{bottom:859.836000px;}
.y111{bottom:874.372200px;}
.ydf{bottom:877.597200px;}
.y4e{bottom:877.836000px;}
.y110{bottom:892.372200px;}
.yde{bottom:895.597200px;}
.y4d{bottom:895.836000px;}
.y10f{bottom:910.372200px;}
.y6{bottom:912.475650px;}
.ydd{bottom:913.597200px;}
.y4c{bottom:913.836000px;}
.y3e{bottom:917.170050px;}
.yaf{bottom:919.372200px;}
.y7d{bottom:924.921000px;}
.y10e{bottom:928.372200px;}
.y137{bottom:928.381200px;}
.yae{bottom:937.372200px;}
.ydc{bottom:942.097200px;}
.y3d{bottom:942.662550px;}
.y7c{bottom:942.921000px;}
.y10d{bottom:946.372200px;}
.y4b{bottom:949.836000px;}
.y136{bottom:950.872200px;}
.y5{bottom:954.475650px;}
.yad{bottom:955.372200px;}
.ydb{bottom:960.097200px;}
.y7b{bottom:960.921000px;}
.y10c{bottom:964.372200px;}
.y3c{bottom:968.155050px;}
.yac{bottom:973.372200px;}
.yda{bottom:978.097200px;}
.y7a{bottom:978.921000px;}
.y10b{bottom:982.372200px;}
.y4a{bottom:982.836000px;}
.y3b{bottom:989.753550px;}
.yab{bottom:991.372200px;}
.yd9{bottom:996.097200px;}
.y79{bottom:996.921000px;}
.y4{bottom:999.475650px;}
.y10a{bottom:1000.372200px;}
.yaa{bottom:1009.372200px;}
.yd8{bottom:1014.097200px;}
.y78{bottom:1014.921000px;}
.y109{bottom:1018.372200px;}
.ya9{bottom:1027.372200px;}
.yd7{bottom:1032.097200px;}
.y77{bottom:1032.921000px;}
.y108{bottom:1036.372200px;}
.ya8{bottom:1045.372200px;}
.y49{bottom:1048.836000px;}
.y76{bottom:1050.921000px;}
.y107{bottom:1054.381200px;}
.yd6{bottom:1060.597200px;}
.ya7{bottom:1063.372200px;}
.y75{bottom:1068.921000px;}
.y106{bottom:1076.872200px;}
.yd5{bottom:1078.597200px;}
.ya6{bottom:1081.372200px;}
.y48{bottom:1081.836000px;}
.y74{bottom:1086.921000px;}
.yd4{bottom:1096.597200px;}
.ya5{bottom:1099.372200px;}
.y2{bottom:1106.822250px;}
.yd3{bottom:1114.597200px;}
.y47{bottom:1114.836000px;}
.ya4{bottom:1117.372200px;}
.y73{bottom:1122.921000px;}
.yd2{bottom:1132.597200px;}
.y1{bottom:1133.822250px;}
.ya3{bottom:1135.372200px;}
.y72{bottom:1140.921000px;}
.y46{bottom:1147.836000px;}
.yd1{bottom:1150.597200px;}
.ya2{bottom:1153.372200px;}
.y71{bottom:1158.921000px;}
.y3{bottom:1188.577950px;}
.hb{height:15.342228px;}
.hf{height:26.316000px;}
.h12{height:39.366000px;}
.h11{height:39.474000px;}
.hd{height:43.860000px;}
.he{height:45.550380px;}
.h7{height:47.807400px;}
.h9{height:48.048000px;}
.ha{height:48.246000px;}
.h8{height:49.649914px;}
.h10{height:61.404000px;}
.h2{height:65.610000px;}
.h5{height:78.948000px;}
.hc{height:96.492000px;}
.h6{height:105.176280px;}
.h3{height:122.808000px;}
.h4{height:131.580000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x7{left:72.283500px;}
.x4{left:106.308300px;}
.x8{left:114.811200px;}
.xb{left:452.834550px;}
.x9{left:464.176200px;}
.x2{left:467.312550px;}
.x5{left:472.728300px;}
.xa{left:506.701200px;}
.x6{left:515.253300px;}
.x3{left:640.629900px;}
@media print{
.v2{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.358400pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.186560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000107pt;}
.ws0{word-spacing:-35.554347pt;}
.wsb{word-spacing:-32.618667pt;}
.wsc{word-spacing:-20.757333pt;}
.ws2{word-spacing:-16.161067pt;}
.ws7{word-spacing:-14.826667pt;}
.wsd{word-spacing:-13.344000pt;}
.ws1{word-spacing:-9.421902pt;}
.ws6{word-spacing:-8.643947pt;}
.ws8{word-spacing:-8.576000pt;}
.ws3{word-spacing:-5.186368pt;}
.ws9{word-spacing:-4.999808pt;}
.ws5{word-spacing:-1.104533pt;}
.wse{word-spacing:-0.336000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.320000pt;}
._4{margin-left:-35.554347pt;}
._3{margin-left:-15.056533pt;}
._9{margin-left:-8.373333pt;}
._7{margin-left:-6.400000pt;}
._8{margin-left:-5.440000pt;}
._2{margin-left:-4.301867pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.440000pt;}
._5{width:1.440000pt;}
._6{width:91.893333pt;}
.fs8{font-size:18.656000pt;}
.fsc{font-size:31.093333pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:33.891733pt;}
.fse{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs5{font-size:58.133333pt;}
.fs7{font-size:58.666667pt;}
.fsd{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fsa{font-size:117.333333pt;}
.fs4{font-size:127.893333pt;}
.fs1{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:53.031867pt;}
.y157{bottom:57.219733pt;}
.y45{bottom:60.646000pt;}
.y135{bottom:61.219733pt;}
.y104{bottom:63.695867pt;}
.y44{bottom:71.312667pt;}
.y156{bottom:73.219733pt;}
.y103{bottom:77.023867pt;}
.y134{bottom:77.219733pt;}
.y43{bottom:81.979333pt;}
.y102{bottom:87.690533pt;}
.y155{bottom:89.219733pt;}
.y42{bottom:92.646000pt;}
.y133{bottom:93.219733pt;}
.y101{bottom:98.357200pt;}
.ya1{bottom:98.483200pt;}
.y41{bottom:103.312667pt;}
.y154{bottom:105.219733pt;}
.ya0{bottom:106.488533pt;}
.y100{bottom:109.023867pt;}
.y132{bottom:109.227733pt;}
.y40{bottom:113.979333pt;}
.y9f{bottom:119.816533pt;}
.y153{bottom:121.219733pt;}
.y3f{bottom:124.646000pt;}
.y9e{bottom:127.821867pt;}
.y131{bottom:129.219733pt;}
.y9d{bottom:141.149867pt;}
.yd0{bottom:153.219733pt;}
.yff{bottom:158.753067pt;}
.y130{bottom:165.219733pt;}
.ycf{bottom:169.219733pt;}
.y21{bottom:169.862133pt;}
.yfe{bottom:174.753067pt;}
.y12f{bottom:181.219733pt;}
.yce{bottom:185.219733pt;}
.y20{bottom:187.302133pt;}
.y70{bottom:188.298667pt;}
.yfd{bottom:190.753067pt;}
.y12e{bottom:197.219733pt;}
.y9c{bottom:198.149733pt;}
.ycd{bottom:201.219733pt;}
.y6f{bottom:204.298667pt;}
.y1f{bottom:204.742133pt;}
.yfc{bottom:206.753067pt;}
.y12d{bottom:213.219733pt;}
.y9b{bottom:214.149733pt;}
.y152{bottom:214.570400pt;}
.ycc{bottom:217.219733pt;}
.y6e{bottom:220.298667pt;}
.y1e{bottom:222.182133pt;}
.yfb{bottom:222.753067pt;}
.y12c{bottom:229.219733pt;}
.y9a{bottom:230.149733pt;}
.y151{bottom:230.566400pt;}
.ycb{bottom:233.219733pt;}
.y6d{bottom:236.298667pt;}
.yfa{bottom:238.753067pt;}
.y1d{bottom:239.622133pt;}
.y3a{bottom:240.536400pt;}
.y150{bottom:243.898400pt;}
.y12b{bottom:245.219733pt;}
.y99{bottom:246.149733pt;}
.yca{bottom:249.219733pt;}
.y6c{bottom:252.298667pt;}
.yf9{bottom:254.753067pt;}
.y1c{bottom:257.062133pt;}
.y14f{bottom:257.230400pt;}
.y39{bottom:257.976400pt;}
.y12a{bottom:261.219733pt;}
.y98{bottom:262.149733pt;}
.yc9{bottom:265.219733pt;}
.y6b{bottom:268.298667pt;}
.yf8{bottom:270.753067pt;}
.y1b{bottom:274.502133pt;}
.y38{bottom:275.416400pt;}
.y129{bottom:277.219733pt;}
.y97{bottom:278.149733pt;}
.yc8{bottom:281.219733pt;}
.y14e{bottom:283.894400pt;}
.y6a{bottom:284.298667pt;}
.yf7{bottom:286.753067pt;}
.y1a{bottom:291.942133pt;}
.y37{bottom:292.856400pt;}
.y128{bottom:293.219733pt;}
.y96{bottom:294.149733pt;}
.yc7{bottom:297.219733pt;}
.y14d{bottom:297.226400pt;}
.y69{bottom:300.298667pt;}
.y127{bottom:309.219733pt;}
.y19{bottom:309.382133pt;}
.y95{bottom:310.149733pt;}
.y36{bottom:310.296400pt;}
.yc6{bottom:313.219733pt;}
.y68{bottom:316.298667pt;}
.yf6{bottom:318.753067pt;}
.y14c{bottom:323.890400pt;}
.y126{bottom:325.219733pt;}
.y94{bottom:326.149733pt;}
.y18{bottom:326.822133pt;}
.y35{bottom:327.736400pt;}
.y67{bottom:332.298667pt;}
.yf5{bottom:334.753067pt;}
.y14b{bottom:337.222400pt;}
.y125{bottom:341.219733pt;}
.y93{bottom:342.149733pt;}
.y17{bottom:344.262133pt;}
.y34{bottom:345.176400pt;}
.yc5{bottom:345.219733pt;}
.y14a{bottom:350.554400pt;}
.yf4{bottom:350.753067pt;}
.y124{bottom:357.219733pt;}
.y92{bottom:358.149733pt;}
.yc4{bottom:361.219733pt;}
.y149{bottom:363.886400pt;}
.y66{bottom:364.298667pt;}
.yf3{bottom:366.753067pt;}
.y123{bottom:373.227733pt;}
.yc3{bottom:377.219733pt;}
.y16{bottom:379.142133pt;}
.y33{bottom:380.056400pt;}
.y65{bottom:380.298667pt;}
.yf2{bottom:382.753067pt;}
.y91{bottom:390.149733pt;}
.y148{bottom:390.553067pt;}
.yc2{bottom:393.219733pt;}
.y64{bottom:396.298667pt;}
.y15{bottom:396.582133pt;}
.y32{bottom:397.496400pt;}
.yf1{bottom:398.753067pt;}
.y90{bottom:406.149733pt;}
.yc1{bottom:409.219733pt;}
.y63{bottom:412.298667pt;}
.y14{bottom:414.022133pt;}
.yf0{bottom:414.753067pt;}
.y31{bottom:414.936400pt;}
.y8f{bottom:422.149733pt;}
.yc0{bottom:425.219733pt;}
.y62{bottom:428.298667pt;}
.y122{bottom:429.219733pt;}
.yef{bottom:430.753067pt;}
.y13{bottom:431.462133pt;}
.y30{bottom:432.376400pt;}
.y8e{bottom:438.149733pt;}
.y121{bottom:445.219733pt;}
.y12{bottom:448.902133pt;}
.y147{bottom:449.219733pt;}
.y2f{bottom:449.816400pt;}
.y8d{bottom:454.149733pt;}
.ybf{bottom:457.219733pt;}
.y61{bottom:460.298667pt;}
.y120{bottom:461.219733pt;}
.yee{bottom:462.753067pt;}
.y146{bottom:465.219733pt;}
.y11{bottom:466.342133pt;}
.y2e{bottom:467.256400pt;}
.y8c{bottom:470.149733pt;}
.ybe{bottom:473.219733pt;}
.y60{bottom:476.298667pt;}
.y11f{bottom:477.219733pt;}
.yed{bottom:478.753067pt;}
.y145{bottom:481.219733pt;}
.y10{bottom:483.782133pt;}
.y2d{bottom:484.696400pt;}
.y8b{bottom:486.149733pt;}
.ybd{bottom:489.219733pt;}
.y5f{bottom:492.298667pt;}
.y11e{bottom:493.219733pt;}
.yec{bottom:494.753067pt;}
.y144{bottom:497.219733pt;}
.yf{bottom:501.222133pt;}
.y2c{bottom:502.136400pt;}
.y8a{bottom:502.149733pt;}
.ybc{bottom:505.219733pt;}
.y5e{bottom:508.298667pt;}
.y11d{bottom:509.219733pt;}
.yeb{bottom:510.753067pt;}
.y143{bottom:513.219733pt;}
.y89{bottom:518.149733pt;}
.ye{bottom:518.662133pt;}
.y2b{bottom:519.576400pt;}
.ybb{bottom:521.219733pt;}
.y5d{bottom:524.298667pt;}
.y11c{bottom:525.219733pt;}
.yea{bottom:526.753067pt;}
.y142{bottom:529.219733pt;}
.y2a{bottom:537.016400pt;}
.yba{bottom:537.219733pt;}
.y5c{bottom:540.298667pt;}
.y11b{bottom:541.219733pt;}
.ye9{bottom:542.753067pt;}
.y141{bottom:545.219733pt;}
.y88{bottom:550.149733pt;}
.yb9{bottom:553.219733pt;}
.yd{bottom:553.542133pt;}
.y5b{bottom:556.298667pt;}
.y11a{bottom:557.219733pt;}
.ye8{bottom:558.753067pt;}
.y140{bottom:561.219733pt;}
.y87{bottom:566.149733pt;}
.yb8{bottom:569.219733pt;}
.y29{bottom:571.896400pt;}
.y5a{bottom:572.298667pt;}
.y119{bottom:573.219733pt;}
.ye7{bottom:574.753067pt;}
.y13f{bottom:577.219733pt;}
.y86{bottom:582.149733pt;}
.y59{bottom:588.298667pt;}
.y118{bottom:589.219733pt;}
.y28{bottom:589.336400pt;}
.ye6{bottom:590.753067pt;}
.y13e{bottom:593.219733pt;}
.y85{bottom:598.149733pt;}
.yb7{bottom:601.219733pt;}
.y58{bottom:604.298667pt;}
.y117{bottom:605.219733pt;}
.y27{bottom:606.776400pt;}
.y13d{bottom:609.219733pt;}
.yc{bottom:609.350133pt;}
.y84{bottom:614.149733pt;}
.yb6{bottom:617.219733pt;}
.y116{bottom:621.219733pt;}
.ye5{bottom:622.753067pt;}
.y26{bottom:624.216400pt;}
.y13c{bottom:625.227733pt;}
.yb{bottom:626.790133pt;}
.y83{bottom:630.149733pt;}
.yb5{bottom:633.219733pt;}
.y57{bottom:636.298667pt;}
.y115{bottom:637.219733pt;}
.ye4{bottom:638.753067pt;}
.y25{bottom:641.656400pt;}
.ya{bottom:644.230133pt;}
.y13b{bottom:645.219733pt;}
.y82{bottom:646.149733pt;}
.yb4{bottom:649.219733pt;}
.y56{bottom:652.298667pt;}
.y114{bottom:653.219733pt;}
.y24{bottom:659.096400pt;}
.y9{bottom:661.670133pt;}
.y81{bottom:662.149733pt;}
.yb3{bottom:665.219733pt;}
.y55{bottom:668.298667pt;}
.ye3{bottom:670.753067pt;}
.y23{bottom:676.536400pt;}
.y80{bottom:678.149733pt;}
.y8{bottom:679.110133pt;}
.yb2{bottom:681.219733pt;}
.y54{bottom:684.298667pt;}
.y113{bottom:689.219733pt;}
.y13a{bottom:697.219733pt;}
.y53{bottom:700.298667pt;}
.y7f{bottom:710.149733pt;}
.y22{bottom:711.416400pt;}
.yb1{bottom:713.219733pt;}
.y7{bottom:713.990133pt;}
.y52{bottom:716.298667pt;}
.y139{bottom:729.219733pt;}
.ye2{bottom:732.086400pt;}
.y51{bottom:732.298667pt;}
.y7e{bottom:739.483067pt;}
.yb0{bottom:742.553067pt;}
.y138{bottom:745.219733pt;}
.ye1{bottom:748.086400pt;}
.y50{bottom:748.298667pt;}
.y112{bottom:761.219733pt;}
.ye0{bottom:764.086400pt;}
.y4f{bottom:764.298667pt;}
.y111{bottom:777.219733pt;}
.ydf{bottom:780.086400pt;}
.y4e{bottom:780.298667pt;}
.y110{bottom:793.219733pt;}
.yde{bottom:796.086400pt;}
.y4d{bottom:796.298667pt;}
.y10f{bottom:809.219733pt;}
.y6{bottom:811.089467pt;}
.ydd{bottom:812.086400pt;}
.y4c{bottom:812.298667pt;}
.y3e{bottom:815.262267pt;}
.yaf{bottom:817.219733pt;}
.y7d{bottom:822.152000pt;}
.y10e{bottom:825.219733pt;}
.y137{bottom:825.227733pt;}
.yae{bottom:833.219733pt;}
.ydc{bottom:837.419733pt;}
.y3d{bottom:837.922267pt;}
.y7c{bottom:838.152000pt;}
.y10d{bottom:841.219733pt;}
.y4b{bottom:844.298667pt;}
.y136{bottom:845.219733pt;}
.y5{bottom:848.422800pt;}
.yad{bottom:849.219733pt;}
.ydb{bottom:853.419733pt;}
.y7b{bottom:854.152000pt;}
.y10c{bottom:857.219733pt;}
.y3c{bottom:860.582267pt;}
.yac{bottom:865.219733pt;}
.yda{bottom:869.419733pt;}
.y7a{bottom:870.152000pt;}
.y10b{bottom:873.219733pt;}
.y4a{bottom:873.632000pt;}
.y3b{bottom:879.780933pt;}
.yab{bottom:881.219733pt;}
.yd9{bottom:885.419733pt;}
.y79{bottom:886.152000pt;}
.y4{bottom:888.422800pt;}
.y10a{bottom:889.219733pt;}
.yaa{bottom:897.219733pt;}
.yd8{bottom:901.419733pt;}
.y78{bottom:902.152000pt;}
.y109{bottom:905.219733pt;}
.ya9{bottom:913.219733pt;}
.yd7{bottom:917.419733pt;}
.y77{bottom:918.152000pt;}
.y108{bottom:921.219733pt;}
.ya8{bottom:929.219733pt;}
.y49{bottom:932.298667pt;}
.y76{bottom:934.152000pt;}
.y107{bottom:937.227733pt;}
.yd6{bottom:942.753067pt;}
.ya7{bottom:945.219733pt;}
.y75{bottom:950.152000pt;}
.y106{bottom:957.219733pt;}
.yd5{bottom:958.753067pt;}
.ya6{bottom:961.219733pt;}
.y48{bottom:961.632000pt;}
.y74{bottom:966.152000pt;}
.yd4{bottom:974.753067pt;}
.ya5{bottom:977.219733pt;}
.y2{bottom:983.842000pt;}
.yd3{bottom:990.753067pt;}
.y47{bottom:990.965333pt;}
.ya4{bottom:993.219733pt;}
.y73{bottom:998.152000pt;}
.yd2{bottom:1006.753067pt;}
.y1{bottom:1007.842000pt;}
.ya3{bottom:1009.219733pt;}
.y72{bottom:1014.152000pt;}
.y46{bottom:1020.298667pt;}
.yd1{bottom:1022.753067pt;}
.ya2{bottom:1025.219733pt;}
.y71{bottom:1030.152000pt;}
.y3{bottom:1056.513733pt;}
.hb{height:13.637536pt;}
.hf{height:23.392000pt;}
.h12{height:34.992000pt;}
.h11{height:35.088000pt;}
.hd{height:38.986667pt;}
.he{height:40.489227pt;}
.h7{height:42.495467pt;}
.h9{height:42.709333pt;}
.ha{height:42.885333pt;}
.h8{height:44.133257pt;}
.h10{height:54.581333pt;}
.h2{height:58.320000pt;}
.h5{height:70.176000pt;}
.hc{height:85.770667pt;}
.h6{height:93.490027pt;}
.h3{height:109.162667pt;}
.h4{height:116.960000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x7{left:64.252000pt;}
.x4{left:94.496267pt;}
.x8{left:102.054400pt;}
.xb{left:402.519600pt;}
.x9{left:412.601067pt;}
.x2{left:415.388933pt;}
.x5{left:420.202933pt;}
.xa{left:450.401067pt;}
.x6{left:458.002933pt;}
.x3{left:569.448800pt;}
}




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