
    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_e2c9969b34032a8575755a2b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_5a6463305be80080f0ea6bbf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_01e5edb630449c6f2640adaa.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b9c9db7f53f609dc09f85bb8.woff')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:189.375000px;}
.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;}
}
.ws8{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws8d{word-spacing:-39.019500px;}
.ws2{word-spacing:-38.870100px;}
.ws19{word-spacing:-38.796300px;}
.ws11{word-spacing:-38.791200px;}
.ws1a{word-spacing:-38.790900px;}
.ws77{word-spacing:-38.653200px;}
.wsd{word-spacing:-38.650200px;}
.ws87{word-spacing:-38.630400px;}
.ws24{word-spacing:-38.589000px;}
.ws1e{word-spacing:-38.582100px;}
.ws4{word-spacing:-38.451300px;}
.ws23{word-spacing:-38.446800px;}
.ws63{word-spacing:-38.433600px;}
.ws4d{word-spacing:-38.166000px;}
.ws45{word-spacing:-38.160000px;}
.ws8b{word-spacing:-38.154600px;}
.ws4e{word-spacing:-38.154000px;}
.ws91{word-spacing:-38.152800px;}
.ws48{word-spacing:-38.151900px;}
.ws7d{word-spacing:-38.151000px;}
.ws18{word-spacing:-38.147400px;}
.ws27{word-spacing:-38.143800px;}
.ws93{word-spacing:-38.082000px;}
.ws12{word-spacing:-38.076300px;}
.ws51{word-spacing:-37.948200px;}
.ws6{word-spacing:-37.944600px;}
.ws21{word-spacing:-37.944000px;}
.ws42{word-spacing:-37.941900px;}
.ws15{word-spacing:-37.940400px;}
.ws7e{word-spacing:-37.939200px;}
.ws10{word-spacing:-37.937400px;}
.ws9c{word-spacing:-37.936800px;}
.ws7{word-spacing:-37.935000px;}
.ws6d{word-spacing:-37.934100px;}
.ws5e{word-spacing:-37.930500px;}
.ws53{word-spacing:-37.929600px;}
.ws5{word-spacing:-37.863900px;}
.ws9{word-spacing:-37.721400px;}
.ws67{word-spacing:-37.715700px;}
.ws84{word-spacing:-37.639800px;}
.ws55{word-spacing:-37.219500px;}
.ws2d{word-spacing:-37.000800px;}
.ws64{word-spacing:-36.717000px;}
.ws5c{word-spacing:-36.495000px;}
.ws69{word-spacing:-36.265500px;}
.ws37{word-spacing:-36.000600px;}
.ws31{word-spacing:-35.060100px;}
.ws5d{word-spacing:-35.053200px;}
.ws1d{word-spacing:-34.836300px;}
.ws9d{word-spacing:-34.344000px;}
.ws80{word-spacing:-34.337400px;}
.ws3{word-spacing:-33.547800px;}
.ws70{word-spacing:-33.459300px;}
.ws99{word-spacing:-32.908200px;}
.ws89{word-spacing:-32.898000px;}
.ws52{word-spacing:-32.897700px;}
.ws32{word-spacing:-32.891400px;}
.ws36{word-spacing:-32.884500px;}
.ws5b{word-spacing:-32.883600px;}
.wsa0{word-spacing:-32.527800px;}
.wsa7{word-spacing:-32.387400px;}
.ws22{word-spacing:-32.377500px;}
.ws25{word-spacing:-32.369400px;}
.ws6e{word-spacing:-31.429800px;}
.ws1c{word-spacing:-30.953700px;}
.ws4f{word-spacing:-30.736800px;}
.ws78{word-spacing:-30.526800px;}
.ws73{word-spacing:-30.519000px;}
.ws1b{word-spacing:-30.240000px;}
.wsa3{word-spacing:-30.020400px;}
.ws2e{word-spacing:-30.018600px;}
.ws5a{word-spacing:-30.016800px;}
.ws3b{word-spacing:-29.804400px;}
.ws92{word-spacing:-29.517300px;}
.ws8f{word-spacing:-29.300400px;}
.ws66{word-spacing:-29.295900px;}
.ws14{word-spacing:-28.580400px;}
.ws46{word-spacing:-28.570500px;}
.ws7b{word-spacing:-28.366800px;}
.ws71{word-spacing:-27.648000px;}
.ws9b{word-spacing:-27.360000px;}
.wsa6{word-spacing:-27.352800px;}
.ws6a{word-spacing:-26.913600px;}
.ws34{word-spacing:-26.909400px;}
.ws65{word-spacing:-25.911600px;}
.ws8c{word-spacing:-25.704000px;}
.ws6c{word-spacing:-25.700100px;}
.ws82{word-spacing:-25.699200px;}
.ws94{word-spacing:-25.693200px;}
.ws95{word-spacing:-25.692300px;}
.wsa2{word-spacing:-25.687200px;}
.ws16{word-spacing:-25.189200px;}
.ws17{word-spacing:-24.981000px;}
.ws49{word-spacing:-24.980400px;}
.ws38{word-spacing:-24.480000px;}
.ws4b{word-spacing:-24.247800px;}
.ws3d{word-spacing:-24.231600px;}
.ws96{word-spacing:-24.026400px;}
.ws7a{word-spacing:-23.537400px;}
.ws54{word-spacing:-23.535000px;}
.ws79{word-spacing:-23.531400px;}
.ws44{word-spacing:-23.520600px;}
.wsc{word-spacing:-23.320500px;}
.ws2b{word-spacing:-23.310000px;}
.ws30{word-spacing:-22.824000px;}
.ws81{word-spacing:-22.591800px;}
.ws26{word-spacing:-22.104000px;}
.ws41{word-spacing:-22.095000px;}
.ws58{word-spacing:-22.086000px;}
.ws13{word-spacing:-21.600000px;}
.ws6b{word-spacing:-21.591000px;}
.ws90{word-spacing:-21.383100px;}
.ws62{word-spacing:-21.160800px;}
.ws35{word-spacing:-20.878800px;}
.ws57{word-spacing:-20.652300px;}
.ws2c{word-spacing:-20.446800px;}
.ws74{word-spacing:-20.152800px;}
.ws3c{word-spacing:-19.211400px;}
.ws47{word-spacing:-19.206600px;}
.ws76{word-spacing:-18.492600px;}
.ws68{word-spacing:-18.274500px;}
.ws39{word-spacing:-17.554500px;}
.ws83{word-spacing:-17.053200px;}
.ws72{word-spacing:-17.051400px;}
.ws7c{word-spacing:-16.813200px;}
.ws9a{word-spacing:-16.554000px;}
.ws6f{word-spacing:-16.330500px;}
.ws59{word-spacing:-15.622200px;}
.ws50{word-spacing:-15.613200px;}
.ws75{word-spacing:-15.401400px;}
.ws3e{word-spacing:-15.103800px;}
.wsa4{word-spacing:-14.400000px;}
.ws2a{word-spacing:-14.184000px;}
.ws8a{word-spacing:-13.808700px;}
.ws7f{word-spacing:-13.443600px;}
.ws3f{word-spacing:-12.742800px;}
.wse{word-spacing:-12.221400px;}
.wsf{word-spacing:-12.013200px;}
.ws9e{word-spacing:-11.304000px;}
.ws29{word-spacing:-11.285700px;}
.wsa5{word-spacing:-10.800000px;}
.ws60{word-spacing:-10.794000px;}
.ws9f{word-spacing:-10.586400px;}
.ws33{word-spacing:-10.581300px;}
.ws40{word-spacing:-9.356400px;}
.ws4a{word-spacing:-9.137400px;}
.wsb{word-spacing:-8.200800px;}
.ws2f{word-spacing:-8.196300px;}
.ws28{word-spacing:-7.698600px;}
.wsa{word-spacing:-7.200000px;}
.ws3a{word-spacing:-5.535000px;}
.ws4c{word-spacing:-1.926000px;}
.ws43{word-spacing:-0.705600px;}
.ws86{word-spacing:-0.479700px;}
.ws61{word-spacing:-0.283200px;}
.ws5f{word-spacing:0.000000px;}
.ws56{word-spacing:1.440000px;}
.ws98{word-spacing:3.816000px;}
.ws20{word-spacing:4.189500px;}
.ws1f{word-spacing:5.040000px;}
.ws88{word-spacing:14.123700px;}
.ws97{word-spacing:48.069300px;}
.wsa1{word-spacing:62.876700px;}
.ws85{word-spacing:89.825700px;}
.ws8e{word-spacing:107.825700px;}
._14{margin-left:-2.366100px;}
._0{margin-left:-1.110600px;}
._4{width:1.142100px;}
._1{width:18.144000px;}
._7{width:19.202400px;}
._11{width:20.393100px;}
._d{width:22.236300px;}
._20{width:23.883300px;}
._f{width:24.984000px;}
._c{width:26.637300px;}
._a{width:28.648800px;}
._13{width:30.414600px;}
._b{width:32.389200px;}
._6{width:33.969000px;}
._9{width:35.424000px;}
._2{width:36.560100px;}
._17{width:38.003400px;}
._21{width:39.084600px;}
._15{width:40.450500px;}
._1c{width:41.598300px;}
._12{width:42.984000px;}
._18{width:44.352000px;}
._8{width:45.538800px;}
._10{width:46.701300px;}
._19{width:48.016800px;}
._5{width:49.456800px;}
._16{width:51.988500px;}
._1b{width:55.296300px;}
._1a{width:56.649600px;}
._1d{width:58.824000px;}
._e{width:61.247700px;}
._22{width:71.650800px;}
._23{width:119.941200px;}
._1e{width:163.440000px;}
._1f{width:180.901800px;}
._3{width:287.934000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y32{bottom:108.436500px;}
.y5d{bottom:120.496500px;}
.y8c{bottom:123.915000px;}
.y31{bottom:129.136500px;}
.y5c{bottom:141.196500px;}
.y8b{bottom:144.615000px;}
.y30{bottom:149.836500px;}
.y5b{bottom:161.896500px;}
.y2f{bottom:170.536500px;}
.y5a{bottom:182.596500px;}
.y8a{bottom:188.896500px;}
.y2e{bottom:191.236500px;}
.y59{bottom:203.295000px;}
.y2d{bottom:211.936500px;}
.y58{bottom:223.996500px;}
.y89{bottom:230.295000px;}
.y2c{bottom:232.636500px;}
.y57{bottom:244.696500px;}
.y88{bottom:250.996500px;}
.y2b{bottom:253.336500px;}
.y56{bottom:265.396500px;}
.y87{bottom:271.696500px;}
.y2a{bottom:274.036500px;}
.y55{bottom:286.096500px;}
.yb3{bottom:288.436500px;}
.y86{bottom:292.396500px;}
.y29{bottom:294.736500px;}
.y54{bottom:306.795000px;}
.yb2{bottom:309.136500px;}
.y85{bottom:313.096500px;}
.y28{bottom:315.436500px;}
.y53{bottom:327.496500px;}
.yb1{bottom:329.836500px;}
.y84{bottom:333.795000px;}
.y27{bottom:336.136500px;}
.y52{bottom:351.075000px;}
.yb0{bottom:353.415000px;}
.y83{bottom:354.496500px;}
.y26{bottom:356.836500px;}
.y51{bottom:371.775000px;}
.yaf{bottom:374.115000px;}
.y82{bottom:375.196500px;}
.y25{bottom:377.536500px;}
.yae{bottom:394.815000px;}
.y81{bottom:395.896500px;}
.y24{bottom:398.236500px;}
.y50{bottom:413.175000px;}
.y80{bottom:416.596500px;}
.yad{bottom:418.215000px;}
.y23{bottom:418.936500px;}
.y4f{bottom:433.875000px;}
.y7f{bottom:437.295000px;}
.yac{bottom:438.915000px;}
.y22{bottom:439.636500px;}
.y4e{bottom:454.575000px;}
.y7e{bottom:457.996500px;}
.yab{bottom:459.615000px;}
.y21{bottom:460.336500px;}
.y4d{bottom:475.275000px;}
.y7d{bottom:478.696500px;}
.y20{bottom:481.036500px;}
.yaa{bottom:483.015000px;}
.y4c{bottom:495.975000px;}
.y7c{bottom:499.396500px;}
.y1f{bottom:501.736500px;}
.ya9{bottom:503.715000px;}
.y4b{bottom:516.675000px;}
.y7b{bottom:520.096500px;}
.y1e{bottom:522.436500px;}
.ya8{bottom:524.415000px;}
.y4a{bottom:537.375000px;}
.y7a{bottom:540.796500px;}
.y1d{bottom:543.136500px;}
.ya7{bottom:545.115000px;}
.y49{bottom:558.075000px;}
.y79{bottom:561.496500px;}
.y1c{bottom:563.836500px;}
.ya6{bottom:568.695000px;}
.y48{bottom:578.775000px;}
.y78{bottom:582.195000px;}
.y1b{bottom:584.536500px;}
.ya5{bottom:589.396500px;}
.y47{bottom:599.475000px;}
.y77{bottom:602.896500px;}
.y1a{bottom:605.236500px;}
.ya4{bottom:610.096500px;}
.y46{bottom:620.175000px;}
.y76{bottom:623.596500px;}
.ya3{bottom:633.675000px;}
.y45{bottom:640.875000px;}
.y75{bottom:644.295000px;}
.y19{bottom:646.636500px;}
.ya2{bottom:654.375000px;}
.y44{bottom:661.575000px;}
.y74{bottom:664.996500px;}
.y18{bottom:667.336500px;}
.ya1{bottom:675.075000px;}
.y43{bottom:682.275000px;}
.y73{bottom:685.695000px;}
.ya0{bottom:698.475000px;}
.y42{bottom:702.975000px;}
.y72{bottom:706.215000px;}
.y17{bottom:708.736500px;}
.y9f{bottom:719.175000px;}
.y41{bottom:723.675000px;}
.y16{bottom:729.436500px;}
.y71{bottom:729.975000px;}
.y9e{bottom:739.875000px;}
.y40{bottom:744.375000px;}
.y15{bottom:750.136500px;}
.y70{bottom:750.675000px;}
.y9d{bottom:763.275000px;}
.y3f{bottom:765.075000px;}
.y14{bottom:770.836500px;}
.y6f{bottom:771.375000px;}
.y9c{bottom:783.975000px;}
.y3e{bottom:785.775000px;}
.y13{bottom:791.536500px;}
.y6e{bottom:794.955000px;}
.y9b{bottom:804.675000px;}
.y3d{bottom:806.475000px;}
.y6d{bottom:815.655000px;}
.y3c{bottom:827.175000px;}
.y9a{bottom:828.255000px;}
.y12{bottom:832.936500px;}
.y6c{bottom:836.355000px;}
.y3b{bottom:847.875000px;}
.y99{bottom:848.955000px;}
.y11{bottom:853.636500px;}
.y6b{bottom:856.875000px;}
.y3a{bottom:868.575000px;}
.y98{bottom:872.536500px;}
.y6a{bottom:880.636500px;}
.y39{bottom:889.275000px;}
.y97{bottom:893.236500px;}
.y10{bottom:895.036500px;}
.y69{bottom:901.336500px;}
.y38{bottom:909.975000px;}
.yf{bottom:915.736500px;}
.y96{bottom:916.636500px;}
.y68{bottom:922.036500px;}
.y37{bottom:930.675000px;}
.ye{bottom:936.436500px;}
.y95{bottom:937.336500px;}
.y67{bottom:942.736500px;}
.y36{bottom:951.375000px;}
.yd{bottom:957.136500px;}
.y94{bottom:960.915000px;}
.y66{bottom:966.315000px;}
.y35{bottom:972.075000px;}
.yc{bottom:977.836500px;}
.y93{bottom:981.615000px;}
.y65{bottom:987.015000px;}
.y34{bottom:992.775000px;}
.y92{bottom:1005.015000px;}
.y64{bottom:1007.715000px;}
.yb{bottom:1013.475000px;}
.y91{bottom:1025.715000px;}
.y63{bottom:1028.415000px;}
.ya{bottom:1034.175000px;}
.y90{bottom:1049.295000px;}
.y62{bottom:1051.995000px;}
.y9{bottom:1054.875000px;}
.y8f{bottom:1069.995000px;}
.y61{bottom:1072.695000px;}
.y8{bottom:1075.575000px;}
.y8e{bottom:1090.695000px;}
.y60{bottom:1093.395000px;}
.y33{bottom:1096.275000px;}
.y5f{bottom:1114.095000px;}
.y7{bottom:1116.975000px;}
.y5e{bottom:1134.615000px;}
.y8d{bottom:1134.795000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:50.027344px;}
.h8{height:58.573682px;}
.h3{height:62.261719px;}
.h7{height:65.900537px;}
.h2{height:72.898096px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:126.000000px;}
.xf{left:130.500000px;}
.x10{left:139.500000px;}
.x5{left:143.100000px;}
.x3{left:145.620000px;}
.xc{left:147.238500px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x6{left:293.400000px;}
.xe{left:296.460000px;}
.xd{left:392.220000px;}
.x4{left:470.025000px;}
.x7{left:560.878500px;}
.x8{left:585.360000px;}
.xa{left:592.560000px;}
.x9{left:721.978500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:168.333333pt;}
.ws8{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws8d{word-spacing:-34.684000pt;}
.ws2{word-spacing:-34.551200pt;}
.ws19{word-spacing:-34.485600pt;}
.ws11{word-spacing:-34.481067pt;}
.ws1a{word-spacing:-34.480800pt;}
.ws77{word-spacing:-34.358400pt;}
.wsd{word-spacing:-34.355733pt;}
.ws87{word-spacing:-34.338133pt;}
.ws24{word-spacing:-34.301333pt;}
.ws1e{word-spacing:-34.295200pt;}
.ws4{word-spacing:-34.178933pt;}
.ws23{word-spacing:-34.174933pt;}
.ws63{word-spacing:-34.163200pt;}
.ws4d{word-spacing:-33.925333pt;}
.ws45{word-spacing:-33.920000pt;}
.ws8b{word-spacing:-33.915200pt;}
.ws4e{word-spacing:-33.914667pt;}
.ws91{word-spacing:-33.913600pt;}
.ws48{word-spacing:-33.912800pt;}
.ws7d{word-spacing:-33.912000pt;}
.ws18{word-spacing:-33.908800pt;}
.ws27{word-spacing:-33.905600pt;}
.ws93{word-spacing:-33.850667pt;}
.ws12{word-spacing:-33.845600pt;}
.ws51{word-spacing:-33.731733pt;}
.ws6{word-spacing:-33.728533pt;}
.ws21{word-spacing:-33.728000pt;}
.ws42{word-spacing:-33.726133pt;}
.ws15{word-spacing:-33.724800pt;}
.ws7e{word-spacing:-33.723733pt;}
.ws10{word-spacing:-33.722133pt;}
.ws9c{word-spacing:-33.721600pt;}
.ws7{word-spacing:-33.720000pt;}
.ws6d{word-spacing:-33.719200pt;}
.ws5e{word-spacing:-33.716000pt;}
.ws53{word-spacing:-33.715200pt;}
.ws5{word-spacing:-33.656800pt;}
.ws9{word-spacing:-33.530133pt;}
.ws67{word-spacing:-33.525067pt;}
.ws84{word-spacing:-33.457600pt;}
.ws55{word-spacing:-33.084000pt;}
.ws2d{word-spacing:-32.889600pt;}
.ws64{word-spacing:-32.637333pt;}
.ws5c{word-spacing:-32.440000pt;}
.ws69{word-spacing:-32.236000pt;}
.ws37{word-spacing:-32.000533pt;}
.ws31{word-spacing:-31.164533pt;}
.ws5d{word-spacing:-31.158400pt;}
.ws1d{word-spacing:-30.965600pt;}
.ws9d{word-spacing:-30.528000pt;}
.ws80{word-spacing:-30.522133pt;}
.ws3{word-spacing:-29.820267pt;}
.ws70{word-spacing:-29.741600pt;}
.ws99{word-spacing:-29.251733pt;}
.ws89{word-spacing:-29.242667pt;}
.ws52{word-spacing:-29.242400pt;}
.ws32{word-spacing:-29.236800pt;}
.ws36{word-spacing:-29.230667pt;}
.ws5b{word-spacing:-29.229867pt;}
.wsa0{word-spacing:-28.913600pt;}
.wsa7{word-spacing:-28.788800pt;}
.ws22{word-spacing:-28.780000pt;}
.ws25{word-spacing:-28.772800pt;}
.ws6e{word-spacing:-27.937600pt;}
.ws1c{word-spacing:-27.514400pt;}
.ws4f{word-spacing:-27.321600pt;}
.ws78{word-spacing:-27.134933pt;}
.ws73{word-spacing:-27.128000pt;}
.ws1b{word-spacing:-26.880000pt;}
.wsa3{word-spacing:-26.684800pt;}
.ws2e{word-spacing:-26.683200pt;}
.ws5a{word-spacing:-26.681600pt;}
.ws3b{word-spacing:-26.492800pt;}
.ws92{word-spacing:-26.237600pt;}
.ws8f{word-spacing:-26.044800pt;}
.ws66{word-spacing:-26.040800pt;}
.ws14{word-spacing:-25.404800pt;}
.ws46{word-spacing:-25.396000pt;}
.ws7b{word-spacing:-25.214933pt;}
.ws71{word-spacing:-24.576000pt;}
.ws9b{word-spacing:-24.320000pt;}
.wsa6{word-spacing:-24.313600pt;}
.ws6a{word-spacing:-23.923200pt;}
.ws34{word-spacing:-23.919467pt;}
.ws65{word-spacing:-23.032533pt;}
.ws8c{word-spacing:-22.848000pt;}
.ws6c{word-spacing:-22.844533pt;}
.ws82{word-spacing:-22.843733pt;}
.ws94{word-spacing:-22.838400pt;}
.ws95{word-spacing:-22.837600pt;}
.wsa2{word-spacing:-22.833067pt;}
.ws16{word-spacing:-22.390400pt;}
.ws17{word-spacing:-22.205333pt;}
.ws49{word-spacing:-22.204800pt;}
.ws38{word-spacing:-21.760000pt;}
.ws4b{word-spacing:-21.553600pt;}
.ws3d{word-spacing:-21.539200pt;}
.ws96{word-spacing:-21.356800pt;}
.ws7a{word-spacing:-20.922133pt;}
.ws54{word-spacing:-20.920000pt;}
.ws79{word-spacing:-20.916800pt;}
.ws44{word-spacing:-20.907200pt;}
.wsc{word-spacing:-20.729333pt;}
.ws2b{word-spacing:-20.720000pt;}
.ws30{word-spacing:-20.288000pt;}
.ws81{word-spacing:-20.081600pt;}
.ws26{word-spacing:-19.648000pt;}
.ws41{word-spacing:-19.640000pt;}
.ws58{word-spacing:-19.632000pt;}
.ws13{word-spacing:-19.200000pt;}
.ws6b{word-spacing:-19.192000pt;}
.ws90{word-spacing:-19.007200pt;}
.ws62{word-spacing:-18.809600pt;}
.ws35{word-spacing:-18.558933pt;}
.ws57{word-spacing:-18.357600pt;}
.ws2c{word-spacing:-18.174933pt;}
.ws74{word-spacing:-17.913600pt;}
.ws3c{word-spacing:-17.076800pt;}
.ws47{word-spacing:-17.072533pt;}
.ws76{word-spacing:-16.437867pt;}
.ws68{word-spacing:-16.244000pt;}
.ws39{word-spacing:-15.604000pt;}
.ws83{word-spacing:-15.158400pt;}
.ws72{word-spacing:-15.156800pt;}
.ws7c{word-spacing:-14.945067pt;}
.ws9a{word-spacing:-14.714667pt;}
.ws6f{word-spacing:-14.516000pt;}
.ws59{word-spacing:-13.886400pt;}
.ws50{word-spacing:-13.878400pt;}
.ws75{word-spacing:-13.690133pt;}
.ws3e{word-spacing:-13.425600pt;}
.wsa4{word-spacing:-12.800000pt;}
.ws2a{word-spacing:-12.608000pt;}
.ws8a{word-spacing:-12.274400pt;}
.ws7f{word-spacing:-11.949867pt;}
.ws3f{word-spacing:-11.326933pt;}
.wse{word-spacing:-10.863467pt;}
.wsf{word-spacing:-10.678400pt;}
.ws9e{word-spacing:-10.048000pt;}
.ws29{word-spacing:-10.031733pt;}
.wsa5{word-spacing:-9.600000pt;}
.ws60{word-spacing:-9.594667pt;}
.ws9f{word-spacing:-9.410133pt;}
.ws33{word-spacing:-9.405600pt;}
.ws40{word-spacing:-8.316800pt;}
.ws4a{word-spacing:-8.122133pt;}
.wsb{word-spacing:-7.289600pt;}
.ws2f{word-spacing:-7.285600pt;}
.ws28{word-spacing:-6.843200pt;}
.wsa{word-spacing:-6.400000pt;}
.ws3a{word-spacing:-4.920000pt;}
.ws4c{word-spacing:-1.712000pt;}
.ws43{word-spacing:-0.627200pt;}
.ws86{word-spacing:-0.426400pt;}
.ws61{word-spacing:-0.251733pt;}
.ws5f{word-spacing:0.000000pt;}
.ws56{word-spacing:1.280000pt;}
.ws98{word-spacing:3.392000pt;}
.ws20{word-spacing:3.724000pt;}
.ws1f{word-spacing:4.480000pt;}
.ws88{word-spacing:12.554400pt;}
.ws97{word-spacing:42.728267pt;}
.wsa1{word-spacing:55.890400pt;}
.ws85{word-spacing:79.845067pt;}
.ws8e{word-spacing:95.845067pt;}
._14{margin-left:-2.103200pt;}
._0{margin-left:-0.987200pt;}
._4{width:1.015200pt;}
._1{width:16.128000pt;}
._7{width:17.068800pt;}
._11{width:18.127200pt;}
._d{width:19.765600pt;}
._20{width:21.229600pt;}
._f{width:22.208000pt;}
._c{width:23.677600pt;}
._a{width:25.465600pt;}
._13{width:27.035200pt;}
._b{width:28.790400pt;}
._6{width:30.194667pt;}
._9{width:31.488000pt;}
._2{width:32.497867pt;}
._17{width:33.780800pt;}
._21{width:34.741867pt;}
._15{width:35.956000pt;}
._1c{width:36.976267pt;}
._12{width:38.208000pt;}
._18{width:39.424000pt;}
._8{width:40.478933pt;}
._10{width:41.512267pt;}
._19{width:42.681600pt;}
._5{width:43.961600pt;}
._16{width:46.212000pt;}
._1b{width:49.152267pt;}
._1a{width:50.355200pt;}
._1d{width:52.288000pt;}
._e{width:54.442400pt;}
._22{width:63.689600pt;}
._23{width:106.614400pt;}
._1e{width:145.280000pt;}
._1f{width:160.801600pt;}
._3{width:255.941333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y32{bottom:96.388000pt;}
.y5d{bottom:107.108000pt;}
.y8c{bottom:110.146667pt;}
.y31{bottom:114.788000pt;}
.y5c{bottom:125.508000pt;}
.y8b{bottom:128.546667pt;}
.y30{bottom:133.188000pt;}
.y5b{bottom:143.908000pt;}
.y2f{bottom:151.588000pt;}
.y5a{bottom:162.308000pt;}
.y8a{bottom:167.908000pt;}
.y2e{bottom:169.988000pt;}
.y59{bottom:180.706667pt;}
.y2d{bottom:188.388000pt;}
.y58{bottom:199.108000pt;}
.y89{bottom:204.706667pt;}
.y2c{bottom:206.788000pt;}
.y57{bottom:217.508000pt;}
.y88{bottom:223.108000pt;}
.y2b{bottom:225.188000pt;}
.y56{bottom:235.908000pt;}
.y87{bottom:241.508000pt;}
.y2a{bottom:243.588000pt;}
.y55{bottom:254.308000pt;}
.yb3{bottom:256.388000pt;}
.y86{bottom:259.908000pt;}
.y29{bottom:261.988000pt;}
.y54{bottom:272.706667pt;}
.yb2{bottom:274.788000pt;}
.y85{bottom:278.308000pt;}
.y28{bottom:280.388000pt;}
.y53{bottom:291.108000pt;}
.yb1{bottom:293.188000pt;}
.y84{bottom:296.706667pt;}
.y27{bottom:298.788000pt;}
.y52{bottom:312.066667pt;}
.yb0{bottom:314.146667pt;}
.y83{bottom:315.108000pt;}
.y26{bottom:317.188000pt;}
.y51{bottom:330.466667pt;}
.yaf{bottom:332.546667pt;}
.y82{bottom:333.508000pt;}
.y25{bottom:335.588000pt;}
.yae{bottom:350.946667pt;}
.y81{bottom:351.908000pt;}
.y24{bottom:353.988000pt;}
.y50{bottom:367.266667pt;}
.y80{bottom:370.308000pt;}
.yad{bottom:371.746667pt;}
.y23{bottom:372.388000pt;}
.y4f{bottom:385.666667pt;}
.y7f{bottom:388.706667pt;}
.yac{bottom:390.146667pt;}
.y22{bottom:390.788000pt;}
.y4e{bottom:404.066667pt;}
.y7e{bottom:407.108000pt;}
.yab{bottom:408.546667pt;}
.y21{bottom:409.188000pt;}
.y4d{bottom:422.466667pt;}
.y7d{bottom:425.508000pt;}
.y20{bottom:427.588000pt;}
.yaa{bottom:429.346667pt;}
.y4c{bottom:440.866667pt;}
.y7c{bottom:443.908000pt;}
.y1f{bottom:445.988000pt;}
.ya9{bottom:447.746667pt;}
.y4b{bottom:459.266667pt;}
.y7b{bottom:462.308000pt;}
.y1e{bottom:464.388000pt;}
.ya8{bottom:466.146667pt;}
.y4a{bottom:477.666667pt;}
.y7a{bottom:480.708000pt;}
.y1d{bottom:482.788000pt;}
.ya7{bottom:484.546667pt;}
.y49{bottom:496.066667pt;}
.y79{bottom:499.108000pt;}
.y1c{bottom:501.188000pt;}
.ya6{bottom:505.506667pt;}
.y48{bottom:514.466667pt;}
.y78{bottom:517.506667pt;}
.y1b{bottom:519.588000pt;}
.ya5{bottom:523.908000pt;}
.y47{bottom:532.866667pt;}
.y77{bottom:535.908000pt;}
.y1a{bottom:537.988000pt;}
.ya4{bottom:542.308000pt;}
.y46{bottom:551.266667pt;}
.y76{bottom:554.308000pt;}
.ya3{bottom:563.266667pt;}
.y45{bottom:569.666667pt;}
.y75{bottom:572.706667pt;}
.y19{bottom:574.788000pt;}
.ya2{bottom:581.666667pt;}
.y44{bottom:588.066667pt;}
.y74{bottom:591.108000pt;}
.y18{bottom:593.188000pt;}
.ya1{bottom:600.066667pt;}
.y43{bottom:606.466667pt;}
.y73{bottom:609.506667pt;}
.ya0{bottom:620.866667pt;}
.y42{bottom:624.866667pt;}
.y72{bottom:627.746667pt;}
.y17{bottom:629.988000pt;}
.y9f{bottom:639.266667pt;}
.y41{bottom:643.266667pt;}
.y16{bottom:648.388000pt;}
.y71{bottom:648.866667pt;}
.y9e{bottom:657.666667pt;}
.y40{bottom:661.666667pt;}
.y15{bottom:666.788000pt;}
.y70{bottom:667.266667pt;}
.y9d{bottom:678.466667pt;}
.y3f{bottom:680.066667pt;}
.y14{bottom:685.188000pt;}
.y6f{bottom:685.666667pt;}
.y9c{bottom:696.866667pt;}
.y3e{bottom:698.466667pt;}
.y13{bottom:703.588000pt;}
.y6e{bottom:706.626667pt;}
.y9b{bottom:715.266667pt;}
.y3d{bottom:716.866667pt;}
.y6d{bottom:725.026667pt;}
.y3c{bottom:735.266667pt;}
.y9a{bottom:736.226667pt;}
.y12{bottom:740.388000pt;}
.y6c{bottom:743.426667pt;}
.y3b{bottom:753.666667pt;}
.y99{bottom:754.626667pt;}
.y11{bottom:758.788000pt;}
.y6b{bottom:761.666667pt;}
.y3a{bottom:772.066667pt;}
.y98{bottom:775.588000pt;}
.y6a{bottom:782.788000pt;}
.y39{bottom:790.466667pt;}
.y97{bottom:793.988000pt;}
.y10{bottom:795.588000pt;}
.y69{bottom:801.188000pt;}
.y38{bottom:808.866667pt;}
.yf{bottom:813.988000pt;}
.y96{bottom:814.788000pt;}
.y68{bottom:819.588000pt;}
.y37{bottom:827.266667pt;}
.ye{bottom:832.388000pt;}
.y95{bottom:833.188000pt;}
.y67{bottom:837.988000pt;}
.y36{bottom:845.666667pt;}
.yd{bottom:850.788000pt;}
.y94{bottom:854.146667pt;}
.y66{bottom:858.946667pt;}
.y35{bottom:864.066667pt;}
.yc{bottom:869.188000pt;}
.y93{bottom:872.546667pt;}
.y65{bottom:877.346667pt;}
.y34{bottom:882.466667pt;}
.y92{bottom:893.346667pt;}
.y64{bottom:895.746667pt;}
.yb{bottom:900.866667pt;}
.y91{bottom:911.746667pt;}
.y63{bottom:914.146667pt;}
.ya{bottom:919.266667pt;}
.y90{bottom:932.706667pt;}
.y62{bottom:935.106667pt;}
.y9{bottom:937.666667pt;}
.y8f{bottom:951.106667pt;}
.y61{bottom:953.506667pt;}
.y8{bottom:956.066667pt;}
.y8e{bottom:969.506667pt;}
.y60{bottom:971.906667pt;}
.y33{bottom:974.466667pt;}
.y5f{bottom:990.306667pt;}
.y7{bottom:992.866667pt;}
.y5e{bottom:1008.546667pt;}
.y8d{bottom:1008.706667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:44.468750pt;}
.h8{height:52.065495pt;}
.h3{height:55.343750pt;}
.h7{height:58.578255pt;}
.h2{height:64.798307pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:112.000000pt;}
.xf{left:116.000000pt;}
.x10{left:124.000000pt;}
.x5{left:127.200000pt;}
.x3{left:129.440000pt;}
.xc{left:130.878667pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x6{left:260.800000pt;}
.xe{left:263.520000pt;}
.xd{left:348.640000pt;}
.x4{left:417.800000pt;}
.x7{left:498.558667pt;}
.x8{left:520.320000pt;}
.xa{left:526.720000pt;}
.x9{left:641.758667pt;}
}




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