#tabs {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#tabs li {
  float: left;
  margin: 0 .5em 0 0;
}

#tabs a {
  position: relative;
  background-image: url("images/tabimage.jpg");  
  padding: .7em 3.5em;
  float: left;
  text-decoration: none;
  color: blue;
  text-shadow: 0 0px 0 rgba(255,255,255,.8);
  border-radius: 5px 0 0 0;
  box-shadow: 0 2px 2px rgba(0,0,0,.4);
}

#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after {
  background: #fff;
}

#tabs a:focus {
  outline: 0;
}

#tabs a::after {
  content:'';
  position:absolute;
  z-index: 1;
  top: 0;
  right: -.5em;  
  bottom: 0;
  width: -0.5em;
  background: #ddd;
  background-image: linear-gradient(to bottom, #fff, #ddd);  
  box-shadow: 2px 2px 2px rgba(0,0,0,.4);
  transform: skew(10deg);
  border-radius: 0 5px 0 0;  
}

#tabs #current a,
#tabs #current a::after {
  background-image:url("images/tabimage1.jpg");
  color:white;
  z-index: 0;
}

#content {
  background: #fff;
  padding: 2em;
  height: auto;
  position: relative;
  z-index: 0; 
  border-radius: 0 5px 5px 5px;
 }
#content a:hover{
color:red;
}
#h2{
color:#e1342e;
}
