
    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_50f259e1e9517868a6a0ff92.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4bcef8761733efdb7cf964fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_57db658af7e8c7738cd9b788.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_92de47bd9724480f244086bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_39bba896c0815375016752fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_0f3efe8c4dbff2a45610ea5f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3b405ef878fca4d775f02453.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8bf73bfc1f61eca2449a62be.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9a964b581307d8f365b3d553.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_76f1a70fa1e3b311d417ec4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_1550b3dfd3a510dd651eb438.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.681641;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_e09f99ee02a5e74246c6fd3c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ac1a3cb11b49c0d24469e85e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e9393be53694839f7d66cf6b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_dbf418981c5e6f8c57d85305.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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:ff10;src:url('chunks/assets/font_0744695b19ada92b1ad2a88d.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1d{letter-spacing:-3.960000px;}
.ls31{letter-spacing:-2.866752px;}
.ls15{letter-spacing:-2.570112px;}
.lse{letter-spacing:-1.368576px;}
.ls2c{letter-spacing:-0.417312px;}
.ls2d{letter-spacing:-0.399168px;}
.ls2f{letter-spacing:-0.381024px;}
.ls13{letter-spacing:-0.348480px;}
.ls24{letter-spacing:-0.338688px;}
.ls2b{letter-spacing:-0.320544px;}
.ls26{letter-spacing:-0.302400px;}
.ls27{letter-spacing:-0.260064px;}
.lsf{letter-spacing:-0.247104px;}
.ls25{letter-spacing:-0.241920px;}
.ls2e{letter-spacing:-0.223776px;}
.lsb{letter-spacing:-0.205344px;}
.ls14{letter-spacing:-0.190080px;}
.ls11{letter-spacing:-0.177408px;}
.ls30{letter-spacing:-0.175392px;}
.ls16{letter-spacing:-0.171072px;}
.lsd{letter-spacing:-0.158976px;}
.ls29{letter-spacing:-0.157248px;}
.ls2a{letter-spacing:-0.145152px;}
.ls17{letter-spacing:-0.133056px;}
.ls28{letter-spacing:-0.120960px;}
.ls12{letter-spacing:-0.120384px;}
.ls18{letter-spacing:-0.107712px;}
.ls10{letter-spacing:-0.088704px;}
.lsc{letter-spacing:-0.059616px;}
.ls19{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls1a{letter-spacing:0.061776px;}
.ls3{letter-spacing:0.080640px;}
.ls2{letter-spacing:0.082080px;}
.ls1b{letter-spacing:0.083520px;}
.ls0{letter-spacing:0.100224px;}
.ls9{letter-spacing:0.112752px;}
.ls5{letter-spacing:0.119952px;}
.ls1{letter-spacing:0.121104px;}
.ls8{letter-spacing:0.133632px;}
.lsa{letter-spacing:0.150336px;}
.ls4{letter-spacing:0.240048px;}
.ls1c{letter-spacing:0.309600px;}
.ls33{letter-spacing:0.720576px;}
.ls32{letter-spacing:7.463520px;}
.ls22{letter-spacing:11.148912px;}
.ls23{letter-spacing:11.149056px;}
.ls20{letter-spacing:12.824640px;}
.ls1f{letter-spacing:12.824784px;}
.ls21{letter-spacing:18.446400px;}
.ls1e{letter-spacing:33.984000px;}
.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;}
}
.wse{word-spacing:-18.014400px;}
.wsc{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.985600px;}
.ws7{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.719616px;}
.wsa{word-spacing:-15.706944px;}
.ws8{word-spacing:-15.662592px;}
.ws6{word-spacing:-15.592896px;}
.ws13{word-spacing:-15.120000px;}
.ws19{word-spacing:-14.974848px;}
.ws16{word-spacing:-14.962752px;}
.ws18{word-spacing:-14.896224px;}
.ws11{word-spacing:-14.878080px;}
.ws12{word-spacing:-14.859936px;}
.ws15{word-spacing:-14.817600px;}
.ws14{word-spacing:-14.799456px;}
.ws10{word-spacing:-14.781312px;}
.ws17{word-spacing:-14.702688px;}
.ws9{word-spacing:-13.989888px;}
.ws1a{word-spacing:-12.253248px;}
.ws5{word-spacing:-0.192096px;}
.ws3{word-spacing:-0.175392px;}
.ws1{word-spacing:-0.162864px;}
.ws4{word-spacing:-0.154512px;}
.ws2{word-spacing:-0.041760px;}
.wsf{word-spacing:0.000000px;}
.ws0{word-spacing:29.424096px;}
._4{margin-left:-8.259696px;}
._5{margin-left:-7.223040px;}
._a{margin-left:-5.038848px;}
._1{margin-left:-3.931200px;}
._3{margin-left:-2.603952px;}
._0{margin-left:-1.002240px;}
._2{width:1.059840px;}
._6{width:2.450880px;}
._d{width:3.726720px;}
._11{width:5.056128px;}
._8{width:6.652800px;}
._9{width:7.666560px;}
._7{width:9.630720px;}
._f{width:10.907712px;}
._e{width:12.180816px;}
._c{width:13.381200px;}
._b{width:14.478048px;}
._13{width:15.478560px;}
._12{width:16.588800px;}
._16{width:17.948304px;}
._10{width:19.320048px;}
._14{width:20.844000px;}
._15{width:24.226992px;}
.fc2{color:rgb(0,0,237);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:4.020000px;}
.y1d{bottom:4.080000px;}
.yd{bottom:4.320000px;}
.y31{bottom:4.740000px;}
.y1c{bottom:22.080000px;}
.yc{bottom:22.320000px;}
.y1b{bottom:40.440000px;}
.y10{bottom:40.740000px;}
.y30{bottom:52.500000px;}
.y4{bottom:55.440000px;}
.y2f{bottom:57.240000px;}
.y1a{bottom:58.440000px;}
.yb{bottom:58.680000px;}
.y3{bottom:67.680000px;}
.y19{bottom:76.440000px;}
.y2{bottom:79.920000px;}
.y18{bottom:94.800000px;}
.y17{bottom:112.800000px;}
.y2e{bottom:120.600000px;}
.y74{bottom:126.360000px;}
.y16{bottom:130.800000px;}
.y2d{bottom:141.480000px;}
.y73{bottom:146.880000px;}
.y15{bottom:149.160000px;}
.y55{bottom:149.400000px;}
.yb9{bottom:149.760000px;}
.ye6{bottom:163.440000px;}
.y72{bottom:167.760000px;}
.ya4{bottom:169.920000px;}
.y54{bottom:170.280000px;}
.y94{bottom:172.440000px;}
.y2c{bottom:179.640000px;}
.y14{bottom:185.160000px;}
.y71{bottom:188.280000px;}
.y53{bottom:191.160000px;}
.y93{bottom:193.320000px;}
.ye5{bottom:198.720000px;}
.y2b{bottom:200.520000px;}
.yca{bottom:209.160000px;}
.y52{bottom:211.680000px;}
.y92{bottom:214.200000px;}
.ye4{bottom:216.000000px;}
.y70{bottom:219.240000px;}
.y2a{bottom:221.400000px;}
.yb8{bottom:229.320000px;}
.yc9{bottom:229.680000px;}
.y51{bottom:232.560000px;}
.y91{bottom:234.720000px;}
.y29{bottom:241.920000px;}
.ye3{bottom:251.280000px;}
.y90{bottom:255.600000px;}
.y6f{bottom:257.760000px;}
.y28{bottom:262.800000px;}
.yb7{bottom:268.200000px;}
.ye2{bottom:268.560000px;}
.ya3{bottom:270.360000px;}
.y50{bottom:270.720000px;}
.y8f{bottom:276.120000px;}
.y6e{bottom:279.000000px;}
.y27{bottom:283.320000px;}
.ya2{bottom:288.360000px;}
.yb6{bottom:289.080000px;}
.y4f{bottom:291.960000px;}
.y8e{bottom:297.000000px;}
.y6d{bottom:299.520000px;}
.ye1{bottom:303.840000px;}
.y26{bottom:304.200000px;}
.ya1{bottom:306.720000px;}
.yb5{bottom:309.960000px;}
.y6c{bottom:320.400000px;}
.ye0{bottom:321.120000px;}
.yc8{bottom:327.960000px;}
.y4e{bottom:330.120000px;}
.y8d{bottom:335.160000px;}
.y6b{bottom:340.920000px;}
.y25{bottom:342.360000px;}
.yb4{bottom:348.120000px;}
.yc7{bottom:348.480000px;}
.y4d{bottom:351.360000px;}
.y8c{bottom:356.400000px;}
.y24{bottom:363.600000px;}
.yb3{bottom:369.360000px;}
.y6a{bottom:371.520000px;}
.ydf{bottom:373.680000px;}
.y8b{bottom:376.920000px;}
.y23{bottom:384.120000px;}
.y4c{bottom:389.520000px;}
.yb2{bottom:389.880000px;}
.y8a{bottom:397.800000px;}
.y22{bottom:405.000000px;}
.yde{bottom:408.960000px;}
.y69{bottom:410.400000px;}
.y4b{bottom:410.760000px;}
.y89{bottom:418.320000px;}
.y21{bottom:425.520000px;}
.ydd{bottom:426.240000px;}
.yb1{bottom:428.400000px;}
.y4a{bottom:431.280000px;}
.y88{bottom:439.200000px;}
.y20{bottom:446.400000px;}
.yb0{bottom:449.280000px;}
.y68{bottom:452.160000px;}
.y87{bottom:459.720000px;}
.ydc{bottom:461.160000px;}
.y1f{bottom:466.920000px;}
.y49{bottom:469.800000px;}
.yaf{bottom:470.160000px;}
.y67{bottom:472.680000px;}
.y86{bottom:480.600000px;}
.y48{bottom:490.680000px;}
.y66{bottom:493.560000px;}
.ydb{bottom:496.440000px;}
.y85{bottom:501.120000px;}
.y1e{bottom:505.080000px;}
.y47{bottom:511.560000px;}
.yda{bottom:513.720000px;}
.yc6{bottom:514.080000px;}
.y13{bottom:519.000000px;}
.y84{bottom:522.000000px;}
.y65{bottom:524.160000px;}
.y46{bottom:532.080000px;}
.yae{bottom:542.160000px;}
.y83{bottom:542.520000px;}
.yc5{bottom:545.040000px;}
.yd9{bottom:551.520000px;}
.y45{bottom:552.960000px;}
.y64{bottom:563.040000px;}
.yd8{bottom:571.320000px;}
.y82{bottom:573.120000px;}
.y44{bottom:573.480000px;}
.yad{bottom:581.040000px;}
.yc4{bottom:583.560000px;}
.y63{bottom:583.920000px;}
.y43{bottom:594.360000px;}
.ya0{bottom:601.560000px;}
.yac{bottom:601.920000px;}
.y62{bottom:604.800000px;}
.yd7{bottom:609.480000px;}
.y81{bottom:612.000000px;}
.y42{bottom:614.880000px;}
.yab{bottom:622.800000px;}
.y61{bottom:625.320000px;}
.yd6{bottom:629.280000px;}
.y41{bottom:635.760000px;}
.y9f{bottom:640.440000px;}
.yaa{bottom:643.320000px;}
.y60{bottom:645.840000px;}
.y80{bottom:650.520000px;}
.y40{bottom:656.280000px;}
.y9e{bottom:661.320000px;}
.yc3{bottom:666.720000px;}
.yd5{bottom:667.080000px;}
.y7f{bottom:671.760000px;}
.y5f{bottom:676.800000px;}
.ya9{bottom:681.480000px;}
.y9d{bottom:681.840000px;}
.y7e{bottom:692.280000px;}
.y3f{bottom:694.800000px;}
.yc2{bottom:697.320000px;}
.y9c{bottom:702.720000px;}
.yd4{bottom:704.880000px;}
.y7d{bottom:713.160000px;}
.y5e{bottom:715.320000px;}
.y3e{bottom:715.680000px;}
.y12{bottom:722.160000px;}
.y9b{bottom:723.240000px;}
.y7c{bottom:733.680000px;}
.yc1{bottom:736.200000px;}
.yf{bottom:736.500000px;}
.y3d{bottom:736.560000px;}
.yd3{bottom:742.680000px;}
.y9a{bottom:744.120000px;}
.y7b{bottom:754.560000px;}
.y3c{bottom:757.080000px;}
.ya8{bottom:761.760000px;}
.yd2{bottom:762.480000px;}
.y99{bottom:774.720000px;}
.y7a{bottom:775.080000px;}
.y3b{bottom:777.960000px;}
.yd1{bottom:782.280000px;}
.ya7{bottom:782.640000px;}
.ye{bottom:795.600000px;}
.y79{bottom:795.960000px;}
.yc0{bottom:798.480000px;}
.ya{bottom:810.000000px;}
.y98{bottom:813.600000px;}
.y3a{bottom:816.120000px;}
.y5d{bottom:816.480000px;}
.yd0{bottom:817.560000px;}
.y78{bottom:834.120000px;}
.y97{bottom:834.480000px;}
.ycf{bottom:834.840000px;}
.ybf{bottom:837.000000px;}
.y5c{bottom:837.360000px;}
.ya6{bottom:852.120000px;}
.y39{bottom:855.000000px;}
.y96{bottom:855.360000px;}
.ybe{bottom:857.880000px;}
.yce{bottom:870.120000px;}
.y77{bottom:873.000000px;}
.ya5{bottom:873.360000px;}
.y5b{bottom:875.520000px;}
.y38{bottom:875.880000px;}
.ybd{bottom:878.760000px;}
.ycd{bottom:887.400000px;}
.y76{bottom:893.880000px;}
.yed{bottom:894.240000px;}
.y5a{bottom:896.760000px;}
.ybc{bottom:899.280000px;}
.y9{bottom:904.680000px;}
.yec{bottom:911.520000px;}
.y37{bottom:914.400000px;}
.y75{bottom:914.760000px;}
.y59{bottom:917.280000px;}
.ycc{bottom:922.680000px;}
.yeb{bottom:924.120000px;}
.y36{bottom:935.280000px;}
.ybb{bottom:937.800000px;}
.y58{bottom:938.160000px;}
.y8{bottom:948.600000px;}
.y35{bottom:956.160000px;}
.ycb{bottom:958.320000px;}
.y57{bottom:958.680000px;}
.yea{bottom:962.640000px;}
.y95{bottom:976.320000px;}
.y34{bottom:976.680000px;}
.y7{bottom:979.200000px;}
.y56{bottom:979.560000px;}
.ye9{bottom:983.520000px;}
.yba{bottom:997.200000px;}
.y33{bottom:997.560000px;}
.ye8{bottom:1003.320000px;}
.y6{bottom:1017.720000px;}
.y32{bottom:1018.080000px;}
.ye7{bottom:1020.600000px;}
.y5{bottom:1038.960000px;}
.y1{bottom:1055.520000px;}
.hb{height:22.500000px;}
.hd{height:26.274375px;}
.h5{height:28.220625px;}
.h2{height:29.280938px;}
.hc{height:42.022969px;}
.h8{height:44.024063px;}
.h6{height:45.992813px;}
.h3{height:48.796875px;}
.h1{height:50.027344px;}
.h9{height:55.500000px;}
.h4{height:56.593125px;}
.h7{height:73.500000px;}
.ha{height:201.000000px;}
.h0{height:1188.000000px;}
.w3{width:12.000000px;}
.w2{width:700.500000px;}
.w1{width:702.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:1.320000px;}
.x5{left:7.859964px;}
.x8{left:59.901132px;}
.x7{left:82.416108px;}
.x2{left:108.000000px;}
.x4{left:109.500000px;}
.xd{left:123.525144px;}
.x9{left:150.525144px;}
.x1{left:187.499988px;}
.x3{left:303.209460px;}
.xe{left:324.000000px;}
.xc{left:337.526352px;}
.x6{left:375.201120px;}
.xa{left:453.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1d{letter-spacing:-3.520000pt;}
.ls31{letter-spacing:-2.548224pt;}
.ls15{letter-spacing:-2.284544pt;}
.lse{letter-spacing:-1.216512pt;}
.ls2c{letter-spacing:-0.370944pt;}
.ls2d{letter-spacing:-0.354816pt;}
.ls2f{letter-spacing:-0.338688pt;}
.ls13{letter-spacing:-0.309760pt;}
.ls24{letter-spacing:-0.301056pt;}
.ls2b{letter-spacing:-0.284928pt;}
.ls26{letter-spacing:-0.268800pt;}
.ls27{letter-spacing:-0.231168pt;}
.lsf{letter-spacing:-0.219648pt;}
.ls25{letter-spacing:-0.215040pt;}
.ls2e{letter-spacing:-0.198912pt;}
.lsb{letter-spacing:-0.182528pt;}
.ls14{letter-spacing:-0.168960pt;}
.ls11{letter-spacing:-0.157696pt;}
.ls30{letter-spacing:-0.155904pt;}
.ls16{letter-spacing:-0.152064pt;}
.lsd{letter-spacing:-0.141312pt;}
.ls29{letter-spacing:-0.139776pt;}
.ls2a{letter-spacing:-0.129024pt;}
.ls17{letter-spacing:-0.118272pt;}
.ls28{letter-spacing:-0.107520pt;}
.ls12{letter-spacing:-0.107008pt;}
.ls18{letter-spacing:-0.095744pt;}
.ls10{letter-spacing:-0.078848pt;}
.lsc{letter-spacing:-0.052992pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls1a{letter-spacing:0.054912pt;}
.ls3{letter-spacing:0.071680pt;}
.ls2{letter-spacing:0.072960pt;}
.ls1b{letter-spacing:0.074240pt;}
.ls0{letter-spacing:0.089088pt;}
.ls9{letter-spacing:0.100224pt;}
.ls5{letter-spacing:0.106624pt;}
.ls1{letter-spacing:0.107648pt;}
.ls8{letter-spacing:0.118784pt;}
.lsa{letter-spacing:0.133632pt;}
.ls4{letter-spacing:0.213376pt;}
.ls1c{letter-spacing:0.275200pt;}
.ls33{letter-spacing:0.640512pt;}
.ls32{letter-spacing:6.634240pt;}
.ls22{letter-spacing:9.910144pt;}
.ls23{letter-spacing:9.910272pt;}
.ls20{letter-spacing:11.399680pt;}
.ls1f{letter-spacing:11.399808pt;}
.ls21{letter-spacing:16.396800pt;}
.ls1e{letter-spacing:30.208000pt;}
.wse{word-spacing:-16.012800pt;}
.wsc{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.987200pt;}
.ws7{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.972992pt;}
.wsa{word-spacing:-13.961728pt;}
.ws8{word-spacing:-13.922304pt;}
.ws6{word-spacing:-13.860352pt;}
.ws13{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.310976pt;}
.ws16{word-spacing:-13.300224pt;}
.ws18{word-spacing:-13.241088pt;}
.ws11{word-spacing:-13.224960pt;}
.ws12{word-spacing:-13.208832pt;}
.ws15{word-spacing:-13.171200pt;}
.ws14{word-spacing:-13.155072pt;}
.ws10{word-spacing:-13.138944pt;}
.ws17{word-spacing:-13.069056pt;}
.ws9{word-spacing:-12.435456pt;}
.ws1a{word-spacing:-10.891776pt;}
.ws5{word-spacing:-0.170752pt;}
.ws3{word-spacing:-0.155904pt;}
.ws1{word-spacing:-0.144768pt;}
.ws4{word-spacing:-0.137344pt;}
.ws2{word-spacing:-0.037120pt;}
.wsf{word-spacing:0.000000pt;}
.ws0{word-spacing:26.154752pt;}
._4{margin-left:-7.341952pt;}
._5{margin-left:-6.420480pt;}
._a{margin-left:-4.478976pt;}
._1{margin-left:-3.494400pt;}
._3{margin-left:-2.314624pt;}
._0{margin-left:-0.890880pt;}
._2{width:0.942080pt;}
._6{width:2.178560pt;}
._d{width:3.312640pt;}
._11{width:4.494336pt;}
._8{width:5.913600pt;}
._9{width:6.814720pt;}
._7{width:8.560640pt;}
._f{width:9.695744pt;}
._e{width:10.827392pt;}
._c{width:11.894400pt;}
._b{width:12.869376pt;}
._13{width:13.758720pt;}
._12{width:14.745600pt;}
._16{width:15.954048pt;}
._10{width:17.173376pt;}
._14{width:18.528000pt;}
._15{width:21.535104pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.573333pt;}
.y1d{bottom:3.626667pt;}
.yd{bottom:3.840000pt;}
.y31{bottom:4.213333pt;}
.y1c{bottom:19.626667pt;}
.yc{bottom:19.840000pt;}
.y1b{bottom:35.946667pt;}
.y10{bottom:36.213333pt;}
.y30{bottom:46.666667pt;}
.y4{bottom:49.280000pt;}
.y2f{bottom:50.880000pt;}
.y1a{bottom:51.946667pt;}
.yb{bottom:52.160000pt;}
.y3{bottom:60.160000pt;}
.y19{bottom:67.946667pt;}
.y2{bottom:71.040000pt;}
.y18{bottom:84.266667pt;}
.y17{bottom:100.266667pt;}
.y2e{bottom:107.200000pt;}
.y74{bottom:112.320000pt;}
.y16{bottom:116.266667pt;}
.y2d{bottom:125.760000pt;}
.y73{bottom:130.560000pt;}
.y15{bottom:132.586667pt;}
.y55{bottom:132.800000pt;}
.yb9{bottom:133.120000pt;}
.ye6{bottom:145.280000pt;}
.y72{bottom:149.120000pt;}
.ya4{bottom:151.040000pt;}
.y54{bottom:151.360000pt;}
.y94{bottom:153.280000pt;}
.y2c{bottom:159.680000pt;}
.y14{bottom:164.586667pt;}
.y71{bottom:167.360000pt;}
.y53{bottom:169.920000pt;}
.y93{bottom:171.840000pt;}
.ye5{bottom:176.640000pt;}
.y2b{bottom:178.240000pt;}
.yca{bottom:185.920000pt;}
.y52{bottom:188.160000pt;}
.y92{bottom:190.400000pt;}
.ye4{bottom:192.000000pt;}
.y70{bottom:194.880000pt;}
.y2a{bottom:196.800000pt;}
.yb8{bottom:203.840000pt;}
.yc9{bottom:204.160000pt;}
.y51{bottom:206.720000pt;}
.y91{bottom:208.640000pt;}
.y29{bottom:215.040000pt;}
.ye3{bottom:223.360000pt;}
.y90{bottom:227.200000pt;}
.y6f{bottom:229.120000pt;}
.y28{bottom:233.600000pt;}
.yb7{bottom:238.400000pt;}
.ye2{bottom:238.720000pt;}
.ya3{bottom:240.320000pt;}
.y50{bottom:240.640000pt;}
.y8f{bottom:245.440000pt;}
.y6e{bottom:248.000000pt;}
.y27{bottom:251.840000pt;}
.ya2{bottom:256.320000pt;}
.yb6{bottom:256.960000pt;}
.y4f{bottom:259.520000pt;}
.y8e{bottom:264.000000pt;}
.y6d{bottom:266.240000pt;}
.ye1{bottom:270.080000pt;}
.y26{bottom:270.400000pt;}
.ya1{bottom:272.640000pt;}
.yb5{bottom:275.520000pt;}
.y6c{bottom:284.800000pt;}
.ye0{bottom:285.440000pt;}
.yc8{bottom:291.520000pt;}
.y4e{bottom:293.440000pt;}
.y8d{bottom:297.920000pt;}
.y6b{bottom:303.040000pt;}
.y25{bottom:304.320000pt;}
.yb4{bottom:309.440000pt;}
.yc7{bottom:309.760000pt;}
.y4d{bottom:312.320000pt;}
.y8c{bottom:316.800000pt;}
.y24{bottom:323.200000pt;}
.yb3{bottom:328.320000pt;}
.y6a{bottom:330.240000pt;}
.ydf{bottom:332.160000pt;}
.y8b{bottom:335.040000pt;}
.y23{bottom:341.440000pt;}
.y4c{bottom:346.240000pt;}
.yb2{bottom:346.560000pt;}
.y8a{bottom:353.600000pt;}
.y22{bottom:360.000000pt;}
.yde{bottom:363.520000pt;}
.y69{bottom:364.800000pt;}
.y4b{bottom:365.120000pt;}
.y89{bottom:371.840000pt;}
.y21{bottom:378.240000pt;}
.ydd{bottom:378.880000pt;}
.yb1{bottom:380.800000pt;}
.y4a{bottom:383.360000pt;}
.y88{bottom:390.400000pt;}
.y20{bottom:396.800000pt;}
.yb0{bottom:399.360000pt;}
.y68{bottom:401.920000pt;}
.y87{bottom:408.640000pt;}
.ydc{bottom:409.920000pt;}
.y1f{bottom:415.040000pt;}
.y49{bottom:417.600000pt;}
.yaf{bottom:417.920000pt;}
.y67{bottom:420.160000pt;}
.y86{bottom:427.200000pt;}
.y48{bottom:436.160000pt;}
.y66{bottom:438.720000pt;}
.ydb{bottom:441.280000pt;}
.y85{bottom:445.440000pt;}
.y1e{bottom:448.960000pt;}
.y47{bottom:454.720000pt;}
.yda{bottom:456.640000pt;}
.yc6{bottom:456.960000pt;}
.y13{bottom:461.333333pt;}
.y84{bottom:464.000000pt;}
.y65{bottom:465.920000pt;}
.y46{bottom:472.960000pt;}
.yae{bottom:481.920000pt;}
.y83{bottom:482.240000pt;}
.yc5{bottom:484.480000pt;}
.yd9{bottom:490.240000pt;}
.y45{bottom:491.520000pt;}
.y64{bottom:500.480000pt;}
.yd8{bottom:507.840000pt;}
.y82{bottom:509.440000pt;}
.y44{bottom:509.760000pt;}
.yad{bottom:516.480000pt;}
.yc4{bottom:518.720000pt;}
.y63{bottom:519.040000pt;}
.y43{bottom:528.320000pt;}
.ya0{bottom:534.720000pt;}
.yac{bottom:535.040000pt;}
.y62{bottom:537.600000pt;}
.yd7{bottom:541.760000pt;}
.y81{bottom:544.000000pt;}
.y42{bottom:546.560000pt;}
.yab{bottom:553.600000pt;}
.y61{bottom:555.840000pt;}
.yd6{bottom:559.360000pt;}
.y41{bottom:565.120000pt;}
.y9f{bottom:569.280000pt;}
.yaa{bottom:571.840000pt;}
.y60{bottom:574.080000pt;}
.y80{bottom:578.240000pt;}
.y40{bottom:583.360000pt;}
.y9e{bottom:587.840000pt;}
.yc3{bottom:592.640000pt;}
.yd5{bottom:592.960000pt;}
.y7f{bottom:597.120000pt;}
.y5f{bottom:601.600000pt;}
.ya9{bottom:605.760000pt;}
.y9d{bottom:606.080000pt;}
.y7e{bottom:615.360000pt;}
.y3f{bottom:617.600000pt;}
.yc2{bottom:619.840000pt;}
.y9c{bottom:624.640000pt;}
.yd4{bottom:626.560000pt;}
.y7d{bottom:633.920000pt;}
.y5e{bottom:635.840000pt;}
.y3e{bottom:636.160000pt;}
.y12{bottom:641.920000pt;}
.y9b{bottom:642.880000pt;}
.y7c{bottom:652.160000pt;}
.yc1{bottom:654.400000pt;}
.yf{bottom:654.666667pt;}
.y3d{bottom:654.720000pt;}
.yd3{bottom:660.160000pt;}
.y9a{bottom:661.440000pt;}
.y7b{bottom:670.720000pt;}
.y3c{bottom:672.960000pt;}
.ya8{bottom:677.120000pt;}
.yd2{bottom:677.760000pt;}
.y99{bottom:688.640000pt;}
.y7a{bottom:688.960000pt;}
.y3b{bottom:691.520000pt;}
.yd1{bottom:695.360000pt;}
.ya7{bottom:695.680000pt;}
.ye{bottom:707.200000pt;}
.y79{bottom:707.520000pt;}
.yc0{bottom:709.760000pt;}
.ya{bottom:720.000000pt;}
.y98{bottom:723.200000pt;}
.y3a{bottom:725.440000pt;}
.y5d{bottom:725.760000pt;}
.yd0{bottom:726.720000pt;}
.y78{bottom:741.440000pt;}
.y97{bottom:741.760000pt;}
.ycf{bottom:742.080000pt;}
.ybf{bottom:744.000000pt;}
.y5c{bottom:744.320000pt;}
.ya6{bottom:757.440000pt;}
.y39{bottom:760.000000pt;}
.y96{bottom:760.320000pt;}
.ybe{bottom:762.560000pt;}
.yce{bottom:773.440000pt;}
.y77{bottom:776.000000pt;}
.ya5{bottom:776.320000pt;}
.y5b{bottom:778.240000pt;}
.y38{bottom:778.560000pt;}
.ybd{bottom:781.120000pt;}
.ycd{bottom:788.800000pt;}
.y76{bottom:794.560000pt;}
.yed{bottom:794.880000pt;}
.y5a{bottom:797.120000pt;}
.ybc{bottom:799.360000pt;}
.y9{bottom:804.160000pt;}
.yec{bottom:810.240000pt;}
.y37{bottom:812.800000pt;}
.y75{bottom:813.120000pt;}
.y59{bottom:815.360000pt;}
.ycc{bottom:820.160000pt;}
.yeb{bottom:821.440000pt;}
.y36{bottom:831.360000pt;}
.ybb{bottom:833.600000pt;}
.y58{bottom:833.920000pt;}
.y8{bottom:843.200000pt;}
.y35{bottom:849.920000pt;}
.ycb{bottom:851.840000pt;}
.y57{bottom:852.160000pt;}
.yea{bottom:855.680000pt;}
.y95{bottom:867.840000pt;}
.y34{bottom:868.160000pt;}
.y7{bottom:870.400000pt;}
.y56{bottom:870.720000pt;}
.ye9{bottom:874.240000pt;}
.yba{bottom:886.400000pt;}
.y33{bottom:886.720000pt;}
.ye8{bottom:891.840000pt;}
.y6{bottom:904.640000pt;}
.y32{bottom:904.960000pt;}
.ye7{bottom:907.200000pt;}
.y5{bottom:923.520000pt;}
.y1{bottom:938.240000pt;}
.hb{height:20.000000pt;}
.hd{height:23.355000pt;}
.h5{height:25.085000pt;}
.h2{height:26.027500pt;}
.hc{height:37.353750pt;}
.h8{height:39.132500pt;}
.h6{height:40.882500pt;}
.h3{height:43.375000pt;}
.h1{height:44.468750pt;}
.h9{height:49.333333pt;}
.h4{height:50.305000pt;}
.h7{height:65.333333pt;}
.ha{height:178.666667pt;}
.h0{height:1056.000000pt;}
.w3{width:10.666667pt;}
.w2{width:622.666667pt;}
.w1{width:624.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.173333pt;}
.x5{left:6.986635pt;}
.x8{left:53.245451pt;}
.x7{left:73.258763pt;}
.x2{left:96.000000pt;}
.x4{left:97.333333pt;}
.xd{left:109.800128pt;}
.x9{left:133.800128pt;}
.x1{left:166.666656pt;}
.x3{left:269.519520pt;}
.xe{left:288.000000pt;}
.xc{left:300.023424pt;}
.x6{left:333.512107pt;}
.xa{left:402.666667pt;}
}




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