
    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_3ec978e9dec98af8c51dc9f2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_9885b4839f9c9ad83d14ccf1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_6a5e5c200ca4d31e41a324bc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_ea379bab2b94eb69ddc1ebfa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_618e89037e5b413d2c4cd86b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_88713719881b5befe1675040.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_15cea574a84a6ba5058af657.woff')format("woff");}.ff8{font-family:ff8;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_dd1714281fb2944dbd628305.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861328;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_73dd5e292a8c3e84ff000ca5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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:ffc;src:url('chunks/assets/font_ab3ccbb46b6be224bd562591.woff')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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.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);}
.m3{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);}
.m4{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);}
.m2{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);}
.m5{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;}
.v1{vertical-align:1.439999px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.182573px;}
.ls8{letter-spacing:0.728254px;}
.ls7{letter-spacing:4.334924px;}
.ls6{letter-spacing:8.656801px;}
.ls2{letter-spacing:8.834469px;}
.ls5{letter-spacing:31.134168px;}
.ls0{letter-spacing:34.015846px;}
.ls1{letter-spacing:62.140415px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-35.999986px;}
.ws0{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.011994px;}
.ws3{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws6{word-spacing:-13.505755px;}
.ws1{word-spacing:-12.059995px;}
.ws7{word-spacing:0.000000px;}
._26{margin-left:-8.508085px;}
._6{margin-left:-6.866459px;}
._5{margin-left:-5.712460px;}
._4{margin-left:-3.715523px;}
._17{margin-left:-2.607024px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._9{width:2.462154px;}
._f{width:3.582957px;}
._8{width:4.675050px;}
._b{width:5.909655px;}
._a{width:7.467181px;}
._10{width:8.964538px;}
._15{width:10.777741px;}
._c{width:11.816266px;}
._18{width:12.824803px;}
._7{width:13.848725px;}
._25{width:14.975157px;}
._e{width:16.026351px;}
._12{width:20.016539px;}
._11{width:21.158839px;}
._13{width:23.124613px;}
._19{width:24.477878px;}
._1a{width:25.634146px;}
._16{width:29.370913px;}
._d{width:30.398350px;}
._14{width:40.664844px;}
._1b{width:66.775121px;}
._2{width:82.287887px;}
._28{width:84.566317px;}
._27{width:135.757214px;}
._32{width:146.853095px;}
._29{width:151.531660px;}
._2a{width:153.297179px;}
._2b{width:200.310038px;}
._33{width:209.106324px;}
._2e{width:219.558975px;}
._38{width:236.309665px;}
._1d{width:242.814796px;}
._37{width:254.780844px;}
._34{width:258.837106px;}
._30{width:271.872955px;}
._3b{width:279.535568px;}
._2c{width:291.776682px;}
._36{width:294.835837px;}
._35{width:319.266831px;}
._2f{width:329.265630px;}
._39{width:337.518583px;}
._24{width:342.328224px;}
._1c{width:357.023896px;}
._3c{width:365.265934px;}
._1e{width:393.810299px;}
._46{width:468.336972px;}
._41{width:480.584270px;}
._22{width:485.309229px;}
._47{width:498.634992px;}
._40{width:510.162094px;}
._44{width:528.933609px;}
._20{width:537.293232px;}
._3e{width:540.460711px;}
._45{width:574.291627px;}
._42{width:586.538837px;}
._43{width:603.489453px;}
._3d{width:615.740248px;}
._3f{width:616.848428px;}
._21{width:625.560941px;}
._1f{width:751.585787px;}
._23{width:786.015743px;}
._31{width:805.614565px;}
._2d{width:840.044946px;}
._3a{width:876.045250px;}
._3{width:2493.568870px;}
.fcc{color:transparent;}
.fc9{color:rgb(44,62,80);}
.fc8{color:rgb(0,32,96);}
.fc7{color:rgb(83,129,53);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(0,176,80);}
.fca{color:rgb(51,51,51);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y6{bottom:-10.079991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.480235px;}
.y18{bottom:2.699118px;}
.ya7{bottom:3.958951px;}
.y3b{bottom:3.958978px;}
.y97{bottom:3.959154px;}
.y14{bottom:4.319107px;}
.y3e{bottom:4.498953px;}
.y36{bottom:4.498989px;}
.y16{bottom:4.499106px;}
.y9{bottom:33.060287px;}
.y8{bottom:55.380278px;}
.y34{bottom:129.179948px;}
.ye1{bottom:143.399943px;}
.y78{bottom:150.959940px;}
.y90{bottom:153.119939px;}
.ya4{bottom:159.779936px;}
.y61{bottom:163.019935px;}
.y33{bottom:172.379931px;}
.ye0{bottom:174.359930px;}
.y77{bottom:182.099927px;}
.y8f{bottom:184.079926px;}
.y60{bottom:193.979922px;}
.ya3{bottom:202.979919px;}
.yc2{bottom:205.319918px;}
.ydf{bottom:205.499918px;}
.y76{bottom:213.059915px;}
.y32{bottom:215.399914px;}
.y5f{bottom:225.119910px;}
.y8e{bottom:227.099909px;}
.yde{bottom:236.459905px;}
.yc1{bottom:242.399903px;}
.y75{bottom:244.199902px;}
.ya2{bottom:245.999902px;}
.y5e{bottom:256.079898px;}
.y22{bottom:257.699897px;}
.ydd{bottom:267.599893px;}
.y8d{bottom:270.299892px;}
.y74{bottom:275.159890px;}
.yc0{bottom:279.479888px;}
.y5d{bottom:287.219885px;}
.ya1{bottom:289.019884px;}
.y43{bottom:299.819880px;}
.y8c{bottom:301.259879px;}
.y73{bottom:306.299877px;}
.ydc{bottom:310.619876px;}
.ybf{bottom:317.459873px;}
.y5c{bottom:318.179873px;}
.y42{bottom:319.439872px;}
.ya0{bottom:332.039867px;}
.y8b{bottom:332.399867px;}
.y72{bottom:337.259865px;}
.y41{bottom:339.239864px;}
.y5b{bottom:349.319860px;}
.ydb{bottom:353.639859px;}
.ybe{bottom:354.359858px;}
.y40{bottom:358.859856px;}
.y9f{bottom:362.999855px;}
.y8a{bottom:363.359855px;}
.y3f{bottom:378.659849px;}
.y5a{bottom:380.279848px;}
.yda{bottom:384.779846px;}
.ybd{bottom:391.439843px;}
.y21{bottom:393.239843px;}
.y9e{bottom:394.139842px;}
.y89{bottom:394.499842px;}
.y71{bottom:411.419835px;}
.yd9{bottom:415.739834px;}
.y59{bottom:423.299831px;}
.y9d{bottom:425.099830px;}
.y31{bottom:428.159829px;}
.ybc{bottom:429.419828px;}
.y88{bottom:437.519825px;}
.y70{bottom:442.379823px;}
.yd8{bottom:446.879821px;}
.y30{bottom:447.959821px;}
.y9c{bottom:456.959817px;}
.ybb{bottom:466.319813px;}
.y58{bottom:466.499813px;}
.y6f{bottom:473.519811px;}
.yd7{bottom:477.839809px;}
.y2f{bottom:478.559809px;}
.y87{bottom:480.539808px;}
.y20{bottom:480.719808px;}
.y9b{bottom:488.819804px;}
.y2e{bottom:497.279801px;}
.y57{bottom:497.459801px;}
.yba{bottom:503.399799px;}
.y6e{bottom:504.479798px;}
.yd6{bottom:508.979796px;}
.y86{bottom:511.499795px;}
.y1f{bottom:515.459794px;}
.y2d{bottom:515.819794px;}
.y9a{bottom:520.499792px;}
.ye4{bottom:523.559791px;}
.y56{bottom:528.599789px;}
.y1e{bottom:532.199787px;}
.y2c{bottom:534.359786px;}
.y6d{bottom:535.619786px;}
.yd5{bottom:539.939784px;}
.yb9{bottom:541.379783px;}
.y85{bottom:542.639783px;}
.y1d{bottom:548.939780px;}
.y99{bottom:552.359779px;}
.y55{bottom:559.559776px;}
.y2b{bottom:563.699775px;}
.y6c{bottom:566.579773px;}
.yd4{bottom:571.079772px;}
.y84{bottom:573.599771px;}
.yb8{bottom:578.279769px;}
.y2a{bottom:580.979768px;}
.y1c{bottom:583.679767px;}
.y98{bottom:584.219766px;}
.y54{bottom:590.699764px;}
.y6b{bottom:597.719761px;}
.y29{bottom:598.259761px;}
.yd3{bottom:602.039759px;}
.yb7{bottom:603.659759px;}
.ye3{bottom:609.599756px;}
.y96{bottom:611.940600px;}
.y28{bottom:615.539754px;}
.y95{bottom:615.899754px;}
.y83{bottom:616.619753px;}
.y1b{bottom:618.419753px;}
.y53{bottom:621.659751px;}
.y6a{bottom:628.679749px;}
.y27{bottom:632.639747px;}
.yd2{bottom:632.999747px;}
.yb6{bottom:649.379740px;}
.y26{bottom:649.919740px;}
.y52{bottom:652.619739px;}
.y1a{bottom:653.159739px;}
.y69{bottom:659.819736px;}
.yd1{bottom:664.139734px;}
.y25{bottom:667.199733px;}
.y19{bottom:670.079732px;}
.yb5{bottom:671.159732px;}
.y51{bottom:683.759726px;}
.y24{bottom:684.479726px;}
.y82{bottom:690.779724px;}
.yb4{bottom:696.719721px;}
.y23{bottom:701.399719px;}
.y17{bottom:701.580600px;}
.y68{bottom:702.839719px;}
.yd0{bottom:707.159717px;}
.y50{bottom:714.719714px;}
.y81{bottom:721.919711px;}
.y13{bottom:729.300600px;}
.y15{bottom:733.799706px;}
.yb3{bottom:739.919704px;}
.y67{bottom:745.859702px;}
.ycf{bottom:750.179700px;}
.y80{bottom:752.879699px;}
.y4f{bottom:757.919697px;}
.y12{bottom:764.579694px;}
.y94{bottom:764.939694px;}
.yb2{bottom:770.879692px;}
.y66{bottom:776.819689px;}
.y7f{bottom:784.019686px;}
.yce{bottom:784.559686px;}
.y11{bottom:795.539682px;}
.y93{bottom:795.899682px;}
.y4e{bottom:800.939680px;}
.yb1{bottom:802.019679px;}
.y65{bottom:807.959677px;}
.ycd{bottom:816.239674px;}
.yf{bottom:826.679669px;}
.y7e{bottom:827.039669px;}
.y4d{bottom:831.899667px;}
.y10{bottom:833.519667px;}
.yb0{bottom:834.599666px;}
.y64{bottom:838.919664px;}
.ycc{bottom:848.099661px;}
.ye{bottom:857.639657px;}
.y4c{bottom:863.039655px;}
.yaf{bottom:867.359653px;}
.y63{bottom:870.059652px;}
.ycb{bottom:879.779648px;}
.y92{bottom:882.119647px;}
.yd{bottom:888.599645px;}
.y4b{bottom:893.999642px;}
.yae{bottom:900.119640px;}
.y7d{bottom:901.019640px;}
.yca{bottom:911.459635px;}
.y62{bottom:913.079635px;}
.yc{bottom:919.739632px;}
.y4a{bottom:925.139630px;}
.yad{bottom:931.799627px;}
.y7c{bottom:932.159627px;}
.yc9{bottom:943.319623px;}
.y91{bottom:944.219622px;}
.y49{bottom:956.099618px;}
.yb{bottom:962.759615px;}
.yac{bottom:963.659615px;}
.yc8{bottom:974.999610px;}
.y7b{bottom:975.179610px;}
.y48{bottom:987.239605px;}
.ya{bottom:993.899602px;}
.yab{bottom:995.519602px;}
.yc7{bottom:1006.859597px;}
.y47{bottom:1018.199593px;}
.y35{bottom:1021.800600px;}
.yaa{bottom:1027.199589px;}
.ye2{bottom:1030.259588px;}
.y3c{bottom:1034.399586px;}
.yc6{bottom:1038.539585px;}
.y46{bottom:1049.339580px;}
.y3a{bottom:1050.240600px;}
.y39{bottom:1054.199578px;}
.ya9{bottom:1059.059576px;}
.y7a{bottom:1061.219576px;}
.yc5{bottom:1070.399572px;}
.y45{bottom:1080.299568px;}
.y38{bottom:1085.159566px;}
.ya8{bottom:1090.739564px;}
.y79{bottom:1092.359563px;}
.yc4{bottom:1102.079559px;}
.y37{bottom:1112.699555px;}
.y3d{bottom:1112.700600px;}
.ya6{bottom:1118.640600px;}
.ya5{bottom:1122.599551px;}
.y44{bottom:1123.319551px;}
.yc3{bottom:1127.279549px;}
.y4{bottom:1144.559542px;}
.y7{bottom:1173.719531px;}
.y3{bottom:1176.239530px;}
.y2{bottom:1193.519523px;}
.y1{bottom:1210.799516px;}
.h3{height:5.760000px;}
.he{height:14.040000px;}
.h14{height:18.180000px;}
.ha{height:20.160000px;}
.h12{height:20.340000px;}
.h15{height:20.520000px;}
.h9{height:33.518307px;}
.hf{height:33.706744px;}
.h4{height:36.703110px;}
.h16{height:36.914048px;}
.hc{height:38.759750px;}
.h10{height:39.313461px;}
.h1{height:41.522679px;}
.h5{height:42.894123px;}
.h11{height:42.962678px;}
.hb{height:44.149201px;}
.hd{height:45.281232px;}
.h2{height:47.545293px;}
.h6{height:48.796855px;}
.h8{height:50.027324px;}
.h7{height:52.417948px;}
.h13{height:57.585914px;}
.h0{height:1263.000000px;}
.wc{width:3.420000px;}
.w4{width:3.600000px;}
.wd{width:4.500000px;}
.wa{width:7.020000px;}
.w7{width:8.100000px;}
.w6{width:8.280000px;}
.w2{width:9.720000px;}
.wb{width:11.340000px;}
.w5{width:33.840000px;}
.w3{width:58.500000px;}
.w8{width:70.200000px;}
.w9{width:113.580000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x19{left:100.979960px;}
.x17{left:102.599959px;}
.x16{left:105.119958px;}
.x1{left:107.999957px;}
.x1a{left:113.759954px;}
.x13{left:116.640000px;}
.x4{left:118.979952px;}
.x15{left:121.319882px;}
.xd{left:125.460000px;}
.x27{left:135.000021px;}
.x9{left:137.519945px;}
.x7{left:139.499790px;}
.x18{left:159.299936px;}
.x28{left:162.000016px;}
.x2b{left:167.040000px;}
.xa{left:173.519931px;}
.x2c{left:179.999928px;}
.xe{left:183.960000px;}
.xb{left:185.759926px;}
.xf{left:187.560000px;}
.xc{left:213.659944px;}
.x5{left:221.760735px;}
.x8{left:224.100242px;}
.x14{left:230.220000px;}
.x1b{left:243.179897px;}
.x1c{left:244.259902px;}
.x1f{left:246.600000px;}
.x10{left:265.860000px;}
.x6{left:283.859886px;}
.x11{left:288.180000px;}
.x26{left:294.839882px;}
.x1e{left:301.319879px;}
.x2{left:302.579879px;}
.x1d{left:343.439874px;}
.x12{left:358.200000px;}
.x23{left:364.859854px;}
.x20{left:371.519797px;}
.x21{left:543.239783px;}
.x24{left:582.479767px;}
.x29{left:611.820000px;}
.x2a{left:623.699751px;}
.x22{left:648.720000px;}
.x3{left:666.359733px;}
.x25{left:668.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.162287pt;}
.ls8{letter-spacing:0.647337pt;}
.ls7{letter-spacing:3.853266pt;}
.ls6{letter-spacing:7.694934pt;}
.ls2{letter-spacing:7.852861pt;}
.ls5{letter-spacing:27.674816pt;}
.ls0{letter-spacing:30.236308pt;}
.ls1{letter-spacing:55.235925pt;}
.ws8{word-spacing:-31.999987pt;}
.ws0{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws3{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws6{word-spacing:-12.005115pt;}
.ws1{word-spacing:-10.719996pt;}
.ws7{word-spacing:0.000000pt;}
._26{margin-left:-7.562742pt;}
._6{margin-left:-6.103519pt;}
._5{margin-left:-5.077742pt;}
._4{margin-left:-3.302687pt;}
._17{margin-left:-2.317355pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._9{width:2.188582pt;}
._f{width:3.184850pt;}
._8{width:4.155600pt;}
._b{width:5.253026pt;}
._a{width:6.637494pt;}
._10{width:7.968478pt;}
._15{width:9.580214pt;}
._c{width:10.503348pt;}
._18{width:11.399825pt;}
._7{width:12.309978pt;}
._25{width:13.311250pt;}
._e{width:14.245645pt;}
._12{width:17.792479pt;}
._11{width:18.807857pt;}
._13{width:20.555211pt;}
._19{width:21.758114pt;}
._1a{width:22.785907pt;}
._16{width:26.107478pt;}
._d{width:27.020755pt;}
._14{width:36.146528pt;}
._1b{width:59.355663pt;}
._2{width:73.144789pt;}
._28{width:75.170059pt;}
._27{width:120.673079pt;}
._32{width:130.536084pt;}
._29{width:134.694809pt;}
._2a{width:136.264160pt;}
._2b{width:178.053367pt;}
._33{width:185.872288pt;}
._2e{width:195.163533pt;}
._38{width:210.053036pt;}
._1d{width:215.835374pt;}
._37{width:226.471862pt;}
._34{width:230.077428pt;}
._30{width:241.664849pt;}
._3b{width:248.476061pt;}
._2c{width:259.357051pt;}
._36{width:262.076299pt;}
._35{width:283.792739pt;}
._2f{width:292.680560pt;}
._39{width:300.016518pt;}
._24{width:304.291755pt;}
._1c{width:317.354574pt;}
._3c{width:324.680830pt;}
._1e{width:350.053599pt;}
._46{width:416.299531pt;}
._41{width:427.186018pt;}
._22{width:431.385981pt;}
._47{width:443.231104pt;}
._40{width:453.477416pt;}
._44{width:470.163208pt;}
._20{width:477.593984pt;}
._3e{width:480.409521pt;}
._45{width:510.481446pt;}
._42{width:521.367855pt;}
._43{width:536.435069pt;}
._3d{width:547.324665pt;}
._3f{width:548.309714pt;}
._21{width:556.054169pt;}
._1f{width:668.076255pt;}
._23{width:698.680660pt;}
._31{width:716.101836pt;}
._2d{width:746.706619pt;}
._3a{width:778.706889pt;}
._3{width:2216.505662pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y6{bottom:-8.959992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.426875pt;}
.y18{bottom:2.399216pt;}
.ya7{bottom:3.519068pt;}
.y3b{bottom:3.519092pt;}
.y97{bottom:3.519248pt;}
.y14{bottom:3.839206pt;}
.y3e{bottom:3.999069pt;}
.y36{bottom:3.999102pt;}
.y16{bottom:3.999206pt;}
.y9{bottom:29.386922pt;}
.y8{bottom:49.226914pt;}
.y34{bottom:114.826621pt;}
.ye1{bottom:127.466616pt;}
.y78{bottom:134.186613pt;}
.y90{bottom:136.106612pt;}
.ya4{bottom:142.026610pt;}
.y61{bottom:144.906609pt;}
.y33{bottom:153.226605pt;}
.ye0{bottom:154.986605pt;}
.y77{bottom:161.866602pt;}
.y8f{bottom:163.626601pt;}
.y60{bottom:172.426598pt;}
.ya3{bottom:180.426594pt;}
.yc2{bottom:182.506594pt;}
.ydf{bottom:182.666594pt;}
.y76{bottom:189.386591pt;}
.y32{bottom:191.466590pt;}
.y5f{bottom:200.106587pt;}
.y8e{bottom:201.866586pt;}
.yde{bottom:210.186583pt;}
.yc1{bottom:215.466580pt;}
.y75{bottom:217.066580pt;}
.ya2{bottom:218.666579pt;}
.y5e{bottom:227.626576pt;}
.y22{bottom:229.066575pt;}
.ydd{bottom:237.866572pt;}
.y8d{bottom:240.266571pt;}
.y74{bottom:244.586569pt;}
.yc0{bottom:248.426567pt;}
.y5d{bottom:255.306565pt;}
.ya1{bottom:256.906564pt;}
.y43{bottom:266.506560pt;}
.y8c{bottom:267.786560pt;}
.y73{bottom:272.266558pt;}
.ydc{bottom:276.106556pt;}
.ybf{bottom:282.186554pt;}
.y5c{bottom:282.826554pt;}
.y42{bottom:283.946553pt;}
.ya0{bottom:295.146549pt;}
.y8b{bottom:295.466548pt;}
.y72{bottom:299.786547pt;}
.y41{bottom:301.546546pt;}
.y5b{bottom:310.506542pt;}
.ydb{bottom:314.346541pt;}
.ybe{bottom:314.986541pt;}
.y40{bottom:318.986539pt;}
.y9f{bottom:322.666538pt;}
.y8a{bottom:322.986537pt;}
.y3f{bottom:336.586532pt;}
.y5a{bottom:338.026531pt;}
.yda{bottom:342.026530pt;}
.ybd{bottom:347.946527pt;}
.y21{bottom:349.546527pt;}
.y9e{bottom:350.346527pt;}
.y89{bottom:350.666526pt;}
.y71{bottom:365.706520pt;}
.yd9{bottom:369.546519pt;}
.y59{bottom:376.266516pt;}
.y9d{bottom:377.866516pt;}
.y31{bottom:380.586514pt;}
.ybc{bottom:381.706514pt;}
.y88{bottom:388.906511pt;}
.y70{bottom:393.226509pt;}
.yd8{bottom:397.226508pt;}
.y30{bottom:398.186507pt;}
.y9c{bottom:406.186504pt;}
.ybb{bottom:414.506501pt;}
.y58{bottom:414.666501pt;}
.y6f{bottom:420.906498pt;}
.yd7{bottom:424.746497pt;}
.y2f{bottom:425.386497pt;}
.y87{bottom:427.146496pt;}
.y20{bottom:427.306496pt;}
.y9b{bottom:434.506493pt;}
.y2e{bottom:442.026490pt;}
.y57{bottom:442.186490pt;}
.yba{bottom:447.466488pt;}
.y6e{bottom:448.426487pt;}
.yd6{bottom:452.426486pt;}
.y86{bottom:454.666485pt;}
.y1f{bottom:458.186483pt;}
.y2d{bottom:458.506483pt;}
.y9a{bottom:462.666482pt;}
.ye4{bottom:465.386481pt;}
.y56{bottom:469.866479pt;}
.y1e{bottom:473.066477pt;}
.y2c{bottom:474.986477pt;}
.y6d{bottom:476.106476pt;}
.yd5{bottom:479.946475pt;}
.yb9{bottom:481.226474pt;}
.y85{bottom:482.346474pt;}
.y1d{bottom:487.946471pt;}
.y99{bottom:490.986470pt;}
.y55{bottom:497.386468pt;}
.y2b{bottom:501.066466pt;}
.y6c{bottom:503.626465pt;}
.yd4{bottom:507.626464pt;}
.y84{bottom:509.866463pt;}
.yb8{bottom:514.026461pt;}
.y2a{bottom:516.426460pt;}
.y1c{bottom:518.826459pt;}
.y98{bottom:519.306459pt;}
.y54{bottom:525.066457pt;}
.y6b{bottom:531.306454pt;}
.y29{bottom:531.786454pt;}
.yd3{bottom:535.146453pt;}
.yb7{bottom:536.586452pt;}
.ye3{bottom:541.866450pt;}
.y96{bottom:543.947200pt;}
.y28{bottom:547.146448pt;}
.y95{bottom:547.466448pt;}
.y83{bottom:548.106447pt;}
.y1b{bottom:549.706447pt;}
.y53{bottom:552.586446pt;}
.y6a{bottom:558.826443pt;}
.y27{bottom:562.346442pt;}
.yd2{bottom:562.666442pt;}
.yb6{bottom:577.226436pt;}
.y26{bottom:577.706436pt;}
.y52{bottom:580.106435pt;}
.y1a{bottom:580.586434pt;}
.y69{bottom:586.506432pt;}
.yd1{bottom:590.346431pt;}
.y25{bottom:593.066429pt;}
.y19{bottom:595.626428pt;}
.yb5{bottom:596.586428pt;}
.y51{bottom:607.786424pt;}
.y24{bottom:608.426423pt;}
.y82{bottom:614.026421pt;}
.yb4{bottom:619.306419pt;}
.y23{bottom:623.466417pt;}
.y17{bottom:623.627200pt;}
.y68{bottom:624.746417pt;}
.yd0{bottom:628.586415pt;}
.y50{bottom:635.306413pt;}
.y81{bottom:641.706410pt;}
.y13{bottom:648.267200pt;}
.y15{bottom:652.266406pt;}
.yb3{bottom:657.706404pt;}
.y67{bottom:662.986401pt;}
.ycf{bottom:666.826400pt;}
.y80{bottom:669.226399pt;}
.y4f{bottom:673.706397pt;}
.y12{bottom:679.626395pt;}
.y94{bottom:679.946395pt;}
.yb2{bottom:685.226393pt;}
.y66{bottom:690.506390pt;}
.y7f{bottom:696.906388pt;}
.yce{bottom:697.386388pt;}
.y11{bottom:707.146384pt;}
.y93{bottom:707.466384pt;}
.y4e{bottom:711.946382pt;}
.yb1{bottom:712.906382pt;}
.y65{bottom:718.186379pt;}
.ycd{bottom:725.546376pt;}
.yf{bottom:734.826373pt;}
.y7e{bottom:735.146373pt;}
.y4d{bottom:739.466371pt;}
.y10{bottom:740.906370pt;}
.yb0{bottom:741.866370pt;}
.y64{bottom:745.706368pt;}
.ycc{bottom:753.866365pt;}
.ye{bottom:762.346362pt;}
.y4c{bottom:767.146360pt;}
.yaf{bottom:770.986358pt;}
.y63{bottom:773.386357pt;}
.ycb{bottom:782.026354pt;}
.y92{bottom:784.106353pt;}
.yd{bottom:789.866351pt;}
.y4b{bottom:794.666349pt;}
.yae{bottom:800.106347pt;}
.y7d{bottom:800.906346pt;}
.yca{bottom:810.186343pt;}
.y62{bottom:811.626342pt;}
.yc{bottom:817.546340pt;}
.y4a{bottom:822.346338pt;}
.yad{bottom:828.266335pt;}
.y7c{bottom:828.586335pt;}
.yc9{bottom:838.506331pt;}
.y91{bottom:839.306331pt;}
.y49{bottom:849.866327pt;}
.yb{bottom:855.786324pt;}
.yac{bottom:856.586324pt;}
.yc8{bottom:866.666320pt;}
.y7b{bottom:866.826320pt;}
.y48{bottom:877.546316pt;}
.ya{bottom:883.466313pt;}
.yab{bottom:884.906313pt;}
.yc7{bottom:894.986309pt;}
.y47{bottom:905.066305pt;}
.y35{bottom:908.267200pt;}
.yaa{bottom:913.066301pt;}
.ye2{bottom:915.786300pt;}
.y3c{bottom:919.466299pt;}
.yc6{bottom:923.146297pt;}
.y46{bottom:932.746294pt;}
.y3a{bottom:933.547200pt;}
.y39{bottom:937.066292pt;}
.ya9{bottom:941.386290pt;}
.y7a{bottom:943.306289pt;}
.yc5{bottom:951.466286pt;}
.y45{bottom:960.266283pt;}
.y38{bottom:964.586281pt;}
.ya8{bottom:969.546279pt;}
.y79{bottom:970.986278pt;}
.yc4{bottom:979.626275pt;}
.y37{bottom:989.066271pt;}
.y3d{bottom:989.067200pt;}
.ya6{bottom:994.347200pt;}
.ya5{bottom:997.866268pt;}
.y44{bottom:998.506267pt;}
.yc3{bottom:1002.026266pt;}
.y4{bottom:1017.386260pt;}
.y7{bottom:1043.306249pt;}
.y3{bottom:1045.546248pt;}
.y2{bottom:1060.906242pt;}
.y1{bottom:1076.266236pt;}
.h3{height:5.120000pt;}
.he{height:12.480000pt;}
.h14{height:16.160000pt;}
.ha{height:17.920000pt;}
.h12{height:18.080000pt;}
.h15{height:18.240000pt;}
.h9{height:29.794051pt;}
.hf{height:29.961551pt;}
.h4{height:32.624987pt;}
.h16{height:32.812487pt;}
.hc{height:34.453111pt;}
.h10{height:34.945299pt;}
.h1{height:36.909048pt;}
.h5{height:38.128110pt;}
.h11{height:38.189047pt;}
.hb{height:39.243734pt;}
.hd{height:40.249984pt;}
.h2{height:42.262483pt;}
.h6{height:43.374983pt;}
.h8{height:44.468732pt;}
.h7{height:46.593731pt;}
.h13{height:51.187480pt;}
.h0{height:1122.666667pt;}
.wc{width:3.040000pt;}
.w4{width:3.200000pt;}
.wd{width:4.000000pt;}
.wa{width:6.240000pt;}
.w7{width:7.200000pt;}
.w6{width:7.360000pt;}
.w2{width:8.640000pt;}
.wb{width:10.080000pt;}
.w5{width:30.080000pt;}
.w3{width:52.000000pt;}
.w8{width:62.400000pt;}
.w9{width:100.960000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x19{left:89.759964pt;}
.x17{left:91.199964pt;}
.x16{left:93.439963pt;}
.x1{left:95.999962pt;}
.x1a{left:101.119960pt;}
.x13{left:103.680000pt;}
.x4{left:105.759958pt;}
.x15{left:107.839895pt;}
.xd{left:111.520000pt;}
.x27{left:120.000018pt;}
.x9{left:122.239951pt;}
.x7{left:123.999813pt;}
.x18{left:141.599943pt;}
.x28{left:144.000014pt;}
.x2b{left:148.480000pt;}
.xa{left:154.239938pt;}
.x2c{left:159.999936pt;}
.xe{left:163.520000pt;}
.xb{left:165.119934pt;}
.xf{left:166.720000pt;}
.xc{left:189.919950pt;}
.x5{left:197.120653pt;}
.x8{left:199.200215pt;}
.x14{left:204.640000pt;}
.x1b{left:216.159908pt;}
.x1c{left:217.119913pt;}
.x1f{left:219.200000pt;}
.x10{left:236.320000pt;}
.x6{left:252.319899pt;}
.x11{left:256.160000pt;}
.x26{left:262.079895pt;}
.x1e{left:267.839893pt;}
.x2{left:268.959892pt;}
.x1d{left:305.279888pt;}
.x12{left:318.400000pt;}
.x23{left:324.319870pt;}
.x20{left:330.239820pt;}
.x21{left:482.879807pt;}
.x24{left:517.759793pt;}
.x29{left:543.840000pt;}
.x2a{left:554.399778pt;}
.x22{left:576.640000pt;}
.x3{left:592.319763pt;}
.x25{left:593.920000pt;}
}




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