
    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_b702123c1acdc33aa4e37cf3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_8191ed78743f99fdb5c46006.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079000;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_439241f80f07b3a475e91c0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_a11bb7a83de95a610e9a6d38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_888ddb5bbf9b21ea104797bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_af5a5c96595b95fd6aff1f08.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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_dd51a5f03f5fe16aa211b7e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b3f9d2ba92e1060fdbef73c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_13517b8dd3400c36632fd673.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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;}
.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;}
}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504681px;}
.ws3{word-spacing:-6.996050px;}
.ws4{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._34{margin-left:-1.001627px;}
._9{width:1.804447px;}
._22{width:2.837662px;}
._16{width:4.678151px;}
._f{width:6.015743px;}
._e{width:7.465800px;}
._15{width:8.741151px;}
._8{width:10.409328px;}
._2{width:11.493973px;}
._7{width:13.038264px;}
._13{width:14.173883px;}
._25{width:15.275692px;}
._b{width:18.415540px;}
._14{width:19.472448px;}
._1d{width:21.239828px;}
._1e{width:22.799061px;}
._a{width:23.869232px;}
._6{width:24.944899px;}
._1b{width:25.966343px;}
._1a{width:27.029554px;}
._d{width:28.509915px;}
._18{width:29.628290px;}
._2b{width:30.672616px;}
._36{width:31.901343px;}
._29{width:33.155566px;}
._3{width:34.938977px;}
._19{width:36.267103px;}
._1f{width:38.166892px;}
._27{width:39.197949px;}
._1{width:40.659121px;}
._0{width:42.029014px;}
._35{width:43.093943px;}
._c{width:44.440242px;}
._2e{width:46.518632px;}
._2d{width:47.608803px;}
._2c{width:48.791023px;}
._26{width:49.937538px;}
._12{width:50.945820px;}
._39{width:52.801928px;}
._41{width:54.252042px;}
._17{width:55.557574px;}
._40{width:57.377144px;}
._4{width:60.739452px;}
._2a{width:62.324771px;}
._20{width:63.524802px;}
._3c{width:65.743033px;}
._3b{width:67.309137px;}
._42{width:68.866696px;}
._43{width:69.970172px;}
._4c{width:71.004894px;}
._38{width:72.537608px;}
._46{width:73.547155px;}
._32{width:74.573168px;}
._4a{width:78.140667px;}
._4f{width:79.332693px;}
._44{width:80.835185px;}
._11{width:81.966837px;}
._45{width:83.408275px;}
._28{width:86.427851px;}
._3a{width:87.715529px;}
._1c{width:89.830624px;}
._10{width:91.276555px;}
._5{width:92.887383px;}
._31{width:93.981002px;}
._4e{width:95.777222px;}
._4b{width:96.898985px;}
._4d{width:100.724481px;}
._52{width:102.581654px;}
._53{width:105.041746px;}
._47{width:112.344303px;}
._21{width:114.767960px;}
._37{width:116.011203px;}
._3d{width:126.993626px;}
._48{width:127.998192px;}
._49{width:129.044260px;}
._3f{width:131.576117px;}
._33{width:132.761481px;}
._50{width:137.450006px;}
._3e{width:139.169219px;}
._2f{width:142.982969px;}
._23{width:212.907250px;}
._30{width:423.708460px;}
._24{width:701.524674px;}
._51{width:734.782162px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs8{font-size:42.018724px;}
.fs9{font-size:48.018688px;}
.fs1{font-size:54.020354px;}
.fs6{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs2{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y114{bottom:5.862981px;}
.y113{bottom:15.779823px;}
.y112{bottom:25.696665px;}
.y10f{bottom:31.095019px;}
.y111{bottom:35.613508px;}
.y10c{bottom:37.200287px;}
.y2b{bottom:38.093879px;}
.y110{bottom:45.530350px;}
.y58{bottom:48.972291px;}
.y10b{bottom:55.556074px;}
.y10d{bottom:56.429391px;}
.y2a{bottom:60.602360px;}
.ybe{bottom:62.855532px;}
.y109{bottom:69.587121px;}
.y57{bottom:71.480771px;}
.y10a{bottom:72.694378px;}
.y29{bottom:83.110841px;}
.ybd{bottom:85.364012px;}
.y8d{bottom:91.662849px;}
.y108{bottom:92.095602px;}
.y56{bottom:93.989252px;}
.y28{bottom:105.619321px;}
.ybc{bottom:107.872493px;}
.y8c{bottom:114.171330px;}
.y107{bottom:114.604082px;}
.y55{bottom:116.497733px;}
.y27{bottom:128.127802px;}
.ybb{bottom:130.380974px;}
.y8b{bottom:136.679810px;}
.y106{bottom:137.112563px;}
.y54{bottom:139.006213px;}
.yc6{bottom:144.298818px;}
.y115{bottom:145.560849px;}
.y26{bottom:150.636283px;}
.yba{bottom:152.889454px;}
.y8a{bottom:159.188291px;}
.y105{bottom:159.621044px;}
.y53{bottom:161.514694px;}
.yc5{bottom:166.807298px;}
.y25{bottom:173.144763px;}
.yb9{bottom:175.397935px;}
.y89{bottom:181.696772px;}
.y104{bottom:182.129524px;}
.y52{bottom:184.023174px;}
.yc4{bottom:189.315779px;}
.y24{bottom:195.653244px;}
.y118{bottom:195.970656px;}
.yb8{bottom:197.906416px;}
.y88{bottom:204.205252px;}
.y103{bottom:204.638005px;}
.y51{bottom:206.531655px;}
.yc3{bottom:211.824260px;}
.y117{bottom:211.976885px;}
.y23{bottom:218.161725px;}
.yb7{bottom:220.414896px;}
.y87{bottom:226.713733px;}
.y102{bottom:227.146485px;}
.y50{bottom:229.040136px;}
.yc2{bottom:234.332740px;}
.y10e{bottom:236.737273px;}
.y22{bottom:240.670205px;}
.yb6{bottom:242.923377px;}
.y86{bottom:249.222214px;}
.y101{bottom:249.654966px;}
.y4f{bottom:251.548616px;}
.yc1{bottom:256.841221px;}
.y21{bottom:263.178686px;}
.yb5{bottom:265.431858px;}
.y85{bottom:271.730694px;}
.y100{bottom:272.163447px;}
.yc0{bottom:279.349702px;}
.y20{bottom:285.687167px;}
.yb4{bottom:287.940338px;}
.y84{bottom:294.239175px;}
.yff{bottom:294.671927px;}
.y5d{bottom:295.365087px;}
.ybf{bottom:301.858182px;}
.y119{bottom:305.313109px;}
.y1f{bottom:308.195647px;}
.yb3{bottom:310.448819px;}
.y83{bottom:316.747656px;}
.yfe{bottom:317.180408px;}
.y1e{bottom:330.704128px;}
.yb2{bottom:332.957299px;}
.y116{bottom:338.338485px;}
.y82{bottom:339.256136px;}
.yfd{bottom:339.688889px;}
.y4c{bottom:342.077194px;}
.yc8{bottom:350.176303px;}
.y1d{bottom:353.212609px;}
.yb1{bottom:355.465780px;}
.y81{bottom:361.764617px;}
.yfc{bottom:362.197369px;}
.y4b{bottom:364.585674px;}
.yc7{bottom:374.935631px;}
.y1c{bottom:375.721089px;}
.yb0{bottom:377.974261px;}
.y80{bottom:384.273098px;}
.yfb{bottom:384.705850px;}
.y4a{bottom:387.094155px;}
.y1b{bottom:398.229570px;}
.yaf{bottom:400.482741px;}
.y7f{bottom:406.781578px;}
.yfa{bottom:407.214331px;}
.y49{bottom:409.602635px;}
.y1a{bottom:420.738051px;}
.yae{bottom:422.991222px;}
.y7e{bottom:429.290059px;}
.yf9{bottom:429.722811px;}
.y48{bottom:432.111116px;}
.y19{bottom:443.246531px;}
.yad{bottom:445.499703px;}
.y7d{bottom:451.798540px;}
.yf8{bottom:452.231292px;}
.y47{bottom:454.619597px;}
.y18{bottom:465.755012px;}
.yac{bottom:468.008183px;}
.y7c{bottom:474.307020px;}
.y46{bottom:477.128077px;}
.y17{bottom:488.263493px;}
.yab{bottom:490.516664px;}
.y7b{bottom:496.815501px;}
.ye4{bottom:499.424094px;}
.y45{bottom:499.636558px;}
.y16{bottom:510.771973px;}
.yaa{bottom:513.025145px;}
.y7a{bottom:519.323982px;}
.y44{bottom:522.145039px;}
.y15{bottom:533.280454px;}
.ya9{bottom:535.533625px;}
.y79{bottom:541.832462px;}
.y43{bottom:544.653519px;}
.ye3{bottom:547.396093px;}
.y14{bottom:555.788935px;}
.ya8{bottom:558.042106px;}
.y78{bottom:564.340943px;}
.y42{bottom:567.162000px;}
.ye2{bottom:569.904574px;}
.y13{bottom:578.297415px;}
.ya7{bottom:580.550587px;}
.y77{bottom:586.849424px;}
.y41{bottom:589.670481px;}
.ye1{bottom:592.413054px;}
.y12{bottom:600.805896px;}
.ya6{bottom:603.059067px;}
.y76{bottom:609.357904px;}
.y40{bottom:612.178961px;}
.ye0{bottom:614.921535px;}
.y11{bottom:623.314377px;}
.ya5{bottom:625.567548px;}
.y75{bottom:631.866385px;}
.y3f{bottom:634.687442px;}
.ydf{bottom:637.430016px;}
.y10{bottom:645.822857px;}
.ya4{bottom:648.076029px;}
.y74{bottom:654.374866px;}
.y3e{bottom:657.195923px;}
.yde{bottom:659.938496px;}
.yf{bottom:668.331338px;}
.ya3{bottom:670.584509px;}
.y73{bottom:676.883346px;}
.y3d{bottom:679.704403px;}
.ydd{bottom:682.446977px;}
.ye{bottom:690.839819px;}
.ya2{bottom:693.092990px;}
.y72{bottom:699.391827px;}
.y3c{bottom:702.212884px;}
.ydc{bottom:704.955458px;}
.yd{bottom:713.348299px;}
.ya1{bottom:715.601471px;}
.y71{bottom:721.900308px;}
.y3b{bottom:724.721365px;}
.ydb{bottom:727.463938px;}
.yc{bottom:735.856780px;}
.ya0{bottom:738.109951px;}
.y70{bottom:744.408788px;}
.y3a{bottom:747.229845px;}
.yf7{bottom:749.343243px;}
.yda{bottom:749.972419px;}
.yb{bottom:758.365261px;}
.y9f{bottom:760.618432px;}
.y6f{bottom:766.917269px;}
.y39{bottom:769.738326px;}
.yf6{bottom:771.851724px;}
.yd9{bottom:772.480900px;}
.ya{bottom:780.873741px;}
.y9e{bottom:783.126913px;}
.y6e{bottom:789.425750px;}
.y38{bottom:792.246807px;}
.yf5{bottom:794.360205px;}
.yd8{bottom:794.989380px;}
.y9{bottom:803.382222px;}
.y9d{bottom:805.635393px;}
.y6d{bottom:811.934230px;}
.y37{bottom:814.755287px;}
.yf4{bottom:816.868685px;}
.yd7{bottom:817.497861px;}
.y8{bottom:825.890703px;}
.y9c{bottom:828.143874px;}
.y6c{bottom:834.442711px;}
.y36{bottom:837.263768px;}
.yf3{bottom:839.377166px;}
.yd6{bottom:840.006342px;}
.y7{bottom:848.399183px;}
.y9b{bottom:850.652355px;}
.y6b{bottom:856.951192px;}
.y35{bottom:859.772249px;}
.yf2{bottom:861.885647px;}
.yd5{bottom:862.514822px;}
.y6{bottom:870.907664px;}
.y9a{bottom:873.160835px;}
.y6a{bottom:879.459672px;}
.y34{bottom:882.280729px;}
.yf1{bottom:884.394127px;}
.yd4{bottom:885.023303px;}
.y5{bottom:893.416145px;}
.y99{bottom:895.669316px;}
.y69{bottom:901.968153px;}
.y33{bottom:904.789210px;}
.yf0{bottom:906.902608px;}
.yd3{bottom:907.531784px;}
.y4{bottom:915.924625px;}
.y98{bottom:918.177797px;}
.y68{bottom:924.476634px;}
.y32{bottom:927.297691px;}
.yef{bottom:929.411089px;}
.yd2{bottom:930.040264px;}
.y3{bottom:938.433106px;}
.y97{bottom:940.686277px;}
.y11e{bottom:946.772452px;}
.y67{bottom:946.985114px;}
.y31{bottom:949.806171px;}
.yee{bottom:951.919569px;}
.y2{bottom:960.941587px;}
.y96{bottom:963.194758px;}
.y11d{bottom:969.280932px;}
.y66{bottom:969.493595px;}
.y30{bottom:972.314652px;}
.yed{bottom:974.428050px;}
.yd1{bottom:975.057226px;}
.y95{bottom:985.703239px;}
.y65{bottom:992.002076px;}
.y2f{bottom:994.823133px;}
.yec{bottom:996.936531px;}
.yd0{bottom:997.565706px;}
.y5c{bottom:1003.144634px;}
.y94{bottom:1008.211719px;}
.y11c{bottom:1014.297893px;}
.y64{bottom:1014.510556px;}
.y2e{bottom:1017.331613px;}
.yeb{bottom:1019.445011px;}
.ycf{bottom:1020.074187px;}
.y93{bottom:1030.720200px;}
.y63{bottom:1037.019037px;}
.y2d{bottom:1039.840094px;}
.yea{bottom:1041.953492px;}
.yce{bottom:1042.582668px;}
.y4e{bottom:1044.522382px;}
.y92{bottom:1053.228681px;}
.y11b{bottom:1059.314855px;}
.y62{bottom:1059.527518px;}
.y2c{bottom:1062.348575px;}
.y4d{bottom:1062.529167px;}
.ye9{bottom:1064.461973px;}
.ycd{bottom:1065.091148px;}
.y91{bottom:1075.737161px;}
.y61{bottom:1082.035998px;}
.ye8{bottom:1086.970453px;}
.ycc{bottom:1087.599629px;}
.y90{bottom:1098.245642px;}
.y11a{bottom:1104.331816px;}
.y60{bottom:1104.544479px;}
.ye7{bottom:1109.478934px;}
.y5b{bottom:1109.885979px;}
.ycb{bottom:1110.108110px;}
.y8f{bottom:1120.754123px;}
.y5f{bottom:1127.052960px;}
.ye6{bottom:1131.987415px;}
.yca{bottom:1132.616590px;}
.y5a{bottom:1139.147004px;}
.y8e{bottom:1143.262603px;}
.y5e{bottom:1149.561440px;}
.y11f{bottom:1150.673787px;}
.ye5{bottom:1154.495895px;}
.yc9{bottom:1155.125071px;}
.y59{bottom:1168.408029px;}
.h9{height:15.033783px;}
.h8{height:22.751155px;}
.hc{height:24.187179px;}
.hd{height:34.161222px;}
.he{height:39.039194px;}
.h4{height:43.972568px;}
.ha{height:48.786186px;}
.hb{height:53.639998px;}
.h7{height:53.653825px;}
.h3{height:53.719820px;}
.hf{height:57.621710px;}
.h6{height:59.638470px;}
.h5{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:41.335028px;}
.x1{left:43.002920px;}
.x3{left:45.220236px;}
.xc{left:47.967125px;}
.xf{left:53.391773px;}
.x5{left:60.416128px;}
.x9{left:72.793748px;}
.xd{left:119.519995px;}
.xe{left:127.283452px;}
.x4{left:199.142224px;}
.x6{left:232.078462px;}
.x2{left:469.235590px;}
.x7{left:497.283268px;}
.xb{left:618.659038px;}
.xa{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337494pt;}
.ws3{word-spacing:-6.218711pt;}
.ws4{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._34{margin-left:-0.890335pt;}
._9{width:1.603953pt;}
._22{width:2.522366pt;}
._16{width:4.158356pt;}
._f{width:5.347327pt;}
._e{width:6.636267pt;}
._15{width:7.769912pt;}
._8{width:9.252736pt;}
._2{width:10.216865pt;}
._7{width:11.589568pt;}
._13{width:12.599007pt;}
._25{width:13.578393pt;}
._b{width:16.369368pt;}
._14{width:17.308843pt;}
._1d{width:18.879847pt;}
._1e{width:20.265832pt;}
._a{width:21.217095pt;}
._6{width:22.173243pt;}
._1b{width:23.081194pt;}
._1a{width:24.026270pt;}
._d{width:25.342147pt;}
._18{width:26.336257pt;}
._2b{width:27.264548pt;}
._36{width:28.356749pt;}
._29{width:29.471614pt;}
._3{width:31.056868pt;}
._19{width:32.237425pt;}
._1f{width:33.926126pt;}
._27{width:34.842621pt;}
._1{width:36.141441pt;}
._0{width:37.359124pt;}
._35{width:38.305727pt;}
._c{width:39.502437pt;}
._2e{width:41.349895pt;}
._2d{width:42.318936pt;}
._2c{width:43.369798pt;}
._26{width:44.388923pt;}
._12{width:45.285174pt;}
._39{width:46.935047pt;}
._41{width:48.224037pt;}
._17{width:49.384510pt;}
._40{width:51.001906pt;}
._4{width:53.990624pt;}
._2a{width:55.399796pt;}
._20{width:56.466490pt;}
._3c{width:58.438251pt;}
._3b{width:59.830344pt;}
._42{width:61.214841pt;}
._43{width:62.195708pt;}
._4c{width:63.115461pt;}
._38{width:64.477874pt;}
._46{width:65.375249pt;}
._32{width:66.287260pt;}
._4a{width:69.458370pt;}
._4f{width:70.517949pt;}
._44{width:71.853498pt;}
._11{width:72.859411pt;}
._45{width:74.140689pt;}
._28{width:76.824757pt;}
._3a{width:77.969359pt;}
._1c{width:79.849444pt;}
._10{width:81.134715pt;}
._5{width:82.566563pt;}
._31{width:83.538669pt;}
._4e{width:85.135308pt;}
._4b{width:86.132431pt;}
._4d{width:89.532872pt;}
._52{width:91.183693pt;}
._53{width:93.370441pt;}
._47{width:99.861603pt;}
._21{width:102.015964pt;}
._37{width:103.121069pt;}
._3d{width:112.883223pt;}
._48{width:113.776170pt;}
._49{width:114.706009pt;}
._3f{width:116.956549pt;}
._33{width:118.010205pt;}
._50{width:122.177783pt;}
._3e{width:123.705973pt;}
._2f{width:127.095972pt;}
._23{width:189.250889pt;}
._30{width:376.629742pt;}
._24{width:623.577488pt;}
._51{width:653.139699pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs8{font-size:37.349977pt;}
.fs9{font-size:42.683279pt;}
.fs1{font-size:48.018092pt;}
.fs6{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs2{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y114{bottom:5.211538pt;}
.y113{bottom:14.026509pt;}
.y112{bottom:22.841480pt;}
.y10f{bottom:27.640017pt;}
.y111{bottom:31.656451pt;}
.y10c{bottom:33.066922pt;}
.y2b{bottom:33.861226pt;}
.y110{bottom:40.471422pt;}
.y58{bottom:43.530925pt;}
.y10b{bottom:49.383177pt;}
.y10d{bottom:50.159458pt;}
.y2a{bottom:53.868764pt;}
.ybe{bottom:55.871584pt;}
.y109{bottom:61.855219pt;}
.y57{bottom:63.538463pt;}
.y10a{bottom:64.617225pt;}
.y29{bottom:73.876303pt;}
.ybd{bottom:75.879122pt;}
.y8d{bottom:81.478088pt;}
.y108{bottom:81.862757pt;}
.y56{bottom:83.546002pt;}
.y28{bottom:93.883841pt;}
.ybc{bottom:95.886660pt;}
.y8c{bottom:101.485626pt;}
.y107{bottom:101.870295pt;}
.y55{bottom:103.553540pt;}
.y27{bottom:113.891380pt;}
.ybb{bottom:115.894199pt;}
.y8b{bottom:121.493165pt;}
.y106{bottom:121.877834pt;}
.y54{bottom:123.561078pt;}
.yc6{bottom:128.265616pt;}
.y115{bottom:129.387421pt;}
.y26{bottom:133.898918pt;}
.yba{bottom:135.901737pt;}
.y8a{bottom:141.500703pt;}
.y105{bottom:141.885372pt;}
.y53{bottom:143.568617pt;}
.yc5{bottom:148.273154pt;}
.y25{bottom:153.906456pt;}
.yb9{bottom:155.909275pt;}
.y89{bottom:161.508242pt;}
.y104{bottom:161.892910pt;}
.y52{bottom:163.576155pt;}
.yc4{bottom:168.280693pt;}
.y24{bottom:173.913995pt;}
.y118{bottom:174.196139pt;}
.yb8{bottom:175.916814pt;}
.y88{bottom:181.515780pt;}
.y103{bottom:181.900449pt;}
.y51{bottom:183.583693pt;}
.yc3{bottom:188.288231pt;}
.y117{bottom:188.423898pt;}
.y23{bottom:193.921533pt;}
.yb7{bottom:195.924352pt;}
.y87{bottom:201.523318pt;}
.y102{bottom:201.907987pt;}
.y50{bottom:203.591232pt;}
.yc2{bottom:208.295769pt;}
.y10e{bottom:210.433132pt;}
.y22{bottom:213.929071pt;}
.yb6{bottom:215.931891pt;}
.y86{bottom:221.530857pt;}
.y101{bottom:221.915525pt;}
.y4f{bottom:223.598770pt;}
.yc1{bottom:228.303308pt;}
.y21{bottom:233.936610pt;}
.yb5{bottom:235.939429pt;}
.y85{bottom:241.538395pt;}
.y100{bottom:241.923064pt;}
.yc0{bottom:248.310846pt;}
.y20{bottom:253.944148pt;}
.yb4{bottom:255.946967pt;}
.y84{bottom:261.545933pt;}
.yff{bottom:261.930602pt;}
.y5d{bottom:262.546744pt;}
.ybf{bottom:268.318384pt;}
.y119{bottom:271.389431pt;}
.y1f{bottom:273.951687pt;}
.yb3{bottom:275.954506pt;}
.y83{bottom:281.553472pt;}
.yfe{bottom:281.938141pt;}
.y1e{bottom:293.959225pt;}
.yb2{bottom:295.962044pt;}
.y116{bottom:300.745320pt;}
.y82{bottom:301.561010pt;}
.yfd{bottom:301.945679pt;}
.y4c{bottom:304.068616pt;}
.yc8{bottom:311.267824pt;}
.y1d{bottom:313.966763pt;}
.yb1{bottom:315.969582pt;}
.y81{bottom:321.568549pt;}
.yfc{bottom:321.953217pt;}
.y4b{bottom:324.076155pt;}
.yc7{bottom:333.276117pt;}
.y1c{bottom:333.974302pt;}
.yb0{bottom:335.977121pt;}
.y80{bottom:341.576087pt;}
.yfb{bottom:341.960756pt;}
.y4a{bottom:344.083693pt;}
.y1b{bottom:353.981840pt;}
.yaf{bottom:355.984659pt;}
.y7f{bottom:361.583625pt;}
.yfa{bottom:361.968294pt;}
.y49{bottom:364.091232pt;}
.y1a{bottom:373.989378pt;}
.yae{bottom:375.992197pt;}
.y7e{bottom:381.591164pt;}
.yf9{bottom:381.975832pt;}
.y48{bottom:384.098770pt;}
.y19{bottom:393.996917pt;}
.yad{bottom:395.999736pt;}
.y7d{bottom:401.598702pt;}
.yf8{bottom:401.983371pt;}
.y47{bottom:404.106308pt;}
.y18{bottom:414.004455pt;}
.yac{bottom:416.007274pt;}
.y7c{bottom:421.606240pt;}
.y46{bottom:424.113847pt;}
.y17{bottom:434.011993pt;}
.yab{bottom:436.014813pt;}
.y7b{bottom:441.613779pt;}
.ye4{bottom:443.932528pt;}
.y45{bottom:444.121385pt;}
.y16{bottom:454.019532pt;}
.yaa{bottom:456.022351pt;}
.y7a{bottom:461.621317pt;}
.y44{bottom:464.128923pt;}
.y15{bottom:474.027070pt;}
.ya9{bottom:476.029889pt;}
.y79{bottom:481.628855pt;}
.y43{bottom:484.136462pt;}
.ye3{bottom:486.574305pt;}
.y14{bottom:494.034609pt;}
.ya8{bottom:496.037428pt;}
.y78{bottom:501.636394pt;}
.y42{bottom:504.144000pt;}
.ye2{bottom:506.581843pt;}
.y13{bottom:514.042147pt;}
.ya7{bottom:516.044966pt;}
.y77{bottom:521.643932pt;}
.y41{bottom:524.151538pt;}
.ye1{bottom:526.589382pt;}
.y12{bottom:534.049685pt;}
.ya6{bottom:536.052504pt;}
.y76{bottom:541.651471pt;}
.y40{bottom:544.159077pt;}
.ye0{bottom:546.596920pt;}
.y11{bottom:554.057224pt;}
.ya5{bottom:556.060043pt;}
.y75{bottom:561.659009pt;}
.y3f{bottom:564.166615pt;}
.ydf{bottom:566.604458pt;}
.y10{bottom:574.064762pt;}
.ya4{bottom:576.067581pt;}
.y74{bottom:581.666547pt;}
.y3e{bottom:584.174154pt;}
.yde{bottom:586.611997pt;}
.yf{bottom:594.072300pt;}
.ya3{bottom:596.075119pt;}
.y73{bottom:601.674086pt;}
.y3d{bottom:604.181692pt;}
.ydd{bottom:606.619535pt;}
.ye{bottom:614.079839pt;}
.ya2{bottom:616.082658pt;}
.y72{bottom:621.681624pt;}
.y3c{bottom:624.189230pt;}
.ydc{bottom:626.627073pt;}
.yd{bottom:634.087377pt;}
.ya1{bottom:636.090196pt;}
.y71{bottom:641.689162pt;}
.y3b{bottom:644.196769pt;}
.ydb{bottom:646.634612pt;}
.yc{bottom:654.094915pt;}
.ya0{bottom:656.097735pt;}
.y70{bottom:661.696701pt;}
.y3a{bottom:664.204307pt;}
.yf7{bottom:666.082883pt;}
.yda{bottom:666.642150pt;}
.yb{bottom:674.102454pt;}
.y9f{bottom:676.105273pt;}
.y6f{bottom:681.704239pt;}
.y39{bottom:684.211845pt;}
.yf6{bottom:686.090421pt;}
.yd9{bottom:686.649689pt;}
.ya{bottom:694.109992pt;}
.y9e{bottom:696.112811pt;}
.y6e{bottom:701.711777pt;}
.y38{bottom:704.219384pt;}
.yf5{bottom:706.097960pt;}
.yd8{bottom:706.657227pt;}
.y9{bottom:714.117531pt;}
.y9d{bottom:716.120350pt;}
.y6d{bottom:721.719316pt;}
.y37{bottom:724.226922pt;}
.yf4{bottom:726.105498pt;}
.yd7{bottom:726.664765pt;}
.y8{bottom:734.125069pt;}
.y9c{bottom:736.127888pt;}
.y6c{bottom:741.726854pt;}
.y36{bottom:744.234461pt;}
.yf3{bottom:746.113036pt;}
.yd6{bottom:746.672304pt;}
.y7{bottom:754.132607pt;}
.y9b{bottom:756.135426pt;}
.y6b{bottom:761.734393pt;}
.y35{bottom:764.241999pt;}
.yf2{bottom:766.120575pt;}
.yd5{bottom:766.679842pt;}
.y6{bottom:774.140146pt;}
.y9a{bottom:776.142965pt;}
.y6a{bottom:781.741931pt;}
.y34{bottom:784.249537pt;}
.yf1{bottom:786.128113pt;}
.yd4{bottom:786.687380pt;}
.y5{bottom:794.147684pt;}
.y99{bottom:796.150503pt;}
.y69{bottom:801.749469pt;}
.y33{bottom:804.257076pt;}
.yf0{bottom:806.135652pt;}
.yd3{bottom:806.694919pt;}
.y4{bottom:814.155222pt;}
.y98{bottom:816.158042pt;}
.y68{bottom:821.757008pt;}
.y32{bottom:824.264614pt;}
.yef{bottom:826.143190pt;}
.yd2{bottom:826.702457pt;}
.y3{bottom:834.162761pt;}
.y97{bottom:836.165580pt;}
.y11e{bottom:841.575512pt;}
.y67{bottom:841.764546pt;}
.y31{bottom:844.272152pt;}
.yee{bottom:846.150728pt;}
.y2{bottom:854.170299pt;}
.y96{bottom:856.173118pt;}
.y11d{bottom:861.583051pt;}
.y66{bottom:861.772084pt;}
.y30{bottom:864.279691pt;}
.yed{bottom:866.158267pt;}
.yd1{bottom:866.717534pt;}
.y95{bottom:876.180657pt;}
.y65{bottom:881.779623pt;}
.y2f{bottom:884.287229pt;}
.yec{bottom:886.165805pt;}
.yd0{bottom:886.725072pt;}
.y5c{bottom:891.684119pt;}
.y94{bottom:896.188195pt;}
.y11c{bottom:901.598128pt;}
.y64{bottom:901.787161pt;}
.y2e{bottom:904.294767pt;}
.yeb{bottom:906.173343pt;}
.ycf{bottom:906.732611pt;}
.y93{bottom:916.195733pt;}
.y63{bottom:921.794700pt;}
.y2d{bottom:924.302306pt;}
.yea{bottom:926.180882pt;}
.yce{bottom:926.740149pt;}
.y4e{bottom:928.464340pt;}
.y92{bottom:936.203272pt;}
.y11b{bottom:941.613204pt;}
.y62{bottom:941.802238pt;}
.y2c{bottom:944.309844pt;}
.y4d{bottom:944.470370pt;}
.ye9{bottom:946.188420pt;}
.ycd{bottom:946.747687pt;}
.y91{bottom:956.210810pt;}
.y61{bottom:961.809776pt;}
.ye8{bottom:966.195958pt;}
.ycc{bottom:966.755226pt;}
.y90{bottom:976.218348pt;}
.y11a{bottom:981.628281pt;}
.y60{bottom:981.817315pt;}
.ye7{bottom:986.203497pt;}
.y5b{bottom:986.565315pt;}
.ycb{bottom:986.762764pt;}
.y8f{bottom:996.225887pt;}
.y5f{bottom:1001.824853pt;}
.ye6{bottom:1006.211035pt;}
.yca{bottom:1006.770302pt;}
.y5a{bottom:1012.575115pt;}
.y8e{bottom:1016.233425pt;}
.y5e{bottom:1021.832391pt;}
.y11f{bottom:1022.821144pt;}
.ye5{bottom:1026.218574pt;}
.yc9{bottom:1026.777841pt;}
.y59{bottom:1038.584915pt;}
.h9{height:13.363363pt;}
.h8{height:20.223249pt;}
.hc{height:21.499714pt;}
.hd{height:30.365531pt;}
.he{height:34.701506pt;}
.h4{height:39.086727pt;}
.ha{height:43.365499pt;}
.hb{height:47.679998pt;}
.h7{height:47.692289pt;}
.h3{height:47.750951pt;}
.hf{height:51.219298pt;}
.h6{height:53.011974pt;}
.h5{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:36.742247pt;}
.x1{left:38.224818pt;}
.x3{left:40.195765pt;}
.xc{left:42.637445pt;}
.xf{left:47.459354pt;}
.x5{left:53.703224pt;}
.x9{left:64.705554pt;}
.xd{left:106.239996pt;}
.xe{left:113.140846pt;}
.x4{left:177.015311pt;}
.x6{left:206.291966pt;}
.x2{left:417.098303pt;}
.x7{left:442.029571pt;}
.xb{left:549.919145pt;}
.xa{left:551.612297pt;}
}




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