
#tabs{
  overflow: hidden;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}

#tabs li{
  float: left;
  border:1px solid #333;
}
#tabs li.first{
  border:1px solid #333;
}

#tabs a{
  position: relative;
  background: #fafafa;
  padding: .7em 3.5em;
  float: left;
  text-decoration: none;
  color: #000;
  font-weight:600;
}

#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after{
  background: #fafafa;
  color: #d90707;
}


#tabs a::after{
  content:'';
  position:absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
}

#tabs #current a,
#tabs #current a::after{
  background: #c70404;
  color: #fff;
  z-index: 3;
}

/* ------------------------------------------------- */

#tabContent
{
    background: #fff;
    padding: 2em;	
	position: relative;
	z-index: 2;	
    -moz-border-radius: 0 5px 5px 5px;
    -webkit-border-radius: 0 5px 5px 5px;
    border-radius: 0 5px 5px 5px;
    -moz-box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
    box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
  border:0px solid #333;
}
