.tabrow {
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 24px;
  position: relative;
  cursor: pointer;
}
.tabrow:before {
  z-index: 1;
}
.tabrow:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #000;
  z-index: 1;
}
.tabrow li {
  margin: 0 -5px;
  padding: 0 25px;
  border: 1px solid #FF0;
  background: #990000;
  color: #DDDD00;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: linear-gradient(to bottom, #EC6666 20%, #990000 100%);
  backgroundX: linear-gradient(to bottom, #EC6666 50%, #990000 100%);
  box-shadowX: 0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #FFF;
  text-shadowX: 0 1px #FFF;
}
.tabrow li.selectedtab {
  background: #FFF;
  color: #000;
  z-index: 2;
  border-bottom-color: #FFF;
}
.tabrow li.selectedtab:before {
  box-shadow: 2px 2px 0 #FFF;
}
.tabrow li.selectedtab:after {
  box-shadow: -2px 2px 0 #FFF;
}
