
    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_8fea247a33af873ad14a7aaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_468a9c00f687783801ddd0bd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4939ed2474427ca40d2ba01b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717285;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_1b9571072ee34e4261c864e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eaea35a3d99b81e59ce05966.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_ba9541e559492fa0c7a9af4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941895;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_81bc73dd893c54eeaed28bda.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717285;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_ec0e101aa9385492d58ddaa9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761719;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-4.416000px;}
.ls7{letter-spacing:-0.014400px;}
.ls4{letter-spacing:-0.012000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.019200px;}
.ls1{letter-spacing:1.188000px;}
.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;}
}
.ws3{word-spacing:-18.014400px;}
.ws2{word-spacing:-17.985600px;}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-8.287200px;}
._2{margin-left:-6.768000px;}
._0{margin-left:-5.299200px;}
._7{margin-left:-3.261600px;}
._1{margin-left:-1.660800px;}
._5{width:1.900800px;}
._f{width:2.920800px;}
._c{width:3.960000px;}
._3{width:5.385600px;}
._4{width:7.214400px;}
._e{width:8.236800px;}
._6{width:9.417600px;}
._d{width:10.800000px;}
._a{width:11.930400px;}
._9{width:13.579200px;}
._15{width:14.846400px;}
._12{width:16.099200px;}
._14{width:18.426000px;}
._11{width:21.294000px;}
._13{width:30.252000px;}
._8{width:34.596000px;}
._10{width:39.848400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:87.000000px;}
.fs0{font-size:96.000000px;}
.fs2{font-size:151.170480px;}
.y0{bottom:0.000000px;}
.ya5{bottom:9.244650px;}
.ybc{bottom:9.281850px;}
.y149{bottom:12.187200px;}
.y14d{bottom:12.374700px;}
.y14b{bottom:12.562200px;}
.yb7{bottom:12.637200px;}
.yce{bottom:12.881835px;}
.yc5{bottom:12.881850px;}
.ya9{bottom:14.306850px;}
.yff{bottom:14.381850px;}
.ya7{bottom:14.494350px;}
.yf7{bottom:15.881850px;}
.y84{bottom:21.158205px;}
.ybf{bottom:23.849700px;}
.yf1{bottom:24.570705px;}
.ya4{bottom:25.744650px;}
.ybb{bottom:25.781850px;}
.yae{bottom:26.521050px;}
.ycf{bottom:27.449685px;}
.yc6{bottom:27.449700px;}
.ya2{bottom:28.368750px;}
.y2c{bottom:29.034750px;}
.ycd{bottom:29.381835px;}
.yc4{bottom:29.381850px;}
.yf6{bottom:32.381850px;}
.y2a{bottom:32.933205px;}
.yfd{bottom:34.957035px;}
.yc1{bottom:40.349700px;}
.y113{bottom:42.244650px;}
.yba{bottom:42.281850px;}
.y107{bottom:43.021050px;}
.y83{bottom:43.658205px;}
.ya1{bottom:44.868750px;}
.yf0{bottom:47.070705px;}
.yf5{bottom:48.881850px;}
.y147{bottom:48.908250px;}
.yad{bottom:49.021050px;}
.y57{bottom:51.158250px;}
.y29{bottom:55.433205px;}
.ybd{bottom:56.849700px;}
.yfc{bottom:57.457035px;}
.y123{bottom:58.744650px;}
.yb9{bottom:58.781850px;}
.y112{bottom:59.521050px;}
.ya0{bottom:61.368750px;}
.yf8{bottom:63.449700px;}
.yfa{bottom:65.194350px;}
.yf4{bottom:65.381850px;}
.y106{bottom:65.521050px;}
.y82{bottom:66.158250px;}
.yef{bottom:69.570750px;}
.y146{bottom:71.408250px;}
.yac{bottom:71.521050px;}
.y56{bottom:73.658250px;}
.y122{bottom:75.244650px;}
.yab{bottom:76.744650px;}
.y9f{bottom:77.868750px;}
.y28{bottom:77.933250px;}
.y111{bottom:82.021050px;}
.y105{bottom:88.021050px;}
.y81{bottom:88.658250px;}
.y58{bottom:91.125000px;}
.y1{bottom:91.350000px;}
.yee{bottom:92.070750px;}
.y121{bottom:92.521050px;}
.y145{bottom:93.908250px;}
.y9e{bottom:94.368750px;}
.y55{bottom:96.158250px;}
.y27{bottom:100.433250px;}
.y110{bottom:104.521050px;}
.y2d{bottom:106.125000px;}
.y104{bottom:110.521050px;}
.y9d{bottom:110.868750px;}
.y80{bottom:111.158250px;}
.yed{bottom:114.570750px;}
.y120{bottom:115.021050px;}
.y144{bottom:116.408250px;}
.y54{bottom:118.658250px;}
.y102{bottom:121.744650px;}
.y26{bottom:122.933250px;}
.y10f{bottom:127.021050px;}
.y9c{bottom:128.145150px;}
.y103{bottom:133.021050px;}
.y7f{bottom:133.658250px;}
.ycc{bottom:136.762515px;}
.yec{bottom:137.070750px;}
.y11f{bottom:137.521050px;}
.y101{bottom:138.244650px;}
.y143{bottom:138.908250px;}
.y53{bottom:141.158250px;}
.y25{bottom:145.433250px;}
.y10e{bottom:149.521050px;}
.y116{bottom:155.521050px;}
.y7e{bottom:156.158250px;}
.yeb{bottom:159.570750px;}
.y11e{bottom:160.021050px;}
.y115{bottom:160.744650px;}
.y142{bottom:161.408250px;}
.y52{bottom:163.658250px;}
.y24{bottom:167.933250px;}
.y10d{bottom:172.021050px;}
.y117{bottom:172.798800px;}
.y7d{bottom:178.658250px;}
.yea{bottom:182.070750px;}
.y11d{bottom:182.521050px;}
.y141{bottom:183.908250px;}
.ycb{bottom:184.762500px;}
.y51{bottom:186.158250px;}
.y23{bottom:190.433250px;}
.y10c{bottom:194.521050px;}
.y7c{bottom:201.158250px;}
.ye9{bottom:204.570750px;}
.y11c{bottom:205.021050px;}
.y10a{bottom:205.744650px;}
.y140{bottom:206.408250px;}
.y50{bottom:208.658250px;}
.y22{bottom:212.933250px;}
.y10b{bottom:217.021050px;}
.y109{bottom:222.244650px;}
.y7b{bottom:223.658250px;}
.ye8{bottom:227.070750px;}
.y11b{bottom:227.521050px;}
.y13f{bottom:228.908250px;}
.y4f{bottom:231.158250px;}
.yca{bottom:232.762500px;}
.y21{bottom:235.433250px;}
.y119{bottom:238.744650px;}
.yaa{bottom:243.486900px;}
.y7a{bottom:246.158250px;}
.ye7{bottom:249.570750px;}
.y11a{bottom:250.021050px;}
.y13e{bottom:251.408250px;}
.y4e{bottom:253.658250px;}
.y118{bottom:255.244650px;}
.y20{bottom:257.933250px;}
.y79{bottom:268.658250px;}
.ye6{bottom:272.070750px;}
.y13d{bottom:273.908250px;}
.y4d{bottom:276.158250px;}
.y1f{bottom:280.433250px;}
.y78{bottom:291.158250px;}
.yc9{bottom:293.662500px;}
.ye5{bottom:294.570750px;}
.y13c{bottom:296.408250px;}
.y4c{bottom:298.658250px;}
.y1e{bottom:302.933250px;}
.y77{bottom:313.658250px;}
.ye4{bottom:317.070750px;}
.y13b{bottom:318.908250px;}
.y4b{bottom:321.158250px;}
.y1d{bottom:325.433250px;}
.y76{bottom:336.158250px;}
.ya8{bottom:339.224700px;}
.ye3{bottom:339.570750px;}
.y13a{bottom:341.408250px;}
.yc8{bottom:341.662500px;}
.y4a{bottom:343.658250px;}
.y1c{bottom:347.933250px;}
.y75{bottom:358.658250px;}
.ye2{bottom:362.070750px;}
.y139{bottom:363.908250px;}
.y49{bottom:366.158250px;}
.y1b{bottom:370.433250px;}
.ya6{bottom:372.524700px;}
.y74{bottom:381.158250px;}
.ye1{bottom:384.570750px;}
.y138{bottom:386.408250px;}
.y48{bottom:388.658250px;}
.y1a{bottom:392.933250px;}
.yc7{bottom:402.562500px;}
.y73{bottom:403.658250px;}
.ya3{bottom:406.387200px;}
.y137{bottom:408.908250px;}
.ye0{bottom:410.070750px;}
.y47{bottom:414.158250px;}
.y19{bottom:415.433250px;}
.y9b{bottom:415.658250px;}
.y72{bottom:426.158250px;}
.y136{bottom:431.408250px;}
.ydf{bottom:432.570750px;}
.y46{bottom:436.658250px;}
.y18{bottom:437.933250px;}
.y9a{bottom:438.158250px;}
.y114{bottom:447.036600px;}
.y71{bottom:448.658250px;}
.y135{bottom:453.908250px;}
.yde{bottom:455.070750px;}
.y45{bottom:459.158250px;}
.y17{bottom:460.433250px;}
.y99{bottom:460.658250px;}
.yc3{bottom:463.462500px;}
.y70{bottom:471.158250px;}
.y134{bottom:476.408250px;}
.ydd{bottom:477.570750px;}
.y44{bottom:481.658250px;}
.y16{bottom:482.933250px;}
.y98{bottom:483.158250px;}
.y6f{bottom:493.658250px;}
.y133{bottom:498.908250px;}
.ydc{bottom:500.070750px;}
.y43{bottom:504.158250px;}
.y15{bottom:505.433250px;}
.y97{bottom:505.658250px;}
.yc2{bottom:511.462500px;}
.y6e{bottom:516.158250px;}
.y132{bottom:521.408250px;}
.ydb{bottom:522.570750px;}
.y42{bottom:526.658250px;}
.y14{bottom:527.933250px;}
.y96{bottom:528.158250px;}
.y6d{bottom:538.658250px;}
.y131{bottom:543.908250px;}
.yda{bottom:545.070750px;}
.y41{bottom:549.158250px;}
.y13{bottom:550.433250px;}
.y95{bottom:550.658250px;}
.y6c{bottom:561.158250px;}
.y130{bottom:566.408250px;}
.yd9{bottom:567.570750px;}
.y40{bottom:571.658250px;}
.yc0{bottom:572.362500px;}
.y12{bottom:572.933250px;}
.y94{bottom:573.158250px;}
.y6b{bottom:583.658250px;}
.y12f{bottom:588.908250px;}
.yd8{bottom:590.070750px;}
.y3f{bottom:594.158250px;}
.y11{bottom:595.433250px;}
.y93{bottom:595.658250px;}
.y6a{bottom:606.158250px;}
.y12e{bottom:611.408250px;}
.yd7{bottom:612.570750px;}
.y3e{bottom:616.658250px;}
.y10{bottom:617.933250px;}
.y92{bottom:618.158250px;}
.y108{bottom:626.774400px;}
.y69{bottom:628.658250px;}
.ybe{bottom:633.262500px;}
.y12d{bottom:633.908250px;}
.yd6{bottom:635.070750px;}
.y3d{bottom:639.158250px;}
.yf{bottom:640.433250px;}
.y91{bottom:640.658250px;}
.y68{bottom:651.158250px;}
.y12c{bottom:655.631850px;}
.yd5{bottom:657.570750px;}
.y3c{bottom:661.658250px;}
.ye{bottom:662.933250px;}
.y90{bottom:663.158250px;}
.y12b{bottom:672.908250px;}
.y67{bottom:673.658250px;}
.yb8{bottom:677.662500px;}
.yd4{bottom:680.070750px;}
.y3b{bottom:684.158250px;}
.yd{bottom:685.433250px;}
.y8f{bottom:685.658250px;}
.yb5{bottom:688.658250px;}
.y12a{bottom:695.408250px;}
.y66{bottom:696.158250px;}
.yd3{bottom:701.362200px;}
.y3a{bottom:706.658250px;}
.yc{bottom:707.933250px;}
.y8e{bottom:708.158250px;}
.yb4{bottom:715.658250px;}
.y65{bottom:718.658250px;}
.yd2{bottom:719.362200px;}
.y39{bottom:729.158250px;}
.yb{bottom:730.433250px;}
.y8d{bottom:730.658250px;}
.yd1{bottom:737.362200px;}
.yb3{bottom:738.158250px;}
.y64{bottom:741.158250px;}
.y38{bottom:751.658250px;}
.ya{bottom:752.933250px;}
.y8c{bottom:753.158250px;}
.yb6{bottom:755.062500px;}
.yd0{bottom:755.707200px;}
.yb2{bottom:760.658250px;}
.y63{bottom:763.658250px;}
.y37{bottom:774.158250px;}
.y9{bottom:775.433250px;}
.y8b{bottom:775.658250px;}
.yb1{bottom:783.158250px;}
.y62{bottom:786.158250px;}
.y36{bottom:796.658250px;}
.y8{bottom:797.933250px;}
.y8a{bottom:798.158250px;}
.yb0{bottom:805.658250px;}
.y61{bottom:808.658250px;}
.y35{bottom:819.158250px;}
.y7{bottom:820.433250px;}
.y89{bottom:820.658250px;}
.y14f{bottom:825.750000px;}
.yaf{bottom:828.158250px;}
.y60{bottom:831.158250px;}
.y88{bottom:843.158250px;}
.y34{bottom:850.658250px;}
.y5f{bottom:853.658250px;}
.y14e{bottom:859.050000px;}
.y6{bottom:860.933250px;}
.y87{bottom:865.658250px;}
.y100{bottom:868.012200px;}
.yf9{bottom:868.912500px;}
.y33{bottom:873.158250px;}
.y5e{bottom:876.158250px;}
.y86{bottom:888.158250px;}
.y14c{bottom:892.350000px;}
.y129{bottom:892.658250px;}
.y32{bottom:895.658250px;}
.y5d{bottom:898.658250px;}
.y5{bottom:901.433250px;}
.y85{bottom:910.658250px;}
.y31{bottom:918.158250px;}
.y128{bottom:919.658250px;}
.y14a{bottom:925.650000px;}
.y5c{bottom:933.158250px;}
.y30{bottom:940.658250px;}
.y127{bottom:941.381850px;}
.y4{bottom:943.485900px;}
.yf3{bottom:952.725000px;}
.y5b{bottom:955.658250px;}
.y126{bottom:957.881850px;}
.y148{bottom:959.512500px;}
.y2f{bottom:963.158250px;}
.y3{bottom:970.485900px;}
.yfb{bottom:973.658250px;}
.y125{bottom:974.381850px;}
.y5a{bottom:978.158250px;}
.y2e{bottom:985.658250px;}
.y124{bottom:990.881850px;}
.y2{bottom:997.485900px;}
.y59{bottom:1000.658250px;}
.yfe{bottom:1025.250000px;}
.yf2{bottom:1036.725000px;}
.y2b{bottom:1163.672100px;}
.h21{height:32.737500px;}
.hf{height:32.925000px;}
.h1b{height:33.000000px;}
.hd{height:33.112500px;}
.h11{height:33.187500px;}
.ha{height:41.660156px;}
.he{height:41.689453px;}
.h12{height:43.037109px;}
.h18{height:44.003906px;}
.hb{height:44.362800px;}
.h14{height:44.400000px;}
.h22{height:44.501953px;}
.h16{height:48.000000px;}
.h23{height:49.992188px;}
.h3{height:50.027344px;}
.h6{height:50.305665px;}
.hc{height:53.291016px;}
.h9{height:60.449707px;}
.h15{height:60.900000px;}
.h5{height:63.949219px;}
.h13{height:77.400000px;}
.h1a{height:83.812500px;}
.h19{height:84.000000px;}
.h2{height:85.265625px;}
.h10{height:95.362800px;}
.h4{height:108.432341px;}
.h1c{height:156.862800px;}
.h1e{height:179.362800px;}
.h1d{height:240.862800px;}
.h1f{height:273.862800px;}
.h20{height:1012.152900px;}
.h7{height:1012.983450px;}
.h17{height:1024.500000px;}
.h8{height:1027.983450px;}
.h1{height:1029.419550px;}
.h0{height:1263.000000px;}
.w7{width:158.844600px;}
.w8{width:158.910750px;}
.w9{width:217.125000px;}
.w5{width:317.850000px;}
.w6{width:317.925000px;}
.wa{width:413.850000px;}
.w2{width:654.580650px;}
.w4{width:656.241750px;}
.w3{width:657.741750px;}
.w1{width:668.658000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xd{left:6.000000px;}
.x9{left:8.652825px;}
.x7{left:11.144535px;}
.x3{left:24.942135px;}
.x2{left:36.608235px;}
.x12{left:136.226100px;}
.x1{left:137.730465px;}
.x8{left:140.222175px;}
.x11{left:144.502350px;}
.x4{left:145.627785px;}
.xc{left:149.250000px;}
.x13{left:151.676055px;}
.xa{left:163.831305px;}
.x15{left:172.382355px;}
.x5{left:246.063285px;}
.x16{left:253.051305px;}
.xf{left:308.469600px;}
.xb{left:328.120905px;}
.x6{left:329.782035px;}
.x14{left:366.750000px;}
.xe{left:467.475000px;}
.x10{left:626.974950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.925333pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:-0.010667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.017067pt;}
.ls1{letter-spacing:1.056000pt;}
.ws3{word-spacing:-16.012800pt;}
.ws2{word-spacing:-15.987200pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-7.366400pt;}
._2{margin-left:-6.016000pt;}
._0{margin-left:-4.710400pt;}
._7{margin-left:-2.899200pt;}
._1{margin-left:-1.476267pt;}
._5{width:1.689600pt;}
._f{width:2.596267pt;}
._c{width:3.520000pt;}
._3{width:4.787200pt;}
._4{width:6.412800pt;}
._e{width:7.321600pt;}
._6{width:8.371200pt;}
._d{width:9.600000pt;}
._a{width:10.604800pt;}
._9{width:12.070400pt;}
._15{width:13.196800pt;}
._12{width:14.310400pt;}
._14{width:16.378667pt;}
._11{width:18.928000pt;}
._13{width:26.890667pt;}
._8{width:30.752000pt;}
._10{width:35.420800pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:77.333333pt;}
.fs0{font-size:85.333333pt;}
.fs2{font-size:134.373760pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:8.217467pt;}
.ybc{bottom:8.250533pt;}
.y149{bottom:10.833067pt;}
.y14d{bottom:10.999733pt;}
.y14b{bottom:11.166400pt;}
.yb7{bottom:11.233067pt;}
.yce{bottom:11.450520pt;}
.yc5{bottom:11.450533pt;}
.ya9{bottom:12.717200pt;}
.yff{bottom:12.783867pt;}
.ya7{bottom:12.883867pt;}
.yf7{bottom:14.117200pt;}
.y84{bottom:18.807293pt;}
.ybf{bottom:21.199733pt;}
.yf1{bottom:21.840627pt;}
.ya4{bottom:22.884133pt;}
.ybb{bottom:22.917200pt;}
.yae{bottom:23.574267pt;}
.ycf{bottom:24.399720pt;}
.yc6{bottom:24.399733pt;}
.ya2{bottom:25.216667pt;}
.y2c{bottom:25.808667pt;}
.ycd{bottom:26.117187pt;}
.yc4{bottom:26.117200pt;}
.yf6{bottom:28.783867pt;}
.y2a{bottom:29.273960pt;}
.yfd{bottom:31.072920pt;}
.yc1{bottom:35.866400pt;}
.y113{bottom:37.550800pt;}
.yba{bottom:37.583867pt;}
.y107{bottom:38.240933pt;}
.y83{bottom:38.807293pt;}
.ya1{bottom:39.883333pt;}
.yf0{bottom:41.840627pt;}
.yf5{bottom:43.450533pt;}
.y147{bottom:43.474000pt;}
.yad{bottom:43.574267pt;}
.y57{bottom:45.474000pt;}
.y29{bottom:49.273960pt;}
.ybd{bottom:50.533067pt;}
.yfc{bottom:51.072920pt;}
.y123{bottom:52.217467pt;}
.yb9{bottom:52.250533pt;}
.y112{bottom:52.907600pt;}
.ya0{bottom:54.550000pt;}
.yf8{bottom:56.399733pt;}
.yfa{bottom:57.950533pt;}
.yf4{bottom:58.117200pt;}
.y106{bottom:58.240933pt;}
.y82{bottom:58.807333pt;}
.yef{bottom:61.840667pt;}
.y146{bottom:63.474000pt;}
.yac{bottom:63.574267pt;}
.y56{bottom:65.474000pt;}
.y122{bottom:66.884133pt;}
.yab{bottom:68.217467pt;}
.y9f{bottom:69.216667pt;}
.y28{bottom:69.274000pt;}
.y111{bottom:72.907600pt;}
.y105{bottom:78.240933pt;}
.y81{bottom:78.807333pt;}
.y58{bottom:81.000000pt;}
.y1{bottom:81.200000pt;}
.yee{bottom:81.840667pt;}
.y121{bottom:82.240933pt;}
.y145{bottom:83.474000pt;}
.y9e{bottom:83.883333pt;}
.y55{bottom:85.474000pt;}
.y27{bottom:89.274000pt;}
.y110{bottom:92.907600pt;}
.y2d{bottom:94.333333pt;}
.y104{bottom:98.240933pt;}
.y9d{bottom:98.550000pt;}
.y80{bottom:98.807333pt;}
.yed{bottom:101.840667pt;}
.y120{bottom:102.240933pt;}
.y144{bottom:103.474000pt;}
.y54{bottom:105.474000pt;}
.y102{bottom:108.217467pt;}
.y26{bottom:109.274000pt;}
.y10f{bottom:112.907600pt;}
.y9c{bottom:113.906800pt;}
.y103{bottom:118.240933pt;}
.y7f{bottom:118.807333pt;}
.ycc{bottom:121.566680pt;}
.yec{bottom:121.840667pt;}
.y11f{bottom:122.240933pt;}
.y101{bottom:122.884133pt;}
.y143{bottom:123.474000pt;}
.y53{bottom:125.474000pt;}
.y25{bottom:129.274000pt;}
.y10e{bottom:132.907600pt;}
.y116{bottom:138.240933pt;}
.y7e{bottom:138.807333pt;}
.yeb{bottom:141.840667pt;}
.y11e{bottom:142.240933pt;}
.y115{bottom:142.884133pt;}
.y142{bottom:143.474000pt;}
.y52{bottom:145.474000pt;}
.y24{bottom:149.274000pt;}
.y10d{bottom:152.907600pt;}
.y117{bottom:153.598933pt;}
.y7d{bottom:158.807333pt;}
.yea{bottom:161.840667pt;}
.y11d{bottom:162.240933pt;}
.y141{bottom:163.474000pt;}
.ycb{bottom:164.233333pt;}
.y51{bottom:165.474000pt;}
.y23{bottom:169.274000pt;}
.y10c{bottom:172.907600pt;}
.y7c{bottom:178.807333pt;}
.ye9{bottom:181.840667pt;}
.y11c{bottom:182.240933pt;}
.y10a{bottom:182.884133pt;}
.y140{bottom:183.474000pt;}
.y50{bottom:185.474000pt;}
.y22{bottom:189.274000pt;}
.y10b{bottom:192.907600pt;}
.y109{bottom:197.550800pt;}
.y7b{bottom:198.807333pt;}
.ye8{bottom:201.840667pt;}
.y11b{bottom:202.240933pt;}
.y13f{bottom:203.474000pt;}
.y4f{bottom:205.474000pt;}
.yca{bottom:206.900000pt;}
.y21{bottom:209.274000pt;}
.y119{bottom:212.217467pt;}
.yaa{bottom:216.432800pt;}
.y7a{bottom:218.807333pt;}
.ye7{bottom:221.840667pt;}
.y11a{bottom:222.240933pt;}
.y13e{bottom:223.474000pt;}
.y4e{bottom:225.474000pt;}
.y118{bottom:226.884133pt;}
.y20{bottom:229.274000pt;}
.y79{bottom:238.807333pt;}
.ye6{bottom:241.840667pt;}
.y13d{bottom:243.474000pt;}
.y4d{bottom:245.474000pt;}
.y1f{bottom:249.274000pt;}
.y78{bottom:258.807333pt;}
.yc9{bottom:261.033333pt;}
.ye5{bottom:261.840667pt;}
.y13c{bottom:263.474000pt;}
.y4c{bottom:265.474000pt;}
.y1e{bottom:269.274000pt;}
.y77{bottom:278.807333pt;}
.ye4{bottom:281.840667pt;}
.y13b{bottom:283.474000pt;}
.y4b{bottom:285.474000pt;}
.y1d{bottom:289.274000pt;}
.y76{bottom:298.807333pt;}
.ya8{bottom:301.533067pt;}
.ye3{bottom:301.840667pt;}
.y13a{bottom:303.474000pt;}
.yc8{bottom:303.700000pt;}
.y4a{bottom:305.474000pt;}
.y1c{bottom:309.274000pt;}
.y75{bottom:318.807333pt;}
.ye2{bottom:321.840667pt;}
.y139{bottom:323.474000pt;}
.y49{bottom:325.474000pt;}
.y1b{bottom:329.274000pt;}
.ya6{bottom:331.133067pt;}
.y74{bottom:338.807333pt;}
.ye1{bottom:341.840667pt;}
.y138{bottom:343.474000pt;}
.y48{bottom:345.474000pt;}
.y1a{bottom:349.274000pt;}
.yc7{bottom:357.833333pt;}
.y73{bottom:358.807333pt;}
.ya3{bottom:361.233067pt;}
.y137{bottom:363.474000pt;}
.ye0{bottom:364.507333pt;}
.y47{bottom:368.140667pt;}
.y19{bottom:369.274000pt;}
.y9b{bottom:369.474000pt;}
.y72{bottom:378.807333pt;}
.y136{bottom:383.474000pt;}
.ydf{bottom:384.507333pt;}
.y46{bottom:388.140667pt;}
.y18{bottom:389.274000pt;}
.y9a{bottom:389.474000pt;}
.y114{bottom:397.365867pt;}
.y71{bottom:398.807333pt;}
.y135{bottom:403.474000pt;}
.yde{bottom:404.507333pt;}
.y45{bottom:408.140667pt;}
.y17{bottom:409.274000pt;}
.y99{bottom:409.474000pt;}
.yc3{bottom:411.966667pt;}
.y70{bottom:418.807333pt;}
.y134{bottom:423.474000pt;}
.ydd{bottom:424.507333pt;}
.y44{bottom:428.140667pt;}
.y16{bottom:429.274000pt;}
.y98{bottom:429.474000pt;}
.y6f{bottom:438.807333pt;}
.y133{bottom:443.474000pt;}
.ydc{bottom:444.507333pt;}
.y43{bottom:448.140667pt;}
.y15{bottom:449.274000pt;}
.y97{bottom:449.474000pt;}
.yc2{bottom:454.633333pt;}
.y6e{bottom:458.807333pt;}
.y132{bottom:463.474000pt;}
.ydb{bottom:464.507333pt;}
.y42{bottom:468.140667pt;}
.y14{bottom:469.274000pt;}
.y96{bottom:469.474000pt;}
.y6d{bottom:478.807333pt;}
.y131{bottom:483.474000pt;}
.yda{bottom:484.507333pt;}
.y41{bottom:488.140667pt;}
.y13{bottom:489.274000pt;}
.y95{bottom:489.474000pt;}
.y6c{bottom:498.807333pt;}
.y130{bottom:503.474000pt;}
.yd9{bottom:504.507333pt;}
.y40{bottom:508.140667pt;}
.yc0{bottom:508.766667pt;}
.y12{bottom:509.274000pt;}
.y94{bottom:509.474000pt;}
.y6b{bottom:518.807333pt;}
.y12f{bottom:523.474000pt;}
.yd8{bottom:524.507333pt;}
.y3f{bottom:528.140667pt;}
.y11{bottom:529.274000pt;}
.y93{bottom:529.474000pt;}
.y6a{bottom:538.807333pt;}
.y12e{bottom:543.474000pt;}
.yd7{bottom:544.507333pt;}
.y3e{bottom:548.140667pt;}
.y10{bottom:549.274000pt;}
.y92{bottom:549.474000pt;}
.y108{bottom:557.132800pt;}
.y69{bottom:558.807333pt;}
.ybe{bottom:562.900000pt;}
.y12d{bottom:563.474000pt;}
.yd6{bottom:564.507333pt;}
.y3d{bottom:568.140667pt;}
.yf{bottom:569.274000pt;}
.y91{bottom:569.474000pt;}
.y68{bottom:578.807333pt;}
.y12c{bottom:582.783867pt;}
.yd5{bottom:584.507333pt;}
.y3c{bottom:588.140667pt;}
.ye{bottom:589.274000pt;}
.y90{bottom:589.474000pt;}
.y12b{bottom:598.140667pt;}
.y67{bottom:598.807333pt;}
.yb8{bottom:602.366667pt;}
.yd4{bottom:604.507333pt;}
.y3b{bottom:608.140667pt;}
.yd{bottom:609.274000pt;}
.y8f{bottom:609.474000pt;}
.yb5{bottom:612.140667pt;}
.y12a{bottom:618.140667pt;}
.y66{bottom:618.807333pt;}
.yd3{bottom:623.433067pt;}
.y3a{bottom:628.140667pt;}
.yc{bottom:629.274000pt;}
.y8e{bottom:629.474000pt;}
.yb4{bottom:636.140667pt;}
.y65{bottom:638.807333pt;}
.yd2{bottom:639.433067pt;}
.y39{bottom:648.140667pt;}
.yb{bottom:649.274000pt;}
.y8d{bottom:649.474000pt;}
.yd1{bottom:655.433067pt;}
.yb3{bottom:656.140667pt;}
.y64{bottom:658.807333pt;}
.y38{bottom:668.140667pt;}
.ya{bottom:669.274000pt;}
.y8c{bottom:669.474000pt;}
.yb6{bottom:671.166667pt;}
.yd0{bottom:671.739733pt;}
.yb2{bottom:676.140667pt;}
.y63{bottom:678.807333pt;}
.y37{bottom:688.140667pt;}
.y9{bottom:689.274000pt;}
.y8b{bottom:689.474000pt;}
.yb1{bottom:696.140667pt;}
.y62{bottom:698.807333pt;}
.y36{bottom:708.140667pt;}
.y8{bottom:709.274000pt;}
.y8a{bottom:709.474000pt;}
.yb0{bottom:716.140667pt;}
.y61{bottom:718.807333pt;}
.y35{bottom:728.140667pt;}
.y7{bottom:729.274000pt;}
.y89{bottom:729.474000pt;}
.y14f{bottom:734.000000pt;}
.yaf{bottom:736.140667pt;}
.y60{bottom:738.807333pt;}
.y88{bottom:749.474000pt;}
.y34{bottom:756.140667pt;}
.y5f{bottom:758.807333pt;}
.y14e{bottom:763.600000pt;}
.y6{bottom:765.274000pt;}
.y87{bottom:769.474000pt;}
.y100{bottom:771.566400pt;}
.yf9{bottom:772.366667pt;}
.y33{bottom:776.140667pt;}
.y5e{bottom:778.807333pt;}
.y86{bottom:789.474000pt;}
.y14c{bottom:793.200000pt;}
.y129{bottom:793.474000pt;}
.y32{bottom:796.140667pt;}
.y5d{bottom:798.807333pt;}
.y5{bottom:801.274000pt;}
.y85{bottom:809.474000pt;}
.y31{bottom:816.140667pt;}
.y128{bottom:817.474000pt;}
.y14a{bottom:822.800000pt;}
.y5c{bottom:829.474000pt;}
.y30{bottom:836.140667pt;}
.y127{bottom:836.783867pt;}
.y4{bottom:838.654133pt;}
.yf3{bottom:846.866667pt;}
.y5b{bottom:849.474000pt;}
.y126{bottom:851.450533pt;}
.y148{bottom:852.900000pt;}
.y2f{bottom:856.140667pt;}
.y3{bottom:862.654133pt;}
.yfb{bottom:865.474000pt;}
.y125{bottom:866.117200pt;}
.y5a{bottom:869.474000pt;}
.y2e{bottom:876.140667pt;}
.y124{bottom:880.783867pt;}
.y2{bottom:886.654133pt;}
.y59{bottom:889.474000pt;}
.yfe{bottom:911.333333pt;}
.yf2{bottom:921.533333pt;}
.y2b{bottom:1034.375200pt;}
.h21{height:29.100000pt;}
.hf{height:29.266667pt;}
.h1b{height:29.333333pt;}
.hd{height:29.433333pt;}
.h11{height:29.500000pt;}
.ha{height:37.031250pt;}
.he{height:37.057292pt;}
.h12{height:38.255208pt;}
.h18{height:39.114583pt;}
.hb{height:39.433600pt;}
.h14{height:39.466667pt;}
.h22{height:39.557292pt;}
.h16{height:42.666667pt;}
.h23{height:44.437500pt;}
.h3{height:44.468750pt;}
.h6{height:44.716147pt;}
.hc{height:47.369792pt;}
.h9{height:53.733073pt;}
.h15{height:54.133333pt;}
.h5{height:56.843750pt;}
.h13{height:68.800000pt;}
.h1a{height:74.500000pt;}
.h19{height:74.666667pt;}
.h2{height:75.791667pt;}
.h10{height:84.766933pt;}
.h4{height:96.384303pt;}
.h1c{height:139.433600pt;}
.h1e{height:159.433600pt;}
.h1d{height:214.100267pt;}
.h1f{height:243.433600pt;}
.h20{height:899.691467pt;}
.h7{height:900.429733pt;}
.h17{height:910.666667pt;}
.h8{height:913.763067pt;}
.h1{height:915.039600pt;}
.h0{height:1122.666667pt;}
.w7{width:141.195200pt;}
.w8{width:141.254000pt;}
.w9{width:193.000000pt;}
.w5{width:282.533333pt;}
.w6{width:282.600000pt;}
.wa{width:367.866667pt;}
.w2{width:581.849467pt;}
.w4{width:583.326000pt;}
.w3{width:584.659333pt;}
.w1{width:594.362667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xd{left:5.333333pt;}
.x9{left:7.691400pt;}
.x7{left:9.906253pt;}
.x3{left:22.170787pt;}
.x2{left:32.540653pt;}
.x12{left:121.089867pt;}
.x1{left:122.427080pt;}
.x8{left:124.641933pt;}
.x11{left:128.446533pt;}
.x4{left:129.446920pt;}
.xc{left:132.666667pt;}
.x13{left:134.823160pt;}
.xa{left:145.627827pt;}
.x15{left:153.228760pt;}
.x5{left:218.722920pt;}
.x16{left:224.934493pt;}
.xf{left:274.195200pt;}
.xb{left:291.663027pt;}
.x6{left:293.139587pt;}
.x14{left:326.000000pt;}
.xe{left:415.533333pt;}
.x10{left:557.311067pt;}
}




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