
    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_99fa11f43ec9efcdc8cf4f0b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_a8bbfedc56bf3958326e1eac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_ea9344c30a302ee919ecba88.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a3f5ec21e1dd4d2887f35e1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_c050e99dfbd13eeda355cff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.998000;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_200b66a77adbdc01e59ab6ea.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52e80686c7570fd63b114d90.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-17.280000px;}
.ls7{letter-spacing:-1.026000px;}
.ls17{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.120120px;}
.ls3{letter-spacing:0.143520px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.144960px;}
.ls18{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.429660px;}
.ls1{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.439040px;}
.ls2{letter-spacing:2.160960px;}
.ls4{letter-spacing:2.880480px;}
.ls16{letter-spacing:4.320000px;}
.ls12{letter-spacing:48.241200px;}
.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;}
}
.ws6{word-spacing:-18.720000px;}
.wse{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws0{word-spacing:-15.534000px;}
.wsd{word-spacing:-14.400000px;}
.wsa{word-spacing:0.000000px;}
.wsb{word-spacing:11.232058px;}
._29{margin-left:-47.832754px;}
._39{margin-left:-4.921680px;}
._0{margin-left:-1.090322px;}
._1{width:1.052370px;}
._24{width:2.155780px;}
._5{width:3.307342px;}
._f{width:4.464607px;}
._9{width:5.818035px;}
._12{width:7.271823px;}
._13{width:8.401208px;}
._3{width:9.505140px;}
._4{width:10.700007px;}
._15{width:12.123616px;}
._1b{width:13.465171px;}
._1c{width:15.109409px;}
._e{width:16.273249px;}
._2e{width:17.848506px;}
._11{width:19.442488px;}
._10{width:20.519187px;}
._1a{width:22.391076px;}
._6{width:24.239241px;}
._7{width:26.038197px;}
._8{width:27.576016px;}
._27{width:29.161558px;}
._d{width:30.647504px;}
._14{width:32.054613px;}
._b{width:33.383240px;}
._2d{width:34.989962px;}
._34{width:36.005365px;}
._3d{width:37.073125px;}
._28{width:38.085791px;}
._3c{width:39.169724px;}
._25{width:40.177651px;}
._1d{width:41.616770px;}
._1e{width:43.233841px;}
._1f{width:44.747760px;}
._31{width:46.121347px;}
._2c{width:47.446848px;}
._c{width:48.600792px;}
._26{width:50.251880px;}
._36{width:51.623856px;}
._16{width:53.184119px;}
._17{width:54.900001px;}
._3b{width:56.323855px;}
._20{width:58.174695px;}
._21{width:59.655732px;}
._22{width:61.272194px;}
._49{width:62.529099px;}
._2f{width:63.789816px;}
._30{width:64.957625px;}
._a{width:68.951186px;}
._2{width:71.869380px;}
._32{width:74.159427px;}
._33{width:75.239836px;}
._42{width:76.295340px;}
._23{width:77.542980px;}
._18{width:80.759824px;}
._19{width:82.185903px;}
._3f{width:83.270555px;}
._2a{width:85.824720px;}
._2b{width:86.842234px;}
._3e{width:88.397396px;}
._35{width:93.741336px;}
._37{width:97.486560px;}
._38{width:98.653647px;}
._46{width:108.719344px;}
._3a{width:120.502664px;}
._48{width:158.327280px;}
._44{width:171.442800px;}
._45{width:172.941780px;}
._40{width:206.244600px;}
._47{width:301.031280px;}
._43{width:488.276657px;}
._41{width:576.980580px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,238);}
.fc2{color:rgb(95,99,104);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:24.000000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y128{bottom:7.500000px;}
.yc2{bottom:89.857800px;}
.yab{bottom:89.861100px;}
.y50{bottom:100.831800px;}
.y2c{bottom:100.833000px;}
.y7d{bottom:113.617500px;}
.yaa{bottom:113.620800px;}
.yed{bottom:121.180050px;}
.y4f{bottom:124.592100px;}
.y2b{bottom:124.593300px;}
.y7c{bottom:137.377200px;}
.ya9{bottom:137.380500px;}
.yec{bottom:145.120350px;}
.y4e{bottom:148.531800px;}
.y2a{bottom:148.533000px;}
.y7b{bottom:161.131050px;}
.ya8{bottom:161.134350px;}
.yeb{bottom:168.874200px;}
.y4d{bottom:172.286250px;}
.y29{bottom:172.287450px;}
.y7a{bottom:185.071350px;}
.ya7{bottom:185.074650px;}
.yea{bottom:192.633900px;}
.y4c{bottom:196.045950px;}
.y28{bottom:196.047150px;}
.yc1{bottom:208.831050px;}
.y79{bottom:208.831650px;}
.ya6{bottom:208.834950px;}
.ye9{bottom:216.394200px;}
.y4b{bottom:219.805650px;}
.y27{bottom:219.806850px;}
.yc0{bottom:232.591350px;}
.y78{bottom:232.591950px;}
.ya5{bottom:232.595250px;}
.y4a{bottom:243.745950px;}
.y26{bottom:243.747150px;}
.ye8{bottom:249.333900px;}
.ybf{bottom:256.351050px;}
.y77{bottom:256.352250px;}
.ya4{bottom:256.354950px;}
.y49{bottom:267.506250px;}
.y25{bottom:267.506850px;}
.ye7{bottom:273.093600px;}
.ybe{bottom:280.291350px;}
.y76{bottom:280.292550px;}
.ya3{bottom:280.295250px;}
.y48{bottom:291.266550px;}
.y24{bottom:291.267150px;}
.ye6{bottom:296.853300px;}
.ybd{bottom:304.051050px;}
.y75{bottom:304.052850px;}
.ya2{bottom:304.054950px;}
.y47{bottom:315.026250px;}
.y23{bottom:315.027450px;}
.ye5{bottom:320.613000px;}
.ybc{bottom:327.855900px;}
.y74{bottom:327.857700px;}
.ya1{bottom:327.859800px;}
.y46{bottom:339.011550px;}
.y22{bottom:339.012750px;}
.ye4{bottom:344.598300px;}
.ybb{bottom:351.616200px;}
.y73{bottom:351.618000px;}
.ya0{bottom:351.620100px;}
.y45{bottom:362.771250px;}
.y21{bottom:362.773050px;}
.ye3{bottom:368.358000px;}
.yba{bottom:375.555900px;}
.y72{bottom:375.557700px;}
.y9f{bottom:375.559800px;}
.y127{bottom:378.078450px;}
.y44{bottom:386.531550px;}
.y20{bottom:386.533350px;}
.ye2{bottom:392.118300px;}
.yb9{bottom:399.315600px;}
.y71{bottom:399.317400px;}
.y9e{bottom:399.319500px;}
.y43{bottom:410.291850px;}
.y1f{bottom:410.293650px;}
.y126{bottom:410.838150px;}
.ye1{bottom:415.878000px;}
.yb8{bottom:423.075300px;}
.y70{bottom:423.077100px;}
.y9d{bottom:423.079200px;}
.y107{bottom:425.776350px;}
.y42{bottom:434.231550px;}
.y1e{bottom:434.233350px;}
.y125{bottom:434.778450px;}
.ye0{bottom:439.818300px;}
.yb7{bottom:446.835000px;}
.y6f{bottom:446.836800px;}
.y9c{bottom:446.838900px;}
.y106{bottom:449.536050px;}
.y41{bottom:457.991850px;}
.y1d{bottom:457.993650px;}
.y124{bottom:458.538150px;}
.ydf{bottom:463.578000px;}
.yb6{bottom:470.775300px;}
.y6e{bottom:470.777100px;}
.y9b{bottom:470.779200px;}
.y105{bottom:473.296350px;}
.y40{bottom:481.752150px;}
.y1c{bottom:481.753950px;}
.y123{bottom:482.298450px;}
.yb5{bottom:494.535600px;}
.y6d{bottom:494.536800px;}
.y9a{bottom:494.538900px;}
.y104{bottom:497.056050px;}
.yde{bottom:497.418300px;}
.y3f{bottom:505.512450px;}
.y1b{bottom:505.514250px;}
.y122{bottom:515.058150px;}
.yb4{bottom:518.295900px;}
.y6c{bottom:518.296500px;}
.y99{bottom:518.299200px;}
.y103{bottom:520.996350px;}
.y3e{bottom:529.452150px;}
.y1a{bottom:529.453950px;}
.ydd{bottom:533.058000px;}
.y121{bottom:538.998450px;}
.yb3{bottom:542.055600px;}
.y6b{bottom:542.056200px;}
.y98{bottom:542.058900px;}
.y102{bottom:544.756050px;}
.y3d{bottom:553.211850px;}
.y19{bottom:553.213650px;}
.y120{bottom:562.758150px;}
.yb2{bottom:565.995900px;}
.y6a{bottom:565.996500px;}
.ydc{bottom:565.998300px;}
.y97{bottom:565.999200px;}
.y101{bottom:568.516350px;}
.y3c{bottom:576.971550px;}
.y18{bottom:576.973350px;}
.y11f{bottom:586.518450px;}
.y69{bottom:589.756200px;}
.ydb{bottom:589.758000px;}
.y96{bottom:589.758900px;}
.y3b{bottom:600.761850px;}
.y17{bottom:600.763650px;}
.y100{bottom:601.306050px;}
.y11e{bottom:610.308150px;}
.y68{bottom:613.546500px;}
.yda{bottom:613.548300px;}
.y95{bottom:613.549200px;}
.y3a{bottom:624.521550px;}
.y16{bottom:624.523350px;}
.yff{bottom:625.066350px;}
.y11d{bottom:634.068450px;}
.yb1{bottom:637.306200px;}
.y67{bottom:637.306800px;}
.yd9{bottom:637.308000px;}
.y94{bottom:637.308900px;}
.y39{bottom:648.461850px;}
.y15{bottom:648.463650px;}
.yfe{bottom:658.006050px;}
.yb0{bottom:661.066500px;}
.y66{bottom:661.067100px;}
.yd8{bottom:661.068300px;}
.y93{bottom:661.069200px;}
.y11c{bottom:667.008150px;}
.y38{bottom:672.222150px;}
.y14{bottom:672.223950px;}
.yfd{bottom:681.765750px;}
.yaf{bottom:685.006200px;}
.y65{bottom:685.006800px;}
.yd7{bottom:685.008600px;}
.y92{bottom:685.008900px;}
.y11b{bottom:690.767850px;}
.y37{bottom:695.982450px;}
.y13{bottom:695.984250px;}
.yfc{bottom:705.525450px;}
.y64{bottom:708.766500px;}
.y91{bottom:708.768600px;}
.yd6{bottom:708.768900px;}
.y11a{bottom:714.527550px;}
.y36{bottom:719.742750px;}
.y12{bottom:719.744550px;}
.yfb{bottom:729.285150px;}
.y63{bottom:732.526200px;}
.y90{bottom:732.528300px;}
.yd5{bottom:732.528600px;}
.y119{bottom:738.287250px;}
.y35{bottom:743.682450px;}
.y11{bottom:743.684250px;}
.yfa{bottom:753.225450px;}
.y62{bottom:756.285900px;}
.y8f{bottom:756.288000px;}
.yd4{bottom:756.288300px;}
.y118{bottom:762.227550px;}
.y34{bottom:767.442150px;}
.y10{bottom:767.444550px;}
.yf9{bottom:776.985150px;}
.y61{bottom:780.226200px;}
.y8e{bottom:780.228300px;}
.yd3{bottom:780.228600px;}
.y117{bottom:785.987250px;}
.y33{bottom:791.201850px;}
.yf{bottom:791.204850px;}
.yf8{bottom:800.745450px;}
.y60{bottom:803.985900px;}
.y8d{bottom:803.988000px;}
.yd2{bottom:803.988300px;}
.y32{bottom:814.962150px;}
.ye{bottom:814.965150px;}
.y116{bottom:818.747550px;}
.yf7{bottom:824.505150px;}
.y5f{bottom:827.745600px;}
.y8c{bottom:827.747700px;}
.yd1{bottom:827.748000px;}
.y31{bottom:838.901850px;}
.yd{bottom:838.904850px;}
.y115{bottom:842.507250px;}
.y5e{bottom:851.505300px;}
.y8b{bottom:851.507400px;}
.yd0{bottom:851.507700px;}
.yf6{bottom:857.445450px;}
.y30{bottom:862.707300px;}
.yc{bottom:862.710300px;}
.y114{bottom:866.492550px;}
.y5d{bottom:875.490600px;}
.y8a{bottom:875.492700px;}
.ycf{bottom:875.493000px;}
.yf5{bottom:881.250300px;}
.y2f{bottom:886.467000px;}
.yb{bottom:886.470000px;}
.y113{bottom:890.252250px;}
.y5c{bottom:899.250300px;}
.y89{bottom:899.252400px;}
.yce{bottom:899.252700px;}
.yf4{bottom:905.010600px;}
.y2e{bottom:910.226700px;}
.ya{bottom:910.229700px;}
.y112{bottom:914.011950px;}
.yae{bottom:923.010000px;}
.y5b{bottom:923.010600px;}
.y88{bottom:923.012100px;}
.ycd{bottom:923.012400px;}
.y2d{bottom:934.167000px;}
.y9{bottom:934.170000px;}
.yf3{bottom:937.770300px;}
.y111{bottom:937.771650px;}
.yad{bottom:946.769700px;}
.y5a{bottom:946.770300px;}
.y87{bottom:946.771800px;}
.ycc{bottom:946.772100px;}
.yf2{bottom:961.710600px;}
.y110{bottom:961.711950px;}
.y8{bottom:967.470000px;}
.yac{bottom:970.710000px;}
.y59{bottom:970.710600px;}
.y86{bottom:970.712100px;}
.ycb{bottom:970.712400px;}
.yf1{bottom:985.470300px;}
.y10f{bottom:985.471650px;}
.y58{bottom:994.470300px;}
.y85{bottom:994.471800px;}
.yca{bottom:994.472700px;}
.y7{bottom:1002.390000px;}
.yf0{bottom:1009.230000px;}
.y10e{bottom:1009.231350px;}
.y57{bottom:1018.230600px;}
.y84{bottom:1018.231500px;}
.yc9{bottom:1018.232400px;}
.y6{bottom:1026.870150px;}
.yef{bottom:1032.990300px;}
.y10d{bottom:1032.991650px;}
.y56{bottom:1041.990900px;}
.y83{bottom:1041.991800px;}
.yc8{bottom:1041.992700px;}
.y5{bottom:1048.650000px;}
.yee{bottom:1065.930000px;}
.y55{bottom:1065.930600px;}
.y10c{bottom:1065.931350px;}
.y82{bottom:1065.931500px;}
.yc7{bottom:1065.932400px;}
.y4{bottom:1078.350000px;}
.y54{bottom:1089.690300px;}
.y10b{bottom:1089.691650px;}
.y81{bottom:1089.691800px;}
.yc6{bottom:1089.692100px;}
.y3{bottom:1109.850000px;}
.y53{bottom:1113.450000px;}
.y10a{bottom:1113.451350px;}
.y80{bottom:1113.451500px;}
.yc5{bottom:1113.451800px;}
.y2{bottom:1134.000000px;}
.y52{bottom:1137.240300px;}
.y109{bottom:1137.241650px;}
.y7f{bottom:1137.241800px;}
.yc4{bottom:1137.242100px;}
.y1{bottom:1158.300000px;}
.y51{bottom:1161.180000px;}
.y108{bottom:1161.181350px;}
.y7e{bottom:1161.181500px;}
.yc3{bottom:1161.181800px;}
.h9{height:17.496000px;}
.h5{height:45.573120px;}
.h6{height:49.536000px;}
.h4{height:49.824000px;}
.h7{height:49.992188px;}
.h8{height:53.928000px;}
.h3{height:58.294080px;}
.h2{height:66.265920px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:75.000000px;}
.x5{left:106.416150px;}
.x1{left:127.655850px;}
.x8{left:142.416150px;}
.x4{left:145.655850px;}
.x3{left:236.370000px;}
.x2{left:457.125000px;}
.x6{left:473.145300px;}
.x7{left:509.144610px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-15.360000pt;}
.ls7{letter-spacing:-0.912000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.106773pt;}
.ls3{letter-spacing:0.127573pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.128853pt;}
.ls18{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.381920pt;}
.ls1{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.279147pt;}
.ls2{letter-spacing:1.920853pt;}
.ls4{letter-spacing:2.560427pt;}
.ls16{letter-spacing:3.840000pt;}
.ls12{letter-spacing:42.881067pt;}
.ws6{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws0{word-spacing:-13.808000pt;}
.wsd{word-spacing:-12.800000pt;}
.wsa{word-spacing:0.000000pt;}
.wsb{word-spacing:9.984051pt;}
._29{margin-left:-42.518003pt;}
._39{margin-left:-4.374827pt;}
._0{margin-left:-0.969175pt;}
._1{width:0.935440pt;}
._24{width:1.916249pt;}
._5{width:2.939860pt;}
._f{width:3.968540pt;}
._9{width:5.171586pt;}
._12{width:6.463843pt;}
._13{width:7.467740pt;}
._3{width:8.449014pt;}
._4{width:9.511117pt;}
._15{width:10.776548pt;}
._1b{width:11.969041pt;}
._1c{width:13.430585pt;}
._e{width:14.465110pt;}
._2e{width:15.865339pt;}
._11{width:17.282212pt;}
._10{width:18.239277pt;}
._1a{width:19.903179pt;}
._6{width:21.545992pt;}
._7{width:23.145064pt;}
._8{width:24.512014pt;}
._27{width:25.921385pt;}
._d{width:27.242226pt;}
._14{width:28.492989pt;}
._b{width:29.673991pt;}
._2d{width:31.102188pt;}
._34{width:32.004769pt;}
._3d{width:32.953889pt;}
._28{width:33.854036pt;}
._3c{width:34.817533pt;}
._25{width:35.713468pt;}
._1d{width:36.992684pt;}
._1e{width:38.430081pt;}
._1f{width:39.775787pt;}
._31{width:40.996753pt;}
._2c{width:42.174976pt;}
._c{width:43.200704pt;}
._26{width:44.668338pt;}
._36{width:45.887872pt;}
._16{width:47.274772pt;}
._17{width:48.800001pt;}
._3b{width:50.065649pt;}
._20{width:51.710840pt;}
._21{width:53.027318pt;}
._22{width:54.464173pt;}
._49{width:55.581421pt;}
._2f{width:56.702058pt;}
._30{width:57.740111pt;}
._a{width:61.289943pt;}
._2{width:63.883893pt;}
._32{width:65.919491pt;}
._33{width:66.879854pt;}
._42{width:67.818080pt;}
._23{width:68.927094pt;}
._18{width:71.786510pt;}
._19{width:73.054136pt;}
._3f{width:74.018271pt;}
._2a{width:76.288640pt;}
._2b{width:77.193097pt;}
._3e{width:78.575463pt;}
._35{width:83.325632pt;}
._37{width:86.654720pt;}
._38{width:87.692131pt;}
._46{width:96.639417pt;}
._3a{width:107.113479pt;}
._48{width:140.735360pt;}
._44{width:152.393600pt;}
._45{width:153.726027pt;}
._40{width:183.328533pt;}
._47{width:267.583360pt;}
._43{width:434.023695pt;}
._41{width:512.871627pt;}
.fs4{font-size:21.333333pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:6.666667pt;}
.yc2{bottom:79.873600pt;}
.yab{bottom:79.876533pt;}
.y50{bottom:89.628267pt;}
.y2c{bottom:89.629333pt;}
.y7d{bottom:100.993333pt;}
.yaa{bottom:100.996267pt;}
.yed{bottom:107.715600pt;}
.y4f{bottom:110.748533pt;}
.y2b{bottom:110.749600pt;}
.y7c{bottom:122.113067pt;}
.ya9{bottom:122.116000pt;}
.yec{bottom:128.995867pt;}
.y4e{bottom:132.028267pt;}
.y2a{bottom:132.029333pt;}
.y7b{bottom:143.227600pt;}
.ya8{bottom:143.230533pt;}
.yeb{bottom:150.110400pt;}
.y4d{bottom:153.143333pt;}
.y29{bottom:153.144400pt;}
.y7a{bottom:164.507867pt;}
.ya7{bottom:164.510800pt;}
.yea{bottom:171.230133pt;}
.y4c{bottom:174.263067pt;}
.y28{bottom:174.264133pt;}
.yc1{bottom:185.627600pt;}
.y79{bottom:185.628133pt;}
.ya6{bottom:185.631067pt;}
.ye9{bottom:192.350400pt;}
.y4b{bottom:195.382800pt;}
.y27{bottom:195.383867pt;}
.yc0{bottom:206.747867pt;}
.y78{bottom:206.748400pt;}
.ya5{bottom:206.751333pt;}
.y4a{bottom:216.663067pt;}
.y26{bottom:216.664133pt;}
.ye8{bottom:221.630133pt;}
.ybf{bottom:227.867600pt;}
.y77{bottom:227.868667pt;}
.ya4{bottom:227.871067pt;}
.y49{bottom:237.783333pt;}
.y25{bottom:237.783867pt;}
.ye7{bottom:242.749867pt;}
.ybe{bottom:249.147867pt;}
.y76{bottom:249.148933pt;}
.ya3{bottom:249.151333pt;}
.y48{bottom:258.903600pt;}
.y24{bottom:258.904133pt;}
.ye6{bottom:263.869600pt;}
.ybd{bottom:270.267600pt;}
.y75{bottom:270.269200pt;}
.ya2{bottom:270.271067pt;}
.y47{bottom:280.023333pt;}
.y23{bottom:280.024400pt;}
.ye5{bottom:284.989333pt;}
.ybc{bottom:291.427467pt;}
.y74{bottom:291.429067pt;}
.ya1{bottom:291.430933pt;}
.y46{bottom:301.343600pt;}
.y22{bottom:301.344667pt;}
.ye4{bottom:306.309600pt;}
.ybb{bottom:312.547733pt;}
.y73{bottom:312.549333pt;}
.ya0{bottom:312.551200pt;}
.y45{bottom:322.463333pt;}
.y21{bottom:322.464933pt;}
.ye3{bottom:327.429333pt;}
.yba{bottom:333.827467pt;}
.y72{bottom:333.829067pt;}
.y9f{bottom:333.830933pt;}
.y127{bottom:336.069733pt;}
.y44{bottom:343.583600pt;}
.y20{bottom:343.585200pt;}
.ye2{bottom:348.549600pt;}
.yb9{bottom:354.947200pt;}
.y71{bottom:354.948800pt;}
.y9e{bottom:354.950667pt;}
.y43{bottom:364.703867pt;}
.y1f{bottom:364.705467pt;}
.y126{bottom:365.189467pt;}
.ye1{bottom:369.669333pt;}
.yb8{bottom:376.066933pt;}
.y70{bottom:376.068533pt;}
.y9d{bottom:376.070400pt;}
.y107{bottom:378.467867pt;}
.y42{bottom:385.983600pt;}
.y1e{bottom:385.985200pt;}
.y125{bottom:386.469733pt;}
.ye0{bottom:390.949600pt;}
.yb7{bottom:397.186667pt;}
.y6f{bottom:397.188267pt;}
.y9c{bottom:397.190133pt;}
.y106{bottom:399.587600pt;}
.y41{bottom:407.103867pt;}
.y1d{bottom:407.105467pt;}
.y124{bottom:407.589467pt;}
.ydf{bottom:412.069333pt;}
.yb6{bottom:418.466933pt;}
.y6e{bottom:418.468533pt;}
.y9b{bottom:418.470400pt;}
.y105{bottom:420.707867pt;}
.y40{bottom:428.224133pt;}
.y1c{bottom:428.225733pt;}
.y123{bottom:428.709733pt;}
.yb5{bottom:439.587200pt;}
.y6d{bottom:439.588267pt;}
.y9a{bottom:439.590133pt;}
.y104{bottom:441.827600pt;}
.yde{bottom:442.149600pt;}
.y3f{bottom:449.344400pt;}
.y1b{bottom:449.346000pt;}
.y122{bottom:457.829467pt;}
.yb4{bottom:460.707467pt;}
.y6c{bottom:460.708000pt;}
.y99{bottom:460.710400pt;}
.y103{bottom:463.107867pt;}
.y3e{bottom:470.624133pt;}
.y1a{bottom:470.625733pt;}
.ydd{bottom:473.829333pt;}
.y121{bottom:479.109733pt;}
.yb3{bottom:481.827200pt;}
.y6b{bottom:481.827733pt;}
.y98{bottom:481.830133pt;}
.y102{bottom:484.227600pt;}
.y3d{bottom:491.743867pt;}
.y19{bottom:491.745467pt;}
.y120{bottom:500.229467pt;}
.yb2{bottom:503.107467pt;}
.y6a{bottom:503.108000pt;}
.ydc{bottom:503.109600pt;}
.y97{bottom:503.110400pt;}
.y101{bottom:505.347867pt;}
.y3c{bottom:512.863600pt;}
.y18{bottom:512.865200pt;}
.y11f{bottom:521.349733pt;}
.y69{bottom:524.227733pt;}
.ydb{bottom:524.229333pt;}
.y96{bottom:524.230133pt;}
.y3b{bottom:534.010533pt;}
.y17{bottom:534.012133pt;}
.y100{bottom:534.494267pt;}
.y11e{bottom:542.496133pt;}
.y68{bottom:545.374667pt;}
.yda{bottom:545.376267pt;}
.y95{bottom:545.377067pt;}
.y3a{bottom:555.130267pt;}
.y16{bottom:555.131867pt;}
.yff{bottom:555.614533pt;}
.y11d{bottom:563.616400pt;}
.yb1{bottom:566.494400pt;}
.y67{bottom:566.494933pt;}
.yd9{bottom:566.496000pt;}
.y94{bottom:566.496800pt;}
.y39{bottom:576.410533pt;}
.y15{bottom:576.412133pt;}
.yfe{bottom:584.894267pt;}
.yb0{bottom:587.614667pt;}
.y66{bottom:587.615200pt;}
.yd8{bottom:587.616267pt;}
.y93{bottom:587.617067pt;}
.y11c{bottom:592.896133pt;}
.y38{bottom:597.530800pt;}
.y14{bottom:597.532400pt;}
.yfd{bottom:606.014000pt;}
.yaf{bottom:608.894400pt;}
.y65{bottom:608.894933pt;}
.yd7{bottom:608.896533pt;}
.y92{bottom:608.896800pt;}
.y11b{bottom:614.015867pt;}
.y37{bottom:618.651067pt;}
.y13{bottom:618.652667pt;}
.yfc{bottom:627.133733pt;}
.y64{bottom:630.014667pt;}
.y91{bottom:630.016533pt;}
.yd6{bottom:630.016800pt;}
.y11a{bottom:635.135600pt;}
.y36{bottom:639.771333pt;}
.y12{bottom:639.772933pt;}
.yfb{bottom:648.253467pt;}
.y63{bottom:651.134400pt;}
.y90{bottom:651.136267pt;}
.yd5{bottom:651.136533pt;}
.y119{bottom:656.255333pt;}
.y35{bottom:661.051067pt;}
.y11{bottom:661.052667pt;}
.yfa{bottom:669.533733pt;}
.y62{bottom:672.254133pt;}
.y8f{bottom:672.256000pt;}
.yd4{bottom:672.256267pt;}
.y118{bottom:677.535600pt;}
.y34{bottom:682.170800pt;}
.y10{bottom:682.172933pt;}
.yf9{bottom:690.653467pt;}
.y61{bottom:693.534400pt;}
.y8e{bottom:693.536267pt;}
.yd3{bottom:693.536533pt;}
.y117{bottom:698.655333pt;}
.y33{bottom:703.290533pt;}
.yf{bottom:703.293200pt;}
.yf8{bottom:711.773733pt;}
.y60{bottom:714.654133pt;}
.y8d{bottom:714.656000pt;}
.yd2{bottom:714.656267pt;}
.y32{bottom:724.410800pt;}
.ye{bottom:724.413467pt;}
.y116{bottom:727.775600pt;}
.yf7{bottom:732.893467pt;}
.y5f{bottom:735.773867pt;}
.y8c{bottom:735.775733pt;}
.yd1{bottom:735.776000pt;}
.y31{bottom:745.690533pt;}
.yd{bottom:745.693200pt;}
.y115{bottom:748.895333pt;}
.y5e{bottom:756.893600pt;}
.y8b{bottom:756.895467pt;}
.yd0{bottom:756.895733pt;}
.yf6{bottom:762.173733pt;}
.y30{bottom:766.850933pt;}
.yc{bottom:766.853600pt;}
.y114{bottom:770.215600pt;}
.y5d{bottom:778.213867pt;}
.y8a{bottom:778.215733pt;}
.ycf{bottom:778.216000pt;}
.yf5{bottom:783.333600pt;}
.y2f{bottom:787.970667pt;}
.yb{bottom:787.973333pt;}
.y113{bottom:791.335333pt;}
.y5c{bottom:799.333600pt;}
.y89{bottom:799.335467pt;}
.yce{bottom:799.335733pt;}
.yf4{bottom:804.453867pt;}
.y2e{bottom:809.090400pt;}
.ya{bottom:809.093067pt;}
.y112{bottom:812.455067pt;}
.yae{bottom:820.453333pt;}
.y5b{bottom:820.453867pt;}
.y88{bottom:820.455200pt;}
.ycd{bottom:820.455467pt;}
.y2d{bottom:830.370667pt;}
.y9{bottom:830.373333pt;}
.yf3{bottom:833.573600pt;}
.y111{bottom:833.574800pt;}
.yad{bottom:841.573067pt;}
.y5a{bottom:841.573600pt;}
.y87{bottom:841.574933pt;}
.ycc{bottom:841.575200pt;}
.yf2{bottom:854.853867pt;}
.y110{bottom:854.855067pt;}
.y8{bottom:859.973333pt;}
.yac{bottom:862.853333pt;}
.y59{bottom:862.853867pt;}
.y86{bottom:862.855200pt;}
.ycb{bottom:862.855467pt;}
.yf1{bottom:875.973600pt;}
.y10f{bottom:875.974800pt;}
.y58{bottom:883.973600pt;}
.y85{bottom:883.974933pt;}
.yca{bottom:883.975733pt;}
.y7{bottom:891.013333pt;}
.yf0{bottom:897.093333pt;}
.y10e{bottom:897.094533pt;}
.y57{bottom:905.093867pt;}
.y84{bottom:905.094667pt;}
.yc9{bottom:905.095467pt;}
.y6{bottom:912.773467pt;}
.yef{bottom:918.213600pt;}
.y10d{bottom:918.214800pt;}
.y56{bottom:926.214133pt;}
.y83{bottom:926.214933pt;}
.yc8{bottom:926.215733pt;}
.y5{bottom:932.133333pt;}
.yee{bottom:947.493333pt;}
.y55{bottom:947.493867pt;}
.y10c{bottom:947.494533pt;}
.y82{bottom:947.494667pt;}
.yc7{bottom:947.495467pt;}
.y4{bottom:958.533333pt;}
.y54{bottom:968.613600pt;}
.y10b{bottom:968.614800pt;}
.y81{bottom:968.614933pt;}
.yc6{bottom:968.615200pt;}
.y3{bottom:986.533333pt;}
.y53{bottom:989.733333pt;}
.y10a{bottom:989.734533pt;}
.y80{bottom:989.734667pt;}
.yc5{bottom:989.734933pt;}
.y2{bottom:1008.000000pt;}
.y52{bottom:1010.880267pt;}
.y109{bottom:1010.881467pt;}
.y7f{bottom:1010.881600pt;}
.yc4{bottom:1010.881867pt;}
.y1{bottom:1029.600000pt;}
.y51{bottom:1032.160000pt;}
.y108{bottom:1032.161200pt;}
.y7e{bottom:1032.161333pt;}
.yc3{bottom:1032.161600pt;}
.h9{height:15.552000pt;}
.h5{height:40.509440pt;}
.h6{height:44.032000pt;}
.h4{height:44.288000pt;}
.h7{height:44.437500pt;}
.h8{height:47.936000pt;}
.h3{height:51.816960pt;}
.h2{height:58.903040pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:66.666667pt;}
.x5{left:94.592133pt;}
.x1{left:113.471867pt;}
.x8{left:126.592133pt;}
.x4{left:129.471867pt;}
.x3{left:210.106667pt;}
.x2{left:406.333333pt;}
.x6{left:420.573600pt;}
.x7{left:452.572987pt;}
}




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