
    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_9967474c4c2bc10c71166972.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_50d65b8a16d903d6c105fd36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_1917e4769cf61bbbbb50e9a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_91a08db599fbffebea7535b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_2b0256c22106ea8e36a607ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_c868f866cf6334168625978e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_23efe2b912a59412405b504a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_e881f89017e5e462ff3a4783.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_3c2eb57eccbad1bcaf083e67.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_e77366778e1322b1dce53959.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_2feb476e1415ed1ebf393b79.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_5007aab5c4ae94e54dde4121.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-88.190746px;}
.v5{vertical-align:-86.034346px;}
.v3{vertical-align:-84.153603px;}
.v4{vertical-align:-41.753044px;}
.v7{vertical-align:-2.321946px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:27.398989px;}
.v2{vertical-align:67.013615px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:35.974846px;}
.ls5{letter-spacing:41.974840px;}
.ls4{letter-spacing:41.974844px;}
.ls2{letter-spacing:108.000354px;}
.ls6{letter-spacing:243.080267px;}
.ls1{letter-spacing:323.657310px;}
.ls9{letter-spacing:1428.741208px;}
.lsa{letter-spacing:1430.675011px;}
.lsb{letter-spacing:1430.675047px;}
.lsc{letter-spacing:1432.293054px;}
.ls8{letter-spacing:1440.235351px;}
.ls7{letter-spacing:2166.409627px;}
.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;}
}
.ws14{word-spacing:-85.320003px;}
.ws5{word-spacing:-33.120000px;}
.wsc{word-spacing:-30.000000px;}
.wsb{word-spacing:-29.040000px;}
.wse{word-spacing:-27.240000px;}
.ws0{word-spacing:-24.174000px;}
.ws3{word-spacing:-23.436000px;}
.ws9{word-spacing:-20.904078px;}
.ws8{word-spacing:-20.679303px;}
.ws4{word-spacing:-19.908000px;}
.ws15{word-spacing:-17.490001px;}
.wsf{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.000001px;}
.ws11{word-spacing:-11.712001px;}
.wsd{word-spacing:-10.500000px;}
.ws2{word-spacing:-8.370000px;}
.ws10{word-spacing:-8.280000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:94.047349px;}
.ws6{word-spacing:261.019117px;}
.ws13{word-spacing:1815.078971px;}
.ws12{word-spacing:1818.580376px;}
._31{margin-left:-10.440000px;}
._17{margin-left:-8.991001px;}
._14{margin-left:-7.308000px;}
._1{margin-left:-5.346000px;}
._2{margin-left:-4.212000px;}
._3{margin-left:-3.168000px;}
._0{margin-left:-1.830000px;}
._15{width:1.380000px;}
._32{width:2.520000px;}
._1f{width:3.600000px;}
._a{width:276.189706px;}
._f{width:314.454670px;}
._d{width:342.102952px;}
._c{width:350.334128px;}
._e{width:355.382191px;}
._b{width:356.713365px;}
._20{width:373.177103px;}
._6{width:429.355374px;}
._28{width:430.787050px;}
._4{width:434.148459px;}
._7{width:477.133703px;}
._21{width:483.569736px;}
._19{width:558.674873px;}
._26{width:582.543425px;}
._2a{width:621.095446px;}
._22{width:712.959962px;}
._16{width:748.543982px;}
._10{width:762.428236px;}
._13{width:799.687396px;}
._24{width:821.512801px;}
._5{width:888.029776px;}
._18{width:927.279224px;}
._1a{width:973.339032px;}
._12{width:992.509062px;}
._29{width:1036.913022px;}
._11{width:1047.679284px;}
._9{width:1105.062071px;}
._2f{width:1111.402675px;}
._2e{width:1113.321205px;}
._2c{width:1119.317950px;}
._23{width:1135.861060px;}
._27{width:1185.264354px;}
._8{width:1218.399144px;}
._2b{width:1224.641393px;}
._25{width:1237.483748px;}
._30{width:1524.451848px;}
._2d{width:1712.611724px;}
._1e{width:2186.047274px;}
._1d{width:2505.600241px;}
._1c{width:2508.958816px;}
._1b{width:2775.327600px;}
.fc9{color:rgb(78,77,255);}
.fcb{color:rgb(219,68,55);}
.fca{color:rgb(247,114,90);}
.fc7{color:rgb(106,168,79);}
.fc6{color:rgb(10,186,240);}
.fc5{color:rgb(103,78,167);}
.fc4{color:transparent;}
.fc3{color:rgb(0,144,162);}
.fcc{color:rgb(0,0,0);}
.fc8{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(69,84,107);}
.fc0{color:rgb(138,148,156);}
.fs0{font-size:30.000000px;}
.fsf{font-size:42.000000px;}
.fs5{font-size:48.000003px;}
.fs2{font-size:54.000002px;}
.fs11{font-size:60.000000px;}
.fs8{font-size:62.041799px;}
.fs1{font-size:66.000004px;}
.fse{font-size:68.914199px;}
.fs7{font-size:70.904999px;}
.fsd{font-size:74.925011px;}
.fs6{font-size:84.000000px;}
.fsc{font-size:90.000003px;}
.fs3{font-size:102.000000px;}
.fs10{font-size:107.407803px;}
.fs4{font-size:120.000001px;}
.fsa{font-size:138.000001px;}
.fsb{font-size:252.000008px;}
.fs9{font-size:270.000009px;}
.fs12{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y2f{bottom:10.771631px;}
.y31{bottom:17.393382px;}
.y44{bottom:18.496879px;}
.y59{bottom:19.036879px;}
.y4c{bottom:21.642506px;}
.y2{bottom:21.762017px;}
.y1{bottom:30.762016px;}
.y50{bottom:35.369869px;}
.yd{bottom:40.544566px;}
.y12{bottom:40.544577px;}
.y49{bottom:40.545466px;}
.y91{bottom:40.556734px;}
.y62{bottom:45.013572px;}
.y2a{bottom:45.109973px;}
.y46{bottom:47.360378px;}
.y4d{bottom:48.818379px;}
.y58{bottom:49.545466px;}
.y6{bottom:65.331343px;}
.yc{bottom:87.344567px;}
.y5{bottom:88.011344px;}
.y5c{bottom:92.272428px;}
.y97{bottom:98.668560px;}
.y96{bottom:113.068559px;}
.y20{bottom:113.139693px;}
.y5b{bottom:123.453694px;}
.y22{bottom:124.717823px;}
.y1d{bottom:128.102419px;}
.y83{bottom:128.303366px;}
.y9d{bottom:129.019406px;}
.y3f{bottom:135.639745px;}
.y4{bottom:136.271235px;}
.y82{bottom:137.303366px;}
.yf{bottom:142.182458px;}
.y94{bottom:144.206176px;}
.y19{bottom:145.448254px;}
.y69{bottom:146.358797px;}
.y9c{bottom:148.819407px;}
.y28{bottom:157.135261px;}
.y7f{bottom:161.939832px;}
.y3e{bottom:164.860496px;}
.y9b{bottom:168.619407px;}
.y7e{bottom:170.939832px;}
.ye{bottom:172.762457px;}
.y43{bottom:176.027015px;}
.y7d{bottom:179.939833px;}
.yb{bottom:187.014800px;}
.y9a{bottom:188.419408px;}
.y7c{bottom:188.939833px;}
.y8f{bottom:193.260103px;}
.y5d{bottom:193.580088px;}
.y3d{bottom:194.081247px;}
.y7b{bottom:197.939833px;}
.y6d{bottom:202.712218px;}
.y53{bottom:206.507181px;}
.y7a{bottom:206.939833px;}
.y14{bottom:209.774406px;}
.y8a{bottom:210.116912px;}
.y87{bottom:218.634130px;}
.y6c{bottom:222.962219px;}
.y3c{bottom:223.301998px;}
.ya{bottom:223.734801px;}
.y52{bottom:227.181439px;}
.y79{bottom:238.445741px;}
.y6b{bottom:243.212220px;}
.y8e{bottom:245.728193px;}
.y78{bottom:247.445741px;}
.y71{bottom:251.191519px;}
.y3b{bottom:252.522749px;}
.y1f{bottom:255.182976px;}
.y77{bottom:256.445741px;}
.y18{bottom:260.033245px;}
.y9{bottom:260.454807px;}
.y6a{bottom:263.462220px;}
.y76{bottom:265.445742px;}
.y75{bottom:274.445742px;}
.y11{bottom:275.641980px;}
.y3a{bottom:281.743500px;}
.y74{bottom:283.445742px;}
.y10{bottom:286.641979px;}
.y8{bottom:297.174804px;}
.y27{bottom:297.535861px;}
.y99{bottom:298.275774px;}
.y48{bottom:305.917618px;}
.y39{bottom:310.964251px;}
.y4a{bottom:312.845931px;}
.y1e{bottom:314.480241px;}
.y68{bottom:323.605045px;}
.y4b{bottom:326.524941px;}
.y47{bottom:326.591876px;}
.y95{bottom:328.923880px;}
.y38{bottom:340.185002px;}
.y6f{bottom:341.711204px;}
.y13{bottom:344.975191px;}
.y7{bottom:349.014808px;}
.y23{bottom:353.534876px;}
.y45{bottom:354.404816px;}
.y25{bottom:359.133303px;}
.y2e{bottom:362.387062px;}
.y67{bottom:365.005035px;}
.y37{bottom:369.405753px;}
.y4f{bottom:378.779831px;}
.y70{bottom:380.563575px;}
.y2d{bottom:389.387066px;}
.y36{bottom:398.626504px;}
.y4e{bottom:399.454090px;}
.y98{bottom:406.275772px;}
.y66{bottom:406.405048px;}
.y92{bottom:408.276692px;}
.y73{bottom:411.502550px;}
.y24{bottom:416.334088px;}
.y2c{bottom:416.387065px;}
.y89{bottom:424.913664px;}
.y72{bottom:425.286017px;}
.y35{bottom:427.847255px;}
.y1c{bottom:434.805339px;}
.y26{bottom:436.336071px;}
.y65{bottom:447.805038px;}
.y93{bottom:449.770293px;}
.y30{bottom:455.924297px;}
.y34{bottom:457.068006px;}
.y42{bottom:469.399824px;}
.y21{bottom:471.655335px;}
.y15{bottom:478.737637px;}
.y57{bottom:479.064288px;}
.y33{bottom:486.288757px;}
.y64{bottom:489.205035px;}
.y29{bottom:490.637523px;}
.y16{bottom:492.417752px;}
.y5f{bottom:493.859845px;}
.y51{bottom:497.081395px;}
.y1b{bottom:499.116051px;}
.y56{bottom:499.738546px;}
.y32{bottom:515.509506px;}
.y1a{bottom:520.387552px;}
.y5e{bottom:526.259852px;}
.y2b{bottom:527.292138px;}
.y86{bottom:529.924014px;}
.y63{bottom:530.605031px;}
.y8d{bottom:533.057927px;}
.y80{bottom:536.378357px;}
.y84{bottom:536.520471px;}
.y61{bottom:538.989468px;}
.y17{bottom:541.126417px;}
.y5a{bottom:543.680425px;}
.y88{bottom:550.016042px;}
.y8c{bottom:550.783322px;}
.y85{bottom:567.464646px;}
.y81{bottom:568.046337px;}
.y90{bottom:568.540158px;}
.y8b{bottom:568.541364px;}
.y41{bottom:569.638068px;}
.y60{bottom:571.211814px;}
.y6e{bottom:572.052690px;}
.y55{bottom:574.174810px;}
.y40{bottom:575.976231px;}
.y54{bottom:584.476562px;}
.y3{bottom:595.690479px;}
.h1{height:31.500000px;}
.h15{height:31.504820px;}
.h16{height:31.504824px;}
.h12{height:44.100000px;}
.hb{height:50.400003px;}
.h3{height:56.700002px;}
.h11{height:58.898989px;}
.h14{height:63.000000px;}
.h8{height:65.143889px;}
.h2{height:69.300004px;}
.h10{height:72.359909px;}
.h7{height:74.450249px;}
.he{height:78.671262px;}
.h6{height:88.200000px;}
.hd{height:94.500003px;}
.h4{height:107.100000px;}
.h13{height:112.778194px;}
.h5{height:126.000001px;}
.ha{height:144.900001px;}
.hf{height:155.213615px;}
.hc{height:264.600008px;}
.h9{height:283.500009px;}
.h17{height:378.000012px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3e{left:26.376969px;}
.x24{left:29.737250px;}
.x31{left:31.358269px;}
.x46{left:34.841074px;}
.x34{left:38.420450px;}
.x71{left:39.541614px;}
.x3b{left:41.262088px;}
.x60{left:43.518813px;}
.x4b{left:44.561015px;}
.x68{left:45.661821px;}
.x39{left:48.490404px;}
.x66{left:49.897149px;}
.x6f{left:50.971732px;}
.x40{left:52.198820px;}
.xb{left:53.495978px;}
.x64{left:57.130326px;}
.x32{left:59.089634px;}
.x75{left:66.227768px;}
.x4f{left:69.497158px;}
.x36{left:70.529724px;}
.x61{left:76.518817px;}
.x37{left:90.029724px;}
.x4e{left:95.326535px;}
.x1d{left:108.630421px;}
.xf{left:110.849213px;}
.x52{left:117.434891px;}
.x54{left:121.990988px;}
.x1f{left:124.772383px;}
.x53{left:127.560537px;}
.xd{left:130.475947px;}
.xc{left:136.009035px;}
.x6e{left:142.111807px;}
.x12{left:146.804378px;}
.x59{left:154.407015px;}
.x55{left:179.963785px;}
.x11{left:187.648629px;}
.x73{left:189.957392px;}
.x57{left:204.771602px;}
.x5f{left:212.523842px;}
.x35{left:220.530366px;}
.x23{left:224.429065px;}
.x6a{left:226.949002px;}
.x28{left:232.660510px;}
.x58{left:235.392780px;}
.x65{left:238.583861px;}
.xe{left:249.274241px;}
.x19{left:253.062306px;}
.x38{left:264.448208px;}
.x3a{left:276.803104px;}
.x26{left:279.951934px;}
.x56{left:288.769734px;}
.x72{left:292.007232px;}
.x41{left:301.100342px;}
.x18{left:302.832556px;}
.x21{left:305.614900px;}
.x78{left:312.264872px;}
.x63{left:316.657637px;}
.x43{left:318.814998px;}
.x6c{left:321.882873px;}
.x13{left:323.684234px;}
.x6d{left:329.732635px;}
.x14{left:332.115857px;}
.x77{left:333.914928px;}
.x76{left:336.268305px;}
.x74{left:339.853653px;}
.x67{left:342.717666px;}
.x79{left:345.053149px;}
.x1e{left:352.874687px;}
.x2c{left:354.998518px;}
.x22{left:357.556759px;}
.x4a{left:374.792566px;}
.x6b{left:379.163566px;}
.x2{left:399.702486px;}
.x5b{left:402.146180px;}
.x7d{left:413.863996px;}
.x25{left:423.454851px;}
.x3f{left:427.980577px;}
.x2d{left:433.082488px;}
.x5a{left:440.229355px;}
.x15{left:448.269629px;}
.x2e{left:449.627224px;}
.x4d{left:451.287779px;}
.x48{left:460.050458px;}
.x7a{left:461.695105px;}
.x49{left:492.950570px;}
.x7b{left:496.480984px;}
.x27{left:502.810104px;}
.x62{left:509.868770px;}
.x5e{left:515.518700px;}
.x3d{left:550.151624px;}
.x70{left:560.398912px;}
.x69{left:562.337590px;}
.x1b{left:564.584576px;}
.x2b{left:580.346743px;}
.x42{left:590.702382px;}
.x5c{left:617.415387px;}
.x2f{left:625.949435px;}
.x1c{left:633.533328px;}
.x5d{left:641.483278px;}
.x4{left:651.666109px;}
.x20{left:654.419800px;}
.x8{left:656.821461px;}
.x6{left:662.620148px;}
.x3{left:692.001006px;}
.x7{left:696.506465px;}
.x5{left:702.770767px;}
.x9{left:703.923806px;}
.x81{left:706.136732px;}
.x16{left:729.086131px;}
.x17{left:732.923110px;}
.x7e{left:739.313287px;}
.x47{left:741.116026px;}
.x33{left:754.331762px;}
.x7f{left:759.338271px;}
.x29{left:762.683896px;}
.xa{left:764.165207px;}
.x80{left:771.413458px;}
.x10{left:773.516264px;}
.x1a{left:783.840223px;}
.x4c{left:863.913146px;}
.x3c{left:874.098697px;}
.x1{left:885.918741px;}
.x2a{left:901.032903px;}
.x44{left:925.198102px;}
.x51{left:938.996067px;}
.x50{left:954.577504px;}
.x7c{left:1018.804173px;}
.x45{left:1052.424292px;}
.x30{left:1053.982269px;}
@media print{
.v1{vertical-align:-78.391775pt;}
.v5{vertical-align:-76.474974pt;}
.v3{vertical-align:-74.803202pt;}
.v4{vertical-align:-37.113817pt;}
.v7{vertical-align:-2.063952pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:24.354657pt;}
.v2{vertical-align:59.567658pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:31.977641pt;}
.ls5{letter-spacing:37.310969pt;}
.ls4{letter-spacing:37.310972pt;}
.ls2{letter-spacing:96.000315pt;}
.ls6{letter-spacing:216.071349pt;}
.ls1{letter-spacing:287.695386pt;}
.ls9{letter-spacing:1269.992185pt;}
.lsa{letter-spacing:1271.711121pt;}
.lsb{letter-spacing:1271.711153pt;}
.lsc{letter-spacing:1273.149381pt;}
.ls8{letter-spacing:1280.209201pt;}
.ls7{letter-spacing:1925.697446pt;}
.ws14{word-spacing:-75.840002pt;}
.ws5{word-spacing:-29.440000pt;}
.wsc{word-spacing:-26.666667pt;}
.wsb{word-spacing:-25.813334pt;}
.wse{word-spacing:-24.213334pt;}
.ws0{word-spacing:-21.488000pt;}
.ws3{word-spacing:-20.832000pt;}
.ws9{word-spacing:-18.581403pt;}
.ws8{word-spacing:-18.381603pt;}
.ws4{word-spacing:-17.696000pt;}
.ws15{word-spacing:-15.546668pt;}
.wsf{word-spacing:-12.640000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws11{word-spacing:-10.410667pt;}
.wsd{word-spacing:-9.333333pt;}
.ws2{word-spacing:-7.440000pt;}
.ws10{word-spacing:-7.360000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:83.597643pt;}
.ws6{word-spacing:232.016993pt;}
.ws13{word-spacing:1613.403530pt;}
.ws12{word-spacing:1616.515890pt;}
._31{margin-left:-9.280000pt;}
._17{margin-left:-7.992001pt;}
._14{margin-left:-6.496000pt;}
._1{margin-left:-4.752000pt;}
._2{margin-left:-3.744000pt;}
._3{margin-left:-2.816000pt;}
._0{margin-left:-1.626667pt;}
._15{width:1.226667pt;}
._32{width:2.240000pt;}
._1f{width:3.200000pt;}
._a{width:245.501961pt;}
._f{width:279.515263pt;}
._d{width:304.091513pt;}
._c{width:311.408114pt;}
._e{width:315.895281pt;}
._b{width:317.078546pt;}
._20{width:331.712981pt;}
._6{width:381.649221pt;}
._28{width:382.921822pt;}
._4{width:385.909741pt;}
._7{width:424.118847pt;}
._21{width:429.839766pt;}
._19{width:496.599887pt;}
._26{width:517.816378pt;}
._2a{width:552.084841pt;}
._22{width:633.742189pt;}
._16{width:665.372428pt;}
._10{width:677.713988pt;}
._13{width:710.833241pt;}
._24{width:730.233601pt;}
._5{width:789.359800pt;}
._18{width:824.248199pt;}
._1a{width:865.190251pt;}
._12{width:882.230278pt;}
._29{width:921.700464pt;}
._11{width:931.270475pt;}
._9{width:982.277397pt;}
._2f{width:987.913489pt;}
._2e{width:989.618849pt;}
._2c{width:994.949289pt;}
._23{width:1009.654275pt;}
._27{width:1053.568315pt;}
._8{width:1083.021462pt;}
._2b{width:1088.570127pt;}
._25{width:1099.985554pt;}
._30{width:1355.068309pt;}
._2d{width:1522.321533pt;}
._1e{width:1943.153132pt;}
._1d{width:2227.200214pt;}
._1c{width:2230.185614pt;}
._1b{width:2466.957866pt;}
.fs0{font-size:26.666667pt;}
.fsf{font-size:37.333333pt;}
.fs5{font-size:42.666669pt;}
.fs2{font-size:48.000002pt;}
.fs11{font-size:53.333334pt;}
.fs8{font-size:55.148266pt;}
.fs1{font-size:58.666670pt;}
.fse{font-size:61.257066pt;}
.fs7{font-size:63.026666pt;}
.fsd{font-size:66.600010pt;}
.fs6{font-size:74.666666pt;}
.fsc{font-size:80.000003pt;}
.fs3{font-size:90.666667pt;}
.fs10{font-size:95.473603pt;}
.fs4{font-size:106.666667pt;}
.fsa{font-size:122.666668pt;}
.fsb{font-size:224.000007pt;}
.fs9{font-size:240.000008pt;}
.fs12{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:9.574783pt;}
.y31{bottom:15.460784pt;}
.y44{bottom:16.441670pt;}
.y59{bottom:16.921670pt;}
.y4c{bottom:19.237783pt;}
.y2{bottom:19.344015pt;}
.y1{bottom:27.344015pt;}
.y50{bottom:31.439884pt;}
.yd{bottom:36.039614pt;}
.y12{bottom:36.039624pt;}
.y49{bottom:36.040414pt;}
.y91{bottom:36.050430pt;}
.y62{bottom:40.012064pt;}
.y2a{bottom:40.097754pt;}
.y46{bottom:42.098114pt;}
.y4d{bottom:43.394115pt;}
.y58{bottom:44.040414pt;}
.y6{bottom:58.072305pt;}
.yc{bottom:77.639615pt;}
.y5{bottom:78.232306pt;}
.y5c{bottom:82.019936pt;}
.y97{bottom:87.705387pt;}
.y96{bottom:100.505386pt;}
.y20{bottom:100.568616pt;}
.y5b{bottom:109.736617pt;}
.y22{bottom:110.860287pt;}
.y1d{bottom:113.868817pt;}
.y83{bottom:114.047436pt;}
.y9d{bottom:114.683916pt;}
.y3f{bottom:120.568663pt;}
.y4{bottom:121.129987pt;}
.y82{bottom:122.047437pt;}
.yf{bottom:126.384407pt;}
.y94{bottom:128.183267pt;}
.y19{bottom:129.287337pt;}
.y69{bottom:130.096709pt;}
.y9c{bottom:132.283917pt;}
.y28{bottom:139.675787pt;}
.y7f{bottom:143.946517pt;}
.y3e{bottom:146.542663pt;}
.y9b{bottom:149.883918pt;}
.y7e{bottom:151.946518pt;}
.ye{bottom:153.566628pt;}
.y43{bottom:156.468458pt;}
.y7d{bottom:159.946518pt;}
.yb{bottom:166.235378pt;}
.y9a{bottom:167.483918pt;}
.y7c{bottom:167.946518pt;}
.y8f{bottom:171.786759pt;}
.y5d{bottom:172.071189pt;}
.y3d{bottom:172.516664pt;}
.y7b{bottom:175.946518pt;}
.y6d{bottom:180.188638pt;}
.y53{bottom:183.561939pt;}
.y7a{bottom:183.946519pt;}
.y14{bottom:186.466139pt;}
.y8a{bottom:186.770589pt;}
.y87{bottom:194.341449pt;}
.y6c{bottom:198.188639pt;}
.y3c{bottom:198.490665pt;}
.ya{bottom:198.875379pt;}
.y52{bottom:201.939057pt;}
.y79{bottom:211.951770pt;}
.y6b{bottom:216.188640pt;}
.y8e{bottom:218.425060pt;}
.y78{bottom:219.951770pt;}
.y71{bottom:223.281350pt;}
.y3b{bottom:224.464666pt;}
.y1f{bottom:226.829312pt;}
.y77{bottom:227.951770pt;}
.y18{bottom:231.140662pt;}
.y9{bottom:231.515384pt;}
.y6a{bottom:234.188640pt;}
.y76{bottom:235.951770pt;}
.y75{bottom:243.951771pt;}
.y11{bottom:245.015094pt;}
.y3a{bottom:250.438667pt;}
.y74{bottom:251.951771pt;}
.y10{bottom:254.792870pt;}
.y8{bottom:264.155381pt;}
.y27{bottom:264.476321pt;}
.y99{bottom:265.134021pt;}
.y48{bottom:271.926771pt;}
.y39{bottom:276.412668pt;}
.y4a{bottom:278.085272pt;}
.y1e{bottom:279.537992pt;}
.y68{bottom:287.648929pt;}
.y4b{bottom:290.244392pt;}
.y47{bottom:290.303890pt;}
.y95{bottom:292.376782pt;}
.y38{bottom:302.386668pt;}
.y6f{bottom:303.743292pt;}
.y13{bottom:306.644614pt;}
.y7{bottom:310.235385pt;}
.y23{bottom:314.253223pt;}
.y45{bottom:315.026503pt;}
.y25{bottom:319.229603pt;}
.y2e{bottom:322.121833pt;}
.y67{bottom:324.448920pt;}
.y37{bottom:328.360669pt;}
.y4f{bottom:336.693183pt;}
.y70{bottom:338.278734pt;}
.y2d{bottom:346.121837pt;}
.y36{bottom:354.334670pt;}
.y4e{bottom:355.070302pt;}
.y98{bottom:361.134019pt;}
.y66{bottom:361.248931pt;}
.y92{bottom:362.912615pt;}
.y73{bottom:365.780044pt;}
.y24{bottom:370.074745pt;}
.y2c{bottom:370.121836pt;}
.y89{bottom:377.701035pt;}
.y72{bottom:378.032015pt;}
.y35{bottom:380.308671pt;}
.y1c{bottom:386.493635pt;}
.y26{bottom:387.854285pt;}
.y65{bottom:398.048922pt;}
.y93{bottom:399.795816pt;}
.y30{bottom:405.266042pt;}
.y34{bottom:406.282672pt;}
.y42{bottom:417.244288pt;}
.y21{bottom:419.249187pt;}
.y15{bottom:425.544566pt;}
.y57{bottom:425.834922pt;}
.y33{bottom:432.256673pt;}
.y64{bottom:434.848920pt;}
.y29{bottom:436.122243pt;}
.y16{bottom:437.704669pt;}
.y5f{bottom:438.986529pt;}
.y51{bottom:441.850129pt;}
.y1b{bottom:443.658712pt;}
.y56{bottom:444.212041pt;}
.y32{bottom:458.230672pt;}
.y1a{bottom:462.566713pt;}
.y5e{bottom:467.786535pt;}
.y2b{bottom:468.704123pt;}
.y86{bottom:471.043568pt;}
.y63{bottom:471.648917pt;}
.y8d{bottom:473.829268pt;}
.y80{bottom:476.780761pt;}
.y84{bottom:476.907085pt;}
.y61{bottom:479.101749pt;}
.y17{bottom:481.001259pt;}
.y5a{bottom:483.271489pt;}
.y88{bottom:488.903148pt;}
.y8c{bottom:489.585175pt;}
.y85{bottom:504.413018pt;}
.y81{bottom:504.930077pt;}
.y90{bottom:505.369029pt;}
.y8b{bottom:505.370101pt;}
.y41{bottom:506.344949pt;}
.y60{bottom:507.743834pt;}
.y6e{bottom:508.491280pt;}
.y55{bottom:510.377608pt;}
.y40{bottom:511.978872pt;}
.y54{bottom:519.534722pt;}
.y3{bottom:529.502648pt;}
.h1{height:28.000000pt;}
.h15{height:28.004284pt;}
.h16{height:28.004288pt;}
.h12{height:39.200000pt;}
.hb{height:44.800003pt;}
.h3{height:50.400002pt;}
.h11{height:52.354657pt;}
.h14{height:56.000000pt;}
.h8{height:57.905679pt;}
.h2{height:61.600003pt;}
.h10{height:64.319919pt;}
.h7{height:66.177999pt;}
.he{height:69.930011pt;}
.h6{height:78.400000pt;}
.hd{height:84.000003pt;}
.h4{height:95.200000pt;}
.h13{height:100.247283pt;}
.h5{height:112.000001pt;}
.ha{height:128.800001pt;}
.hf{height:137.967658pt;}
.hc{height:235.200008pt;}
.h9{height:252.000008pt;}
.h17{height:336.000011pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:23.446195pt;}
.x24{left:26.433111pt;}
.x31{left:27.874017pt;}
.x46{left:30.969844pt;}
.x34{left:34.151511pt;}
.x71{left:35.148101pt;}
.x3b{left:36.677411pt;}
.x60{left:38.683389pt;}
.x4b{left:39.609791pt;}
.x68{left:40.588285pt;}
.x39{left:43.102581pt;}
.x66{left:44.353021pt;}
.x6f{left:45.308206pt;}
.x40{left:46.398951pt;}
.xb{left:47.551980pt;}
.x64{left:50.782512pt;}
.x32{left:52.524119pt;}
.x75{left:58.869127pt;}
.x4f{left:61.775252pt;}
.x36{left:62.693088pt;}
.x61{left:68.016726pt;}
.x37{left:80.026422pt;}
.x4e{left:84.734698pt;}
.x1d{left:96.560374pt;}
.xf{left:98.532634pt;}
.x52{left:104.386569pt;}
.x54{left:108.436433pt;}
.x1f{left:110.908785pt;}
.x53{left:113.387144pt;}
.xd{left:115.978620pt;}
.xc{left:120.896920pt;}
.x6e{left:126.321606pt;}
.x12{left:130.492780pt;}
.x59{left:137.250680pt;}
.x55{left:159.967809pt;}
.x11{left:166.798781pt;}
.x73{left:168.851015pt;}
.x57{left:182.019202pt;}
.x5f{left:188.910082pt;}
.x35{left:196.026992pt;}
.x23{left:199.492502pt;}
.x6a{left:201.732446pt;}
.x28{left:206.809343pt;}
.x58{left:209.238027pt;}
.x65{left:212.074543pt;}
.xe{left:221.577103pt;}
.x19{left:224.944272pt;}
.x38{left:235.065074pt;}
.x3a{left:246.047204pt;}
.x26{left:248.846164pt;}
.x56{left:256.684208pt;}
.x72{left:259.561984pt;}
.x41{left:267.644749pt;}
.x18{left:269.184495pt;}
.x21{left:271.657689pt;}
.x78{left:277.568775pt;}
.x63{left:281.473455pt;}
.x43{left:283.391109pt;}
.x6c{left:286.118109pt;}
.x13{left:287.719319pt;}
.x6d{left:293.095675pt;}
.x14{left:295.214095pt;}
.x77{left:296.813269pt;}
.x76{left:298.905160pt;}
.x74{left:302.092136pt;}
.x67{left:304.637926pt;}
.x79{left:306.713910pt;}
.x1e{left:313.666388pt;}
.x2c{left:315.554238pt;}
.x22{left:317.828230pt;}
.x4a{left:333.148948pt;}
.x6b{left:337.034281pt;}
.x2{left:355.291098pt;}
.x5b{left:357.463271pt;}
.x7d{left:367.879108pt;}
.x25{left:376.404312pt;}
.x3f{left:380.427179pt;}
.x2d{left:384.962211pt;}
.x5a{left:391.314983pt;}
.x15{left:398.461893pt;}
.x2e{left:399.668644pt;}
.x4d{left:401.144693pt;}
.x48{left:408.933740pt;}
.x7a{left:410.395649pt;}
.x49{left:438.178284pt;}
.x7b{left:441.316430pt;}
.x27{left:446.942314pt;}
.x62{left:453.216685pt;}
.x5e{left:458.238845pt;}
.x3d{left:489.023666pt;}
.x70{left:498.132366pt;}
.x69{left:499.855636pt;}
.x1b{left:501.852956pt;}
.x2b{left:515.863772pt;}
.x42{left:525.068784pt;}
.x5c{left:548.813678pt;}
.x2f{left:556.399498pt;}
.x1c{left:563.140736pt;}
.x5d{left:570.207358pt;}
.x4{left:579.258764pt;}
.x20{left:581.706489pt;}
.x8{left:583.841299pt;}
.x6{left:588.995687pt;}
.x3{left:615.112006pt;}
.x7{left:619.116858pt;}
.x5{left:624.685126pt;}
.x9{left:625.710050pt;}
.x81{left:627.677095pt;}
.x16{left:648.076561pt;}
.x17{left:651.487209pt;}
.x7e{left:657.167366pt;}
.x47{left:658.769801pt;}
.x33{left:670.517121pt;}
.x7f{left:674.967352pt;}
.x29{left:677.941241pt;}
.xa{left:679.257962pt;}
.x80{left:685.700852pt;}
.x10{left:687.570012pt;}
.x1a{left:696.746865pt;}
.x4c{left:767.922797pt;}
.x3c{left:776.976620pt;}
.x1{left:787.483325pt;}
.x2a{left:800.918136pt;}
.x44{left:822.398313pt;}
.x51{left:834.663171pt;}
.x50{left:848.513337pt;}
.x7c{left:905.603709pt;}
.x45{left:935.488260pt;}
.x30{left:936.873128pt;}
}




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