
    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_613296ac373b89b979c26a9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9ee3150afc00e37eac032530.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_25507689bd6f5bcb89c916dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2327a55da4292eecac637476.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_b206bde055868b002ae9e549.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.992188;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_537047baaebf784ba1267c62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.695312;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_53cb9b0451dad13f041b8f31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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:-86.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls23{letter-spacing:-1.134000px;}
.ls6{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.414600px;}
.ls17{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.262200px;}
.ls1a{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.152400px;}
.ls10{letter-spacing:-0.109200px;}
.ls1e{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.089400px;}
.lsf{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls2{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.305280px;}
.ls11{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.439920px;}
.ls26{letter-spacing:0.442080px;}
.ls27{letter-spacing:0.485280px;}
.ls1c{letter-spacing:0.613440px;}
.ls15{letter-spacing:0.666720px;}
.ls12{letter-spacing:0.979920px;}
.ls8{letter-spacing:3.510720px;}
.lse{letter-spacing:3.546720px;}
.lsc{letter-spacing:3.905280px;}
.ls1b{letter-spacing:4.950720px;}
.ls24{letter-spacing:6.065280px;}
.ls22{letter-spacing:12.545280px;}
.ls28{letter-spacing:17.585280px;}
.ls21{letter-spacing:27.665280px;}
.ls25{letter-spacing:38.465280px;}
.ls9{letter-spacing:197.561280px;}
.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:-26.658720px;}
.ws2{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.944000px;}
.wsf{word-spacing:-18.720120px;}
.ws6{word-spacing:-18.676920px;}
.ws4{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.wsc{word-spacing:-18.152520px;}
.wsb{word-spacing:-18.109320px;}
.ws5{word-spacing:-17.956920px;}
.ws10{word-spacing:-17.586720px;}
.wsa{word-spacing:-16.873080px;}
.ws9{word-spacing:-16.613280px;}
.wse{word-spacing:-16.506480px;}
.wsd{word-spacing:-16.353480px;}
.ws12{word-spacing:-11.609280px;}
.ws11{word-spacing:-11.519880px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-5.097120px;}
._b{margin-left:-4.074960px;}
._6{margin-left:-2.444400px;}
._1{margin-left:-1.032000px;}
._2{width:1.008000px;}
._0{width:2.088000px;}
._15{width:3.156960px;}
._14{width:4.173120px;}
._10{width:5.497920px;}
._11{width:6.650640px;}
._4{width:8.640000px;}
._3{width:9.792000px;}
._e{width:10.798320px;}
._d{width:11.923200px;}
._13{width:12.983040px;}
._1c{width:14.374080px;}
._1e{width:15.500160px;}
._19{width:16.527840px;}
._17{width:17.629200px;}
._18{width:18.715920px;}
._1f{width:20.660400px;}
._1a{width:21.660480px;}
._f{width:23.089920px;}
._22{width:24.111360px;}
._1b{width:25.303680px;}
._21{width:26.410080px;}
._8{width:28.339920px;}
._7{width:29.398320px;}
._23{width:35.458560px;}
._a{width:36.660000px;}
._9{width:37.728000px;}
._c{width:38.882880px;}
._20{width:45.479040px;}
._5{width:260.052000px;}
._16{width:844.164000px;}
._12{width:845.741280px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:4.860000px;}
.y2f{bottom:22.680000px;}
.y2e{bottom:30.600000px;}
.y29{bottom:57.636000px;}
.y2d{bottom:64.980000px;}
.y5{bottom:66.525004px;}
.y28{bottom:78.336000px;}
.y4{bottom:97.125005px;}
.y2c{bottom:99.180000px;}
.y27{bottom:99.216000px;}
.y7f{bottom:111.096000px;}
.ydf{bottom:111.816000px;}
.yf2{bottom:115.236000px;}
.ye3{bottom:124.956000px;}
.y26{bottom:126.216000px;}
.yde{bottom:128.016000px;}
.y7e{bottom:128.376000px;}
.y2b{bottom:129.810000px;}
.ycb{bottom:132.876000px;}
.yf1{bottom:135.756000px;}
.y20{bottom:139.264499px;}
.ydd{bottom:145.296000px;}
.ye2{bottom:145.476000px;}
.y7d{bottom:145.656000px;}
.y25{bottom:146.736000px;}
.yb2{bottom:150.870000px;}
.yf0{bottom:156.270000px;}
.ydc{bottom:162.570000px;}
.y7c{bottom:162.930000px;}
.yb1{bottom:164.910000px;}
.ye1{bottom:165.810000px;}
.ydb{bottom:167.070000px;}
.y24{bottom:167.430000px;}
.yef{bottom:176.790000px;}
.yda{bottom:179.670000px;}
.y7b{bottom:180.030000px;}
.ye0{bottom:186.330000px;}
.y23{bottom:188.130000px;}
.y17{bottom:196.933500px;}
.yd9{bottom:196.950000px;}
.yee{bottom:197.130000px;}
.y7a{bottom:197.310000px;}
.y79{bottom:201.810000px;}
.yb0{bottom:206.850000px;}
.y22{bottom:208.830000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yd8{bottom:214.230000px;}
.y78{bottom:214.590000px;}
.yaa{bottom:216.570000px;}
.yed{bottom:217.650000px;}
.yd7{bottom:218.730000px;}
.y87{bottom:219.090000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yaf{bottom:227.370000px;}
.y21{bottom:229.530000px;}
.y77{bottom:231.870000px;}
.yd6{bottom:233.490000px;}
.yca{bottom:233.850000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yec{bottom:238.170000px;}
.ya9{bottom:247.710000px;}
.y76{bottom:249.150000px;}
.y75{bottom:253.650000px;}
.yeb{bottom:258.690000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y86{bottom:266.430000px;}
.ya8{bottom:268.230000px;}
.y74{bottom:268.410000px;}
.y85{bottom:270.930000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yea{bottom:279.030000px;}
.yc6{bottom:283.530000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y84{bottom:285.510000px;}
.ya7{bottom:288.750000px;}
.yd5{bottom:288.930000px;}
.yc9{bottom:294.735000px;}
.ye9{bottom:299.595000px;}
.yc5{bottom:300.855000px;}
.y83{bottom:309.315000px;}
.yd4{bottom:309.495000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yc4{bottom:318.135000px;}
.ye8{bottom:320.115000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y73{bottom:329.655000px;}
.yd3{bottom:330.015000px;}
.yc3{bottom:335.415000px;}
.yc2{bottom:339.915000px;}
.ye7{bottom:340.635000px;}
.ye{bottom:348.133500px;}
.y72{bottom:350.175000px;}
.yd2{bottom:350.535000px;}
.yc1{bottom:352.695000px;}
.ye6{bottom:360.975000px;}
.yc0{bottom:369.975000px;}
.y71{bottom:370.695000px;}
.yd1{bottom:370.875000px;}
.ye5{bottom:381.495000px;}
.yd{bottom:386.785499px;}
.ybf{bottom:387.075000px;}
.y70{bottom:391.215000px;}
.yd0{bottom:400.755000px;}
.ye4{bottom:402.015000px;}
.ybe{bottom:404.355000px;}
.yc{bottom:408.044999px;}
.ybd{bottom:408.855000px;}
.y6f{bottom:411.555000px;}
.ycf{bottom:422.535000px;}
.ybc{bottom:423.615000px;}
.y6e{bottom:432.075000px;}
.yce{bottom:442.875000px;}
.y6d{bottom:452.595000px;}
.yb7{bottom:462.135000px;}
.ybb{bottom:463.395000px;}
.y48{bottom:465.015000px;}
.y6c{bottom:473.115000px;}
.yc8{bottom:482.655000px;}
.yb6{bottom:483.915000px;}
.y47{bottom:485.355000px;}
.y6b{bottom:493.455000px;}
.yae{bottom:503.175000px;}
.yb5{bottom:504.435000px;}
.y46{bottom:505.875000px;}
.y6a{bottom:513.975000px;}
.yb{bottom:520.864502px;}
.yad{bottom:524.775000px;}
.y45{bottom:526.395000px;}
.yc7{bottom:530.715000px;}
.y68{bottom:534.495000px;}
.ya{bottom:538.864499px;}
.y69{bottom:540.435000px;}
.ya6{bottom:544.035000px;}
.yac{bottom:545.295000px;}
.y67{bottom:555.015000px;}
.y9{bottom:556.864499px;}
.y44{bottom:557.355000px;}
.y82{bottom:560.955000px;}
.ya5{bottom:565.815000px;}
.y66{bottom:575.385000px;}
.y43{bottom:577.725000px;}
.ya3{bottom:586.365000px;}
.ya4{bottom:592.305000px;}
.y65{bottom:595.905000px;}
.y42{bottom:598.245000px;}
.ya2{bottom:606.705000px;}
.y64{bottom:616.425000px;}
.y41{bottom:618.585000px;}
.y81{bottom:622.365000px;}
.ya1{bottom:627.225000px;}
.y63{bottom:636.945000px;}
.y40{bottom:639.105000px;}
.y8{bottom:645.510000px;}
.ya0{bottom:647.745000px;}
.ycd{bottom:653.685000px;}
.y62{bottom:657.285000px;}
.y3f{bottom:659.625000px;}
.y7{bottom:666.771000px;}
.y9f{bottom:668.265000px;}
.y61{bottom:677.805000px;}
.y3e{bottom:680.145000px;}
.y9e{bottom:688.605000px;}
.yba{bottom:694.545000px;}
.y5f{bottom:698.325000px;}
.y3d{bottom:700.485000px;}
.y60{bottom:704.265000px;}
.y9d{bottom:709.125000px;}
.y5e{bottom:718.845000px;}
.y3c{bottom:721.005000px;}
.y6{bottom:726.298500px;}
.y9c{bottom:729.645000px;}
.y5d{bottom:739.185000px;}
.y3b{bottom:741.525000px;}
.y9b{bottom:750.165000px;}
.y3{bottom:752.599495px;}
.y5c{bottom:759.705000px;}
.y3a{bottom:762.045000px;}
.y9a{bottom:770.505000px;}
.y5b{bottom:780.225000px;}
.y99{bottom:791.025000px;}
.y39{bottom:792.105000px;}
.yb9{bottom:796.965000px;}
.y5a{bottom:800.745000px;}
.y98{bottom:811.545000px;}
.y38{bottom:813.885000px;}
.y59{bottom:821.085000px;}
.y97{bottom:832.065000px;}
.y37{bottom:834.225000px;}
.yb4{bottom:838.005000px;}
.y58{bottom:841.605000px;}
.y96{bottom:852.450000px;}
.y36{bottom:855.330000px;}
.y57{bottom:862.170000px;}
.y95{bottom:872.970000px;}
.y35{bottom:877.830000px;}
.y2{bottom:879.369000px;}
.y56{bottom:882.690000px;}
.y94{bottom:893.490000px;}
.y34{bottom:901.950000px;}
.y55{bottom:903.030000px;}
.y80{bottom:908.970000px;}
.y93{bottom:914.010000px;}
.y54{bottom:923.550000px;}
.y33{bottom:931.650000px;}
.y92{bottom:934.350000px;}
.y53{bottom:944.070000px;}
.y91{bottom:954.870000px;}
.yab{bottom:960.810000px;}
.y32{bottom:961.530000px;}
.y52{bottom:964.590000px;}
.y1{bottom:966.726000px;}
.y90{bottom:975.390000px;}
.y51{bottom:984.930000px;}
.y31{bottom:991.230000px;}
.y8f{bottom:995.910000px;}
.y50{bottom:1005.450000px;}
.y2a{bottom:1013.730000px;}
.y8e{bottom:1016.250000px;}
.ycc{bottom:1022.190000px;}
.y4f{bottom:1025.970000px;}
.y8d{bottom:1036.770000px;}
.y4e{bottom:1046.490000px;}
.y8c{bottom:1057.290000px;}
.yb3{bottom:1063.230000px;}
.y4d{bottom:1066.830000px;}
.y8b{bottom:1077.810000px;}
.y4c{bottom:1087.350000px;}
.y8a{bottom:1098.150000px;}
.y4b{bottom:1107.870000px;}
.y89{bottom:1118.670000px;}
.yb8{bottom:1124.610000px;}
.y4a{bottom:1137.960000px;}
.y88{bottom:1139.220000px;}
.y49{bottom:1191.960000px;}
.h7{height:32.130000px;}
.h13{height:40.472227px;}
.h10{height:40.550625px;}
.he{height:43.554375px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.312812px;}
.h12{height:51.782344px;}
.hf{height:52.662656px;}
.h2{height:55.080000px;}
.h11{height:62.327813px;}
.hd{height:69.086250px;}
.h9{height:75.093750px;}
.h5{height:78.030000px;}
.hc{height:99.874688px;}
.h4{height:119.055004px;}
.ha{height:141.156000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:244.470000px;}
.w5{width:436.035000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035987px;}
.xb{left:135.035987px;}
.xe{left:150.509987px;}
.x14{left:155.909987px;}
.x26{left:161.309987px;}
.x4{left:203.484001px;}
.x16{left:209.189987px;}
.xa{left:242.145000px;}
.x15{left:244.829987px;}
.x2a{left:258.509973px;}
.x2b{left:270.029987px;}
.xc{left:300.854987px;}
.x27{left:317.234973px;}
.x28{left:328.754987px;}
.x13{left:378.074987px;}
.x24{left:387.074973px;}
.x25{left:398.594987px;}
.xd{left:436.934987px;}
.x7{left:443.954987px;}
.x3{left:454.959000px;}
.xf{left:484.634973px;}
.x6{left:486.074987px;}
.x10{left:490.394987px;}
.x29{left:515.264973px;}
.x1e{left:526.424973px;}
.x11{left:529.124973px;}
.x1f{left:532.184987px;}
.x12{left:534.884987px;}
.x2c{left:537.584987px;}
.x9{left:544.065000px;}
.x20{left:583.844973px;}
.x21{left:589.604987px;}
.x22{left:618.224973px;}
.x23{left:629.744987px;}
.x19{left:644.504973px;}
.x1a{left:650.264987px;}
.x1c{left:652.964973px;}
.x1b{left:656.924987px;}
.x1d{left:658.724987px;}
.x17{left:698.009973px;}
.x18{left:703.769987px;}
@media print{
.v2{vertical-align:-76.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls6{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.233067pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.079467pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls2{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.271360pt;}
.ls11{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.391040pt;}
.ls26{letter-spacing:0.392960pt;}
.ls27{letter-spacing:0.431360pt;}
.ls1c{letter-spacing:0.545280pt;}
.ls15{letter-spacing:0.592640pt;}
.ls12{letter-spacing:0.871040pt;}
.ls8{letter-spacing:3.120640pt;}
.lse{letter-spacing:3.152640pt;}
.lsc{letter-spacing:3.471360pt;}
.ls1b{letter-spacing:4.400640pt;}
.ls24{letter-spacing:5.391360pt;}
.ls22{letter-spacing:11.151360pt;}
.ls28{letter-spacing:15.631360pt;}
.ls21{letter-spacing:24.591360pt;}
.ls25{letter-spacing:34.191360pt;}
.ls9{letter-spacing:175.610027pt;}
.ws3{word-spacing:-23.696640pt;}
.ws2{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.728000pt;}
.wsf{word-spacing:-16.640107pt;}
.ws6{word-spacing:-16.601707pt;}
.ws4{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.wsc{word-spacing:-16.135573pt;}
.wsb{word-spacing:-16.097173pt;}
.ws5{word-spacing:-15.961707pt;}
.ws10{word-spacing:-15.632640pt;}
.wsa{word-spacing:-14.998293pt;}
.ws9{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.672427pt;}
.wsd{word-spacing:-14.536427pt;}
.ws12{word-spacing:-10.319360pt;}
.ws11{word-spacing:-10.239893pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-4.530773pt;}
._b{margin-left:-3.622187pt;}
._6{margin-left:-2.172800pt;}
._1{margin-left:-0.917333pt;}
._2{width:0.896000pt;}
._0{width:1.856000pt;}
._15{width:2.806187pt;}
._14{width:3.709440pt;}
._10{width:4.887040pt;}
._11{width:5.911680pt;}
._4{width:7.680000pt;}
._3{width:8.704000pt;}
._e{width:9.598507pt;}
._d{width:10.598400pt;}
._13{width:11.540480pt;}
._1c{width:12.776960pt;}
._1e{width:13.777920pt;}
._19{width:14.691413pt;}
._17{width:15.670400pt;}
._18{width:16.636373pt;}
._1f{width:18.364800pt;}
._1a{width:19.253760pt;}
._f{width:20.524373pt;}
._22{width:21.432320pt;}
._1b{width:22.492160pt;}
._21{width:23.475627pt;}
._8{width:25.191040pt;}
._7{width:26.131840pt;}
._23{width:31.518720pt;}
._a{width:32.586667pt;}
._9{width:33.536000pt;}
._c{width:34.562560pt;}
._20{width:40.425813pt;}
._5{width:231.157333pt;}
._16{width:750.368000pt;}
._12{width:751.770027pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:4.320000pt;}
.y2f{bottom:20.160000pt;}
.y2e{bottom:27.200000pt;}
.y29{bottom:51.232000pt;}
.y2d{bottom:57.760000pt;}
.y5{bottom:59.133337pt;}
.y28{bottom:69.632000pt;}
.y4{bottom:86.333337pt;}
.y2c{bottom:88.160000pt;}
.y27{bottom:88.192000pt;}
.y7f{bottom:98.752000pt;}
.ydf{bottom:99.392000pt;}
.yf2{bottom:102.432000pt;}
.ye3{bottom:111.072000pt;}
.y26{bottom:112.192000pt;}
.yde{bottom:113.792000pt;}
.y7e{bottom:114.112000pt;}
.y2b{bottom:115.386667pt;}
.ycb{bottom:118.112000pt;}
.yf1{bottom:120.672000pt;}
.y20{bottom:123.790666pt;}
.ydd{bottom:129.152000pt;}
.ye2{bottom:129.312000pt;}
.y7d{bottom:129.472000pt;}
.y25{bottom:130.432000pt;}
.yb2{bottom:134.106667pt;}
.yf0{bottom:138.906667pt;}
.ydc{bottom:144.506667pt;}
.y7c{bottom:144.826667pt;}
.yb1{bottom:146.586667pt;}
.ye1{bottom:147.386667pt;}
.ydb{bottom:148.506667pt;}
.y24{bottom:148.826667pt;}
.yef{bottom:157.146667pt;}
.yda{bottom:159.706667pt;}
.y7b{bottom:160.026667pt;}
.ye0{bottom:165.626667pt;}
.y23{bottom:167.226667pt;}
.y17{bottom:175.052000pt;}
.yd9{bottom:175.066667pt;}
.yee{bottom:175.226667pt;}
.y7a{bottom:175.386667pt;}
.y79{bottom:179.386667pt;}
.yb0{bottom:183.866667pt;}
.y22{bottom:185.626667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yd8{bottom:190.426667pt;}
.y78{bottom:190.746667pt;}
.yaa{bottom:192.506667pt;}
.yed{bottom:193.466667pt;}
.yd7{bottom:194.426667pt;}
.y87{bottom:194.746667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yaf{bottom:202.106667pt;}
.y21{bottom:204.026667pt;}
.y77{bottom:206.106667pt;}
.yd6{bottom:207.546667pt;}
.yca{bottom:207.866667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yec{bottom:211.706667pt;}
.ya9{bottom:220.186667pt;}
.y76{bottom:221.466667pt;}
.y75{bottom:225.466667pt;}
.yeb{bottom:229.946667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y86{bottom:236.826667pt;}
.ya8{bottom:238.426667pt;}
.y74{bottom:238.586667pt;}
.y85{bottom:240.826667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yea{bottom:248.026667pt;}
.yc6{bottom:252.026667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y84{bottom:253.786667pt;}
.ya7{bottom:256.666667pt;}
.yd5{bottom:256.826667pt;}
.yc9{bottom:261.986667pt;}
.ye9{bottom:266.306667pt;}
.yc5{bottom:267.426667pt;}
.y83{bottom:274.946667pt;}
.yd4{bottom:275.106667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yc4{bottom:282.786667pt;}
.ye8{bottom:284.546667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y73{bottom:293.026667pt;}
.yd3{bottom:293.346667pt;}
.yc3{bottom:298.146667pt;}
.yc2{bottom:302.146667pt;}
.ye7{bottom:302.786667pt;}
.ye{bottom:309.452000pt;}
.y72{bottom:311.266667pt;}
.yd2{bottom:311.586667pt;}
.yc1{bottom:313.506667pt;}
.ye6{bottom:320.866667pt;}
.yc0{bottom:328.866667pt;}
.y71{bottom:329.506667pt;}
.yd1{bottom:329.666667pt;}
.ye5{bottom:339.106667pt;}
.yd{bottom:343.809333pt;}
.ybf{bottom:344.066667pt;}
.y70{bottom:347.746667pt;}
.yd0{bottom:356.226667pt;}
.ye4{bottom:357.346667pt;}
.ybe{bottom:359.426667pt;}
.yc{bottom:362.706666pt;}
.ybd{bottom:363.426667pt;}
.y6f{bottom:365.826667pt;}
.ycf{bottom:375.586667pt;}
.ybc{bottom:376.546667pt;}
.y6e{bottom:384.066667pt;}
.yce{bottom:393.666667pt;}
.y6d{bottom:402.306667pt;}
.yb7{bottom:410.786667pt;}
.ybb{bottom:411.906667pt;}
.y48{bottom:413.346667pt;}
.y6c{bottom:420.546667pt;}
.yc8{bottom:429.026667pt;}
.yb6{bottom:430.146667pt;}
.y47{bottom:431.426667pt;}
.y6b{bottom:438.626667pt;}
.yae{bottom:447.266667pt;}
.yb5{bottom:448.386667pt;}
.y46{bottom:449.666667pt;}
.y6a{bottom:456.866667pt;}
.yb{bottom:462.990669pt;}
.yad{bottom:466.466667pt;}
.y45{bottom:467.906667pt;}
.yc7{bottom:471.746667pt;}
.y68{bottom:475.106667pt;}
.ya{bottom:478.990666pt;}
.y69{bottom:480.386667pt;}
.ya6{bottom:483.586667pt;}
.yac{bottom:484.706667pt;}
.y67{bottom:493.346667pt;}
.y9{bottom:494.990666pt;}
.y44{bottom:495.426667pt;}
.y82{bottom:498.626667pt;}
.ya5{bottom:502.946667pt;}
.y66{bottom:511.453333pt;}
.y43{bottom:513.533333pt;}
.ya3{bottom:521.213333pt;}
.ya4{bottom:526.493333pt;}
.y65{bottom:529.693333pt;}
.y42{bottom:531.773333pt;}
.ya2{bottom:539.293333pt;}
.y64{bottom:547.933333pt;}
.y41{bottom:549.853333pt;}
.y81{bottom:553.213333pt;}
.ya1{bottom:557.533333pt;}
.y63{bottom:566.173333pt;}
.y40{bottom:568.093333pt;}
.y8{bottom:573.786667pt;}
.ya0{bottom:575.773333pt;}
.ycd{bottom:581.053333pt;}
.y62{bottom:584.253333pt;}
.y3f{bottom:586.333333pt;}
.y7{bottom:592.685334pt;}
.y9f{bottom:594.013333pt;}
.y61{bottom:602.493333pt;}
.y3e{bottom:604.573333pt;}
.y9e{bottom:612.093333pt;}
.yba{bottom:617.373333pt;}
.y5f{bottom:620.733333pt;}
.y3d{bottom:622.653333pt;}
.y60{bottom:626.013333pt;}
.y9d{bottom:630.333333pt;}
.y5e{bottom:638.973333pt;}
.y3c{bottom:640.893333pt;}
.y6{bottom:645.598667pt;}
.y9c{bottom:648.573333pt;}
.y5d{bottom:657.053333pt;}
.y3b{bottom:659.133333pt;}
.y9b{bottom:666.813333pt;}
.y3{bottom:668.977329pt;}
.y5c{bottom:675.293333pt;}
.y3a{bottom:677.373333pt;}
.y9a{bottom:684.893333pt;}
.y5b{bottom:693.533333pt;}
.y99{bottom:703.133333pt;}
.y39{bottom:704.093333pt;}
.yb9{bottom:708.413333pt;}
.y5a{bottom:711.773333pt;}
.y98{bottom:721.373333pt;}
.y38{bottom:723.453333pt;}
.y59{bottom:729.853333pt;}
.y97{bottom:739.613333pt;}
.y37{bottom:741.533333pt;}
.yb4{bottom:744.893333pt;}
.y58{bottom:748.093333pt;}
.y96{bottom:757.733333pt;}
.y36{bottom:760.293333pt;}
.y57{bottom:766.373333pt;}
.y95{bottom:775.973333pt;}
.y35{bottom:780.293333pt;}
.y2{bottom:781.661334pt;}
.y56{bottom:784.613333pt;}
.y94{bottom:794.213333pt;}
.y34{bottom:801.733333pt;}
.y55{bottom:802.693333pt;}
.y80{bottom:807.973333pt;}
.y93{bottom:812.453333pt;}
.y54{bottom:820.933333pt;}
.y33{bottom:828.133333pt;}
.y92{bottom:830.533333pt;}
.y53{bottom:839.173333pt;}
.y91{bottom:848.773333pt;}
.yab{bottom:854.053333pt;}
.y32{bottom:854.693333pt;}
.y52{bottom:857.413333pt;}
.y1{bottom:859.312000pt;}
.y90{bottom:867.013333pt;}
.y51{bottom:875.493333pt;}
.y31{bottom:881.093333pt;}
.y8f{bottom:885.253333pt;}
.y50{bottom:893.733333pt;}
.y2a{bottom:901.093333pt;}
.y8e{bottom:903.333333pt;}
.ycc{bottom:908.613333pt;}
.y4f{bottom:911.973333pt;}
.y8d{bottom:921.573333pt;}
.y4e{bottom:930.213333pt;}
.y8c{bottom:939.813333pt;}
.yb3{bottom:945.093333pt;}
.y4d{bottom:948.293333pt;}
.y8b{bottom:958.053333pt;}
.y4c{bottom:966.533333pt;}
.y8a{bottom:976.133333pt;}
.y4b{bottom:984.773333pt;}
.y89{bottom:994.373333pt;}
.yb8{bottom:999.653333pt;}
.y4a{bottom:1011.520000pt;}
.y88{bottom:1012.640000pt;}
.y49{bottom:1059.520000pt;}
.h7{height:28.560000pt;}
.h13{height:35.975313pt;}
.h10{height:36.045000pt;}
.he{height:38.715000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:44.722500pt;}
.h12{height:46.028750pt;}
.hf{height:46.811250pt;}
.h2{height:48.960000pt;}
.h11{height:55.402500pt;}
.hd{height:61.410000pt;}
.h9{height:66.750000pt;}
.h5{height:69.360000pt;}
.hc{height:88.777500pt;}
.h4{height:105.826671pt;}
.ha{height:125.472000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:217.306667pt;}
.w5{width:387.586667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.xb{left:120.031988pt;}
.xe{left:133.786655pt;}
.x14{left:138.586655pt;}
.x26{left:143.386655pt;}
.x4{left:180.874667pt;}
.x16{left:185.946655pt;}
.xa{left:215.240000pt;}
.x15{left:217.626655pt;}
.x2a{left:229.786643pt;}
.x2b{left:240.026655pt;}
.xc{left:267.426655pt;}
.x27{left:281.986643pt;}
.x28{left:292.226655pt;}
.x13{left:336.066655pt;}
.x24{left:344.066643pt;}
.x25{left:354.306655pt;}
.xd{left:388.386655pt;}
.x7{left:394.626655pt;}
.x3{left:404.408000pt;}
.xf{left:430.786643pt;}
.x6{left:432.066655pt;}
.x10{left:435.906655pt;}
.x29{left:458.013310pt;}
.x1e{left:467.933310pt;}
.x11{left:470.333310pt;}
.x1f{left:473.053322pt;}
.x12{left:475.453322pt;}
.x2c{left:477.853322pt;}
.x9{left:483.613333pt;}
.x20{left:518.973310pt;}
.x21{left:524.093322pt;}
.x22{left:549.533310pt;}
.x23{left:559.773322pt;}
.x19{left:572.893310pt;}
.x1a{left:578.013322pt;}
.x1c{left:580.413310pt;}
.x1b{left:583.933322pt;}
.x1d{left:585.533322pt;}
.x17{left:620.453310pt;}
.x18{left:625.573322pt;}
}




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