
    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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_76cc3cc0d87fba01642ac047.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.105000;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_4c9d4058221df7cd283902f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_7e7f8e4993bb5c5ca26882f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_4710c844213b527d5587e17e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949000;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;}
.m7{transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010200px;}
.ls4{letter-spacing:0.010641px;}
.ls2{letter-spacing:0.011051px;}
.lsa{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.021253px;}
.ls1{letter-spacing:0.021282px;}
.lsb{letter-spacing:0.022491px;}
.ls5{letter-spacing:0.312120px;}
.ls0{letter-spacing:0.731476px;}
.ls9{letter-spacing:1.032600px;}
.ls7{letter-spacing:4.403458px;}
.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;}
}
.wsc{word-spacing:-19.044875px;}
.wsb{word-spacing:-19.022384px;}
.ws2{word-spacing:-18.021275px;}
.wsa{word-spacing:-18.021231px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.127994px;}
.ws9{word-spacing:-15.047994px;}
.ws8{word-spacing:-14.939994px;}
.ws3{word-spacing:-14.837754px;}
.ws6{word-spacing:-13.386235px;}
.ws4{word-spacing:-12.365995px;}
.ws7{word-spacing:-10.805756px;}
.ws5{word-spacing:0.000000px;}
._2f{margin-left:-11.617742px;}
._30{margin-left:-9.499344px;}
._17{margin-left:-7.445483px;}
._4{margin-left:-5.878507px;}
._2{margin-left:-3.945950px;}
._0{margin-left:-2.090489px;}
._3{margin-left:-1.011107px;}
._1{width:1.065864px;}
._b{width:2.214753px;}
._a{width:3.249391px;}
._9{width:4.486338px;}
._5{width:5.638467px;}
._6{width:6.723319px;}
._e{width:8.392430px;}
._8{width:10.386872px;}
._20{width:12.259205px;}
._c{width:14.145408px;}
._d{width:15.316343px;}
._19{width:16.385749px;}
._12{width:17.524834px;}
._28{width:18.539715px;}
._11{width:19.567637px;}
._21{width:20.693908px;}
._22{width:21.809404px;}
._13{width:23.177179px;}
._14{width:24.229573px;}
._18{width:25.363856px;}
._1d{width:26.629066px;}
._24{width:27.728735px;}
._1e{width:28.918143px;}
._1f{width:30.591255px;}
._10{width:31.635295px;}
._7{width:33.155066px;}
._2e{width:34.551039px;}
._23{width:35.895624px;}
._27{width:37.317386px;}
._2b{width:39.094404px;}
._2a{width:41.856296px;}
._1b{width:44.138371px;}
._1c{width:45.157723px;}
._26{width:49.201272px;}
._25{width:50.503153px;}
._2c{width:51.610092px;}
._29{width:53.384808px;}
._2d{width:56.180485px;}
._15{width:62.467840px;}
._16{width:63.594034px;}
._1a{width:65.327007px;}
._f{width:106.605229px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs1{font-size:56.879977px;}
.fs7{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs8{font-size:76.089538px;}
.fs2{font-size:84.239966px;}
.fs5{font-size:369.359852px;}
.y0{bottom:0.000000px;}
.y34{bottom:6.839292px;}
.y5d{bottom:181.739927px;}
.y37{bottom:181.919927px;}
.y5c{bottom:202.619919px;}
.yc5{bottom:246.539901px;}
.y32{bottom:247.799901px;}
.y85{bottom:248.339901px;}
.y9a{bottom:249.239900px;}
.y7c{bottom:250.319900px;}
.yc9{bottom:251.219900px;}
.ye7{bottom:252.299899px;}
.y33{bottom:263.640600px;}
.yfe{bottom:265.619894px;}
.yc4{bottom:267.959893px;}
.y31{bottom:269.039892px;}
.y84{bottom:269.579892px;}
.yae{bottom:269.759892px;}
.y99{bottom:270.659892px;}
.y91{bottom:271.559891px;}
.y7b{bottom:271.739891px;}
.y5a{bottom:271.919891px;}
.yc8{bottom:272.639891px;}
.ye6{bottom:273.719891px;}
.yfd{bottom:286.859885px;}
.yc3{bottom:289.379884px;}
.yad{bottom:290.999884px;}
.y30{bottom:291.539883px;}
.y83{bottom:292.079883px;}
.y7a{bottom:293.159883px;}
.y59{bottom:293.339883px;}
.yc7{bottom:294.059882px;}
.ye5{bottom:295.139882px;}
.yfc{bottom:309.359876px;}
.yc2{bottom:310.619876px;}
.yac{bottom:312.419875px;}
.y2f{bottom:312.959875px;}
.y79{bottom:314.579874px;}
.y58{bottom:314.759874px;}
.yc6{bottom:315.479874px;}
.ye4{bottom:316.559873px;}
.yfb{bottom:330.779868px;}
.yc1{bottom:332.039867px;}
.y2c{bottom:332.579867px;}
.yab{bottom:333.839866px;}
.y78{bottom:335.819866px;}
.y57{bottom:336.179866px;}
.y2e{bottom:336.899865px;}
.ye3{bottom:337.979865px;}
.y2b{bottom:347.699861px;}
.yfa{bottom:353.099859px;}
.yc0{bottom:353.459859px;}
.yaa{bottom:355.259858px;}
.yf1{bottom:356.339857px;}
.y77{bottom:357.239857px;}
.y56{bottom:357.599857px;}
.y2d{bottom:358.319857px;}
.ye2{bottom:359.399856px;}
.y11b{bottom:362.639855px;}
.y2a{bottom:362.819855px;}
.yf9{bottom:374.519850px;}
.ydf{bottom:374.879850px;}
.ybf{bottom:375.959850px;}
.ya9{bottom:376.679849px;}
.yf0{bottom:377.759849px;}
.y29{bottom:378.299849px;}
.y76{bottom:378.659849px;}
.y55{bottom:379.019848px;}
.y82{bottom:379.739848px;}
.ye1{bottom:380.639848px;}
.y11a{bottom:383.879846px;}
.y28{bottom:394.499842px;}
.yf8{bottom:396.659841px;}
.ybe{bottom:397.379841px;}
.ya8{bottom:398.099841px;}
.yef{bottom:399.179840px;}
.y75{bottom:400.079840px;}
.y54{bottom:400.259840px;}
.y98{bottom:400.979840px;}
.y81{bottom:401.159840px;}
.ye0{bottom:402.059839px;}
.y119{bottom:406.379837px;}
.y27{bottom:410.519836px;}
.yf7{bottom:418.079833px;}
.ybd{bottom:418.619833px;}
.yde{bottom:418.799832px;}
.ya7{bottom:419.339832px;}
.yee{bottom:420.419832px;}
.y53{bottom:421.319831px;}
.y90{bottom:421.499831px;}
.y74{bottom:422.579831px;}
.y97{bottom:423.479831px;}
.y26{bottom:426.539829px;}
.y118{bottom:428.699829px;}
.ydd{bottom:440.039824px;}
.ybc{bottom:441.119824px;}
.y52{bottom:441.839823px;}
.y25{bottom:442.559823px;}
.y8f{bottom:442.919823px;}
.y73{bottom:443.999822px;}
.y96{bottom:444.899822px;}
.y117{bottom:451.199820px;}
.y24{bottom:458.579817px;}
.ydc{bottom:461.459815px;}
.yf6{bottom:462.179815px;}
.ybb{bottom:462.539815px;}
.yed{bottom:463.259815px;}
.y51{bottom:464.339814px;}
.y72{bottom:465.239814px;}
.y95{bottom:466.319813px;}
.y116{bottom:473.699811px;}
.y23{bottom:474.779810px;}
.ydb{bottom:483.959806px;}
.yec{bottom:484.679806px;}
.yba{bottom:484.859806px;}
.y50{bottom:485.759806px;}
.y71{bottom:486.659805px;}
.y94{bottom:487.739805px;}
.y22{bottom:490.799804px;}
.y115{bottom:494.939802px;}
.yda{bottom:505.379798px;}
.yeb{bottom:506.099798px;}
.yb9{bottom:506.279797px;}
.y21{bottom:506.819797px;}
.y4f{bottom:507.179797px;}
.y70{bottom:508.079797px;}
.y93{bottom:509.159796px;}
.y114{bottom:517.439793px;}
.y20{bottom:522.839791px;}
.yd9{bottom:526.799789px;}
.yea{bottom:527.519789px;}
.y4e{bottom:528.599789px;}
.y6f{bottom:529.499788px;}
.y80{bottom:530.579788px;}
.y1f{bottom:538.859784px;}
.yd8{bottom:548.219781px;}
.ye9{bottom:548.939780px;}
.y4d{bottom:549.839780px;}
.y6e{bottom:550.919780px;}
.yb8{bottom:551.099780px;}
.y7f{bottom:551.999779px;}
.y1e{bottom:554.879778px;}
.y113{bottom:560.279776px;}
.yd7{bottom:569.459772px;}
.ye8{bottom:570.179772px;}
.y1d{bottom:571.079772px;}
.y4c{bottom:571.259771px;}
.ya6{bottom:572.339771px;}
.yb7{bottom:572.519771px;}
.y6d{bottom:573.419771px;}
.y112{bottom:581.519767px;}
.y1c{bottom:587.099765px;}
.yd6{bottom:590.879764px;}
.y4b{bottom:592.679763px;}
.ya5{bottom:593.759762px;}
.yb6{bottom:593.939762px;}
.y6c{bottom:594.659762px;}
.y1b{bottom:603.119759px;}
.y111{bottom:604.019758px;}
.yd5{bottom:613.379755px;}
.y4a{bottom:614.099754px;}
.ya4{bottom:614.999754px;}
.yf5{bottom:615.179754px;}
.yb5{bottom:615.359754px;}
.y6b{bottom:616.079754px;}
.y1a{bottom:619.139752px;}
.y110{bottom:625.439750px;}
.yd4{bottom:634.799746px;}
.y19{bottom:635.159746px;}
.y49{bottom:635.519746px;}
.yf4{bottom:636.599745px;}
.yb4{bottom:636.779745px;}
.y6a{bottom:637.499745px;}
.y10f{bottom:647.759741px;}
.y18{bottom:651.179740px;}
.yd3{bottom:656.219738px;}
.y48{bottom:656.939737px;}
.yf3{bottom:658.019737px;}
.yb3{bottom:658.199737px;}
.y69{bottom:658.919736px;}
.y17{bottom:667.379733px;}
.y10e{bottom:670.259732px;}
.yd2{bottom:677.279729px;}
.y47{bottom:678.359729px;}
.yb2{bottom:679.259728px;}
.y68{bottom:680.339728px;}
.y16{bottom:683.039727px;}
.y10d{bottom:691.679723px;}
.yd1{bottom:697.619721px;}
.yb1{bottom:699.599720px;}
.y46{bottom:699.779720px;}
.y15{bottom:699.959720px;}
.yf2{bottom:700.679720px;}
.y67{bottom:701.759719px;}
.y10c{bottom:713.999714px;}
.yd0{bottom:720.119712px;}
.y14{bottom:721.199712px;}
.yb0{bottom:722.099711px;}
.y66{bottom:723.179711px;}
.y10b{bottom:736.499705px;}
.ycf{bottom:741.539703px;}
.y45{bottom:742.439703px;}
.y13{bottom:742.619703px;}
.yaf{bottom:743.519703px;}
.y65{bottom:744.599702px;}
.y10a{bottom:757.739697px;}
.yce{bottom:762.959695px;}
.y8e{bottom:763.859694px;}
.y12{bottom:764.939694px;}
.ya3{bottom:765.839694px;}
.y64{bottom:766.019694px;}
.y109{bottom:780.239688px;}
.ycd{bottom:784.379686px;}
.y44{bottom:786.359685px;}
.y63{bottom:787.439685px;}
.ya2{bottom:788.339685px;}
.y11{bottom:789.959684px;}
.y108{bottom:802.739679px;}
.ycc{bottom:805.619678px;}
.y43{bottom:807.779677px;}
.y62{bottom:808.679677px;}
.ya1{bottom:809.759676px;}
.y10{bottom:814.079674px;}
.y107{bottom:823.979670px;}
.ycb{bottom:828.119669px;}
.y42{bottom:829.019668px;}
.y8d{bottom:829.199668px;}
.y61{bottom:830.099668px;}
.ya0{bottom:831.179668px;}
.yf{bottom:835.319666px;}
.y106{bottom:846.479661px;}
.yca{bottom:849.539660px;}
.y8c{bottom:850.619660px;}
.y41{bottom:851.519659px;}
.y9f{bottom:852.599659px;}
.ye{bottom:855.839658px;}
.y105{bottom:867.899653px;}
.y8b{bottom:872.039651px;}
.y40{bottom:872.939651px;}
.y9e{bottom:874.019650px;}
.yd{bottom:876.539649px;}
.y104{bottom:890.399644px;}
.y8a{bottom:893.279643px;}
.y3f{bottom:894.359642px;}
.y9d{bottom:895.439642px;}
.yc{bottom:898.859640px;}
.y103{bottom:911.639635px;}
.y89{bottom:914.699634px;}
.y3e{bottom:915.779634px;}
.y9c{bottom:916.859633px;}
.yb{bottom:923.699631px;}
.y102{bottom:934.139626px;}
.y88{bottom:936.119626px;}
.y60{bottom:937.019625px;}
.y3d{bottom:937.199625px;}
.y9b{bottom:938.099625px;}
.ya{bottom:948.719621px;}
.y101{bottom:956.459617px;}
.y87{bottom:957.539617px;}
.y92{bottom:958.439617px;}
.y3c{bottom:958.619617px;}
.y5f{bottom:959.519616px;}
.y9{bottom:973.739611px;}
.y100{bottom:978.959608px;}
.y3b{bottom:979.859608px;}
.y7e{bottom:980.039608px;}
.y5e{bottom:980.939608px;}
.y8{bottom:998.759600px;}
.yff{bottom:1000.379600px;}
.y86{bottom:1001.279599px;}
.y7d{bottom:1001.459599px;}
.y3a{bottom:1002.359599px;}
.y7{bottom:1022.699591px;}
.y39{bottom:1023.779590px;}
.y6{bottom:1044.119582px;}
.y38{bottom:1045.199582px;}
.y36{bottom:1068.239573px;}
.y5b{bottom:1070.939572px;}
.y35{bottom:1089.479564px;}
.y5{bottom:1110.899556px;}
.y4{bottom:1131.599547px;}
.y3{bottom:1152.299539px;}
.y2{bottom:1172.999531px;}
.y1{bottom:1193.699523px;}
.h7{height:37.799985px;}
.hb{height:38.784944px;}
.h8{height:43.415983px;}
.h3{height:45.731502px;}
.hc{height:48.047021px;}
.he{height:50.399980px;}
.hf{height:51.436528px;}
.h6{height:53.256939px;}
.h5{height:54.287978px;}
.h2{height:57.887977px;}
.hd{height:58.651148px;}
.h9{height:65.160000px;}
.h4{height:67.728933px;}
.h1{height:70.664034px;}
.ha{height:296.965321px;}
.h0{height:1263.000000px;}
.w1{width:52.920000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:170.099932px;}
.x1{left:174.419930px;}
.x29{left:187.379925px;}
.x23{left:191.340634px;}
.x2{left:194.219933px;}
.x12{left:195.659403px;}
.x3{left:210.059916px;}
.x30{left:211.319915px;}
.x16{left:227.339421px;}
.x13{left:280.619888px;}
.x20{left:291.059884px;}
.x7{left:302.579958px;}
.x21{left:304.019878px;}
.x8{left:313.379953px;}
.x2a{left:334.439866px;}
.x24{left:347.219861px;}
.x25{left:352.619859px;}
.x5{left:355.499821px;}
.x18{left:359.099856px;}
.x26{left:361.259855px;}
.x9{left:364.139854px;}
.x11{left:367.559853px;}
.xa{left:370.079852px;}
.x10{left:381.240079px;}
.x4{left:384.119846px;}
.x19{left:394.199842px;}
.x1a{left:401.219840px;}
.xb{left:402.839839px;}
.x1b{left:403.919838px;}
.x1c{left:410.759836px;}
.xc{left:412.559835px;}
.x6{left:448.559821px;}
.x22{left:451.079820px;}
.x15{left:459.359939px;}
.x1d{left:460.979816px;}
.x1e{left:467.819813px;}
.x28{left:475.199810px;}
.x31{left:477.539809px;}
.xd{left:481.499807px;}
.x32{left:486.539805px;}
.xe{left:491.219804px;}
.x1f{left:498.419801px;}
.x2c{left:525.059790px;}
.xf{left:533.159787px;}
.x2d{left:543.059783px;}
.x14{left:564.299732px;}
.x2b{left:568.439773px;}
.x2e{left:580.679768px;}
.x2f{left:616.679753px;}
.x27{left:696.059722px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009067pt;}
.ls4{letter-spacing:0.009459pt;}
.ls2{letter-spacing:0.009823pt;}
.lsa{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.018891pt;}
.ls1{letter-spacing:0.018917pt;}
.lsb{letter-spacing:0.019992pt;}
.ls5{letter-spacing:0.277440pt;}
.ls0{letter-spacing:0.650201pt;}
.ls9{letter-spacing:0.917866pt;}
.ls7{letter-spacing:3.914185pt;}
.wsc{word-spacing:-16.928778pt;}
.wsb{word-spacing:-16.908786pt;}
.ws2{word-spacing:-16.018911pt;}
.wsa{word-spacing:-16.018872pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.335994pt;}
.ws9{word-spacing:-13.375995pt;}
.ws8{word-spacing:-13.279995pt;}
.ws3{word-spacing:-13.189115pt;}
.ws6{word-spacing:-11.898875pt;}
.ws4{word-spacing:-10.991996pt;}
.ws7{word-spacing:-9.605116pt;}
.ws5{word-spacing:0.000000pt;}
._2f{margin-left:-10.326881pt;}
._30{margin-left:-8.443861pt;}
._17{margin-left:-6.618207pt;}
._4{margin-left:-5.225340pt;}
._2{margin-left:-3.507511pt;}
._0{margin-left:-1.858212pt;}
._3{margin-left:-0.898762pt;}
._1{width:0.947435pt;}
._b{width:1.968670pt;}
._a{width:2.888348pt;}
._9{width:3.987856pt;}
._5{width:5.011970pt;}
._6{width:5.976283pt;}
._e{width:7.459938pt;}
._8{width:9.232775pt;}
._20{width:10.897071pt;}
._c{width:12.573696pt;}
._d{width:13.614527pt;}
._19{width:14.565110pt;}
._12{width:15.577630pt;}
._28{width:16.479747pt;}
._11{width:17.393455pt;}
._21{width:18.394585pt;}
._22{width:19.386137pt;}
._13{width:20.601937pt;}
._14{width:21.537398pt;}
._18{width:22.545650pt;}
._1d{width:23.670281pt;}
._24{width:24.647764pt;}
._1e{width:25.705016pt;}
._1f{width:27.192226pt;}
._10{width:28.120262pt;}
._7{width:29.471170pt;}
._2e{width:30.712035pt;}
._23{width:31.907222pt;}
._27{width:33.171010pt;}
._2b{width:34.750581pt;}
._2a{width:37.205596pt;}
._1b{width:39.234107pt;}
._1c{width:40.140198pt;}
._26{width:43.734464pt;}
._25{width:44.891692pt;}
._2c{width:45.875637pt;}
._29{width:47.453163pt;}
._2d{width:49.938209pt;}
._15{width:55.526969pt;}
._16{width:56.528030pt;}
._1a{width:58.068450pt;}
._f{width:94.760204pt;}
.fs6{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs1{font-size:50.559980pt;}
.fs7{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs8{font-size:67.635145pt;}
.fs2{font-size:74.879970pt;}
.fs5{font-size:328.319869pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:6.079370pt;}
.y5d{bottom:161.546602pt;}
.y37{bottom:161.706602pt;}
.y5c{bottom:180.106595pt;}
.yc5{bottom:219.146579pt;}
.y32{bottom:220.266579pt;}
.y85{bottom:220.746578pt;}
.y9a{bottom:221.546578pt;}
.y7c{bottom:222.506578pt;}
.yc9{bottom:223.306577pt;}
.ye7{bottom:224.266577pt;}
.y33{bottom:234.347200pt;}
.yfe{bottom:236.106572pt;}
.yc4{bottom:238.186571pt;}
.y31{bottom:239.146571pt;}
.y84{bottom:239.626571pt;}
.yae{bottom:239.786571pt;}
.y99{bottom:240.586570pt;}
.y91{bottom:241.386570pt;}
.y7b{bottom:241.546570pt;}
.y5a{bottom:241.706570pt;}
.yc8{bottom:242.346570pt;}
.ye6{bottom:243.306569pt;}
.yfd{bottom:254.986565pt;}
.yc3{bottom:257.226564pt;}
.yad{bottom:258.666563pt;}
.y30{bottom:259.146563pt;}
.y83{bottom:259.626563pt;}
.y7a{bottom:260.586562pt;}
.y59{bottom:260.746562pt;}
.yc7{bottom:261.386562pt;}
.ye5{bottom:262.346562pt;}
.yfc{bottom:274.986557pt;}
.yc2{bottom:276.106556pt;}
.yac{bottom:277.706556pt;}
.y2f{bottom:278.186555pt;}
.y79{bottom:279.626555pt;}
.y58{bottom:279.786555pt;}
.yc6{bottom:280.426554pt;}
.ye4{bottom:281.386554pt;}
.yfb{bottom:294.026549pt;}
.yc1{bottom:295.146549pt;}
.y2c{bottom:295.626548pt;}
.yab{bottom:296.746548pt;}
.y78{bottom:298.506547pt;}
.y57{bottom:298.826547pt;}
.y2e{bottom:299.466547pt;}
.ye3{bottom:300.426546pt;}
.y2b{bottom:309.066543pt;}
.yfa{bottom:313.866541pt;}
.yc0{bottom:314.186541pt;}
.yaa{bottom:315.786540pt;}
.yf1{bottom:316.746540pt;}
.y77{bottom:317.546540pt;}
.y56{bottom:317.866540pt;}
.y2d{bottom:318.506539pt;}
.ye2{bottom:319.466539pt;}
.y11b{bottom:322.346538pt;}
.y2a{bottom:322.506538pt;}
.yf9{bottom:332.906534pt;}
.ydf{bottom:333.226533pt;}
.ybf{bottom:334.186533pt;}
.ya9{bottom:334.826533pt;}
.yf0{bottom:335.786532pt;}
.y29{bottom:336.266532pt;}
.y76{bottom:336.586532pt;}
.y55{bottom:336.906532pt;}
.y82{bottom:337.546532pt;}
.ye1{bottom:338.346531pt;}
.y11a{bottom:341.226530pt;}
.y28{bottom:350.666526pt;}
.yf8{bottom:352.586526pt;}
.ybe{bottom:353.226525pt;}
.ya8{bottom:353.866525pt;}
.yef{bottom:354.826525pt;}
.y75{bottom:355.626524pt;}
.y54{bottom:355.786524pt;}
.y98{bottom:356.426524pt;}
.y81{bottom:356.586524pt;}
.ye0{bottom:357.386524pt;}
.y119{bottom:361.226522pt;}
.y27{bottom:364.906521pt;}
.yf7{bottom:371.626518pt;}
.ybd{bottom:372.106518pt;}
.yde{bottom:372.266518pt;}
.ya7{bottom:372.746518pt;}
.yee{bottom:373.706517pt;}
.y53{bottom:374.506517pt;}
.y90{bottom:374.666517pt;}
.y74{bottom:375.626516pt;}
.y97{bottom:376.426516pt;}
.y26{bottom:379.146515pt;}
.y118{bottom:381.066514pt;}
.ydd{bottom:391.146510pt;}
.ybc{bottom:392.106510pt;}
.y52{bottom:392.746510pt;}
.y25{bottom:393.386509pt;}
.y8f{bottom:393.706509pt;}
.y73{bottom:394.666509pt;}
.y96{bottom:395.466508pt;}
.y117{bottom:401.066506pt;}
.y24{bottom:407.626504pt;}
.ydc{bottom:410.186503pt;}
.yf6{bottom:410.826502pt;}
.ybb{bottom:411.146502pt;}
.yed{bottom:411.786502pt;}
.y51{bottom:412.746502pt;}
.y72{bottom:413.546501pt;}
.y95{bottom:414.506501pt;}
.y116{bottom:421.066498pt;}
.y23{bottom:422.026498pt;}
.ydb{bottom:430.186495pt;}
.yec{bottom:430.826494pt;}
.yba{bottom:430.986494pt;}
.y50{bottom:431.786494pt;}
.y71{bottom:432.586494pt;}
.y94{bottom:433.546493pt;}
.y22{bottom:436.266492pt;}
.y115{bottom:439.946491pt;}
.yda{bottom:449.226487pt;}
.yeb{bottom:449.866487pt;}
.yb9{bottom:450.026487pt;}
.y21{bottom:450.506486pt;}
.y4f{bottom:450.826486pt;}
.y70{bottom:451.626486pt;}
.y93{bottom:452.586486pt;}
.y114{bottom:459.946483pt;}
.y20{bottom:464.746481pt;}
.yd9{bottom:468.266479pt;}
.yea{bottom:468.906479pt;}
.y4e{bottom:469.866479pt;}
.y6f{bottom:470.666478pt;}
.y80{bottom:471.626478pt;}
.y1f{bottom:478.986475pt;}
.yd8{bottom:487.306472pt;}
.ye9{bottom:487.946471pt;}
.y4d{bottom:488.746471pt;}
.y6e{bottom:489.706471pt;}
.yb8{bottom:489.866471pt;}
.y7f{bottom:490.666470pt;}
.y1e{bottom:493.226469pt;}
.y113{bottom:498.026467pt;}
.yd7{bottom:506.186464pt;}
.ye8{bottom:506.826464pt;}
.y1d{bottom:507.626464pt;}
.y4c{bottom:507.786464pt;}
.ya6{bottom:508.746463pt;}
.yb7{bottom:508.906463pt;}
.y6d{bottom:509.706463pt;}
.y112{bottom:516.906460pt;}
.y1c{bottom:521.866458pt;}
.yd6{bottom:525.226457pt;}
.y4b{bottom:526.826456pt;}
.ya5{bottom:527.786456pt;}
.yb6{bottom:527.946455pt;}
.y6c{bottom:528.586455pt;}
.y1b{bottom:536.106452pt;}
.y111{bottom:536.906452pt;}
.yd5{bottom:545.226449pt;}
.y4a{bottom:545.866448pt;}
.ya4{bottom:546.666448pt;}
.yf5{bottom:546.826448pt;}
.yb5{bottom:546.986448pt;}
.y6b{bottom:547.626448pt;}
.y1a{bottom:550.346447pt;}
.y110{bottom:555.946444pt;}
.yd4{bottom:564.266441pt;}
.y19{bottom:564.586441pt;}
.y49{bottom:564.906441pt;}
.yf4{bottom:565.866440pt;}
.yb4{bottom:566.026440pt;}
.y6a{bottom:566.666440pt;}
.y10f{bottom:575.786436pt;}
.y18{bottom:578.826435pt;}
.yd3{bottom:583.306433pt;}
.y48{bottom:583.946433pt;}
.yf3{bottom:584.906433pt;}
.yb3{bottom:585.066433pt;}
.y69{bottom:585.706432pt;}
.y17{bottom:593.226429pt;}
.y10e{bottom:595.786428pt;}
.yd2{bottom:602.026426pt;}
.y47{bottom:602.986425pt;}
.yb2{bottom:603.786425pt;}
.y68{bottom:604.746425pt;}
.y16{bottom:607.146424pt;}
.y10d{bottom:614.826421pt;}
.yd1{bottom:620.106419pt;}
.yb1{bottom:621.866418pt;}
.y46{bottom:622.026418pt;}
.y15{bottom:622.186418pt;}
.yf2{bottom:622.826418pt;}
.y67{bottom:623.786417pt;}
.y10c{bottom:634.666413pt;}
.yd0{bottom:640.106411pt;}
.y14{bottom:641.066410pt;}
.yb0{bottom:641.866410pt;}
.y66{bottom:642.826410pt;}
.y10b{bottom:654.666405pt;}
.ycf{bottom:659.146403pt;}
.y45{bottom:659.946403pt;}
.y13{bottom:660.106403pt;}
.yaf{bottom:660.906402pt;}
.y65{bottom:661.866402pt;}
.y10a{bottom:673.546397pt;}
.yce{bottom:678.186395pt;}
.y8e{bottom:678.986395pt;}
.y12{bottom:679.946395pt;}
.ya3{bottom:680.746394pt;}
.y64{bottom:680.906394pt;}
.y109{bottom:693.546389pt;}
.ycd{bottom:697.226388pt;}
.y44{bottom:698.986387pt;}
.y63{bottom:699.946387pt;}
.ya2{bottom:700.746386pt;}
.y11{bottom:702.186386pt;}
.y108{bottom:713.546381pt;}
.ycc{bottom:716.106380pt;}
.y43{bottom:718.026379pt;}
.y62{bottom:718.826379pt;}
.ya1{bottom:719.786379pt;}
.y10{bottom:723.626377pt;}
.y107{bottom:732.426374pt;}
.ycb{bottom:736.106372pt;}
.y42{bottom:736.906372pt;}
.y8d{bottom:737.066372pt;}
.y61{bottom:737.866372pt;}
.ya0{bottom:738.826371pt;}
.yf{bottom:742.506370pt;}
.y106{bottom:752.426366pt;}
.yca{bottom:755.146365pt;}
.y8c{bottom:756.106364pt;}
.y41{bottom:756.906364pt;}
.y9f{bottom:757.866364pt;}
.ye{bottom:760.746362pt;}
.y105{bottom:771.466358pt;}
.y8b{bottom:775.146357pt;}
.y40{bottom:775.946356pt;}
.y9e{bottom:776.906356pt;}
.yd{bottom:779.146355pt;}
.y104{bottom:791.466350pt;}
.y8a{bottom:794.026349pt;}
.y3f{bottom:794.986349pt;}
.y9d{bottom:795.946348pt;}
.yc{bottom:798.986347pt;}
.y103{bottom:810.346343pt;}
.y89{bottom:813.066341pt;}
.y3e{bottom:814.026341pt;}
.y9c{bottom:814.986341pt;}
.yb{bottom:821.066338pt;}
.y102{bottom:830.346335pt;}
.y88{bottom:832.106334pt;}
.y60{bottom:832.906334pt;}
.y3d{bottom:833.066333pt;}
.y9b{bottom:833.866333pt;}
.ya{bottom:843.306329pt;}
.y101{bottom:850.186327pt;}
.y87{bottom:851.146326pt;}
.y92{bottom:851.946326pt;}
.y3c{bottom:852.106326pt;}
.y5f{bottom:852.906326pt;}
.y9{bottom:865.546320pt;}
.y100{bottom:870.186319pt;}
.y3b{bottom:870.986318pt;}
.y7e{bottom:871.146318pt;}
.y5e{bottom:871.946318pt;}
.y8{bottom:887.786312pt;}
.yff{bottom:889.226311pt;}
.y86{bottom:890.026311pt;}
.y7d{bottom:890.186311pt;}
.y3a{bottom:890.986310pt;}
.y7{bottom:909.066303pt;}
.y39{bottom:910.026303pt;}
.y6{bottom:928.106295pt;}
.y38{bottom:929.066295pt;}
.y36{bottom:949.546287pt;}
.y5b{bottom:951.946286pt;}
.y35{bottom:968.426279pt;}
.y5{bottom:987.466272pt;}
.y4{bottom:1005.866264pt;}
.y3{bottom:1024.266257pt;}
.y2{bottom:1042.666250pt;}
.y1{bottom:1061.066242pt;}
.h7{height:33.599987pt;}
.hb{height:34.475506pt;}
.h8{height:38.591985pt;}
.h3{height:40.650224pt;}
.hc{height:42.708463pt;}
.he{height:44.799982pt;}
.hf{height:45.721358pt;}
.h6{height:47.339501pt;}
.h5{height:48.255981pt;}
.h2{height:51.455979pt;}
.hd{height:52.134354pt;}
.h9{height:57.920000pt;}
.h4{height:60.203496pt;}
.h1{height:62.812475pt;}
.ha{height:263.969174pt;}
.h0{height:1122.666667pt;}
.w1{width:47.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:151.199940pt;}
.x1{left:155.039938pt;}
.x29{left:166.559933pt;}
.x23{left:170.080564pt;}
.x2{left:172.639941pt;}
.x12{left:173.919469pt;}
.x3{left:186.719925pt;}
.x30{left:187.839925pt;}
.x16{left:202.079485pt;}
.x13{left:249.439900pt;}
.x20{left:258.719897pt;}
.x7{left:268.959963pt;}
.x21{left:270.239892pt;}
.x8{left:278.559958pt;}
.x2a{left:297.279881pt;}
.x24{left:308.639877pt;}
.x25{left:313.439875pt;}
.x5{left:315.999841pt;}
.x18{left:319.199872pt;}
.x26{left:321.119872pt;}
.x9{left:323.679871pt;}
.x11{left:326.719869pt;}
.xa{left:328.959868pt;}
.x10{left:338.880070pt;}
.x4{left:341.439863pt;}
.x19{left:350.399860pt;}
.x1a{left:356.639857pt;}
.xb{left:358.079857pt;}
.x1b{left:359.039856pt;}
.x1c{left:365.119854pt;}
.xc{left:366.719853pt;}
.x6{left:398.719841pt;}
.x22{left:400.959840pt;}
.x15{left:408.319946pt;}
.x1d{left:409.759836pt;}
.x1e{left:415.839834pt;}
.x28{left:422.399831pt;}
.x31{left:424.479830pt;}
.xd{left:427.999829pt;}
.x32{left:432.479827pt;}
.xe{left:436.639825pt;}
.x1f{left:443.039823pt;}
.x2c{left:466.719813pt;}
.xf{left:473.919810pt;}
.x2d{left:482.719807pt;}
.x14{left:501.599762pt;}
.x2b{left:505.279798pt;}
.x2e{left:516.159794pt;}
.x2f{left:548.159781pt;}
.x27{left:618.719753pt;}
}




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