@charset "utf-8";

ul.tabs {
margin: 0;
padding: 0;
float: left;
list-style: none;
height: 54px;
width: 100%;
background: #fff;
border-bottom: 1px solid #65c7d0; 
}
ul.tabs li {
float: left;
margin: 0;
padding: 0;
color: #fff;
height: 54px;
line-height: 54px; /*--Vertically aligns the text within the tab--*/
border-left: none;
overflow: hidden;
position: relative;
background: #65c7d0;
}
ul.tabs li a {
text-decoration: none;
display: block;
color: #fff;
font-size: 1.2em;
padding: 0 15px;
/*--Gives the bevel look with a 1px white border inside the list item--*/
border: 1px solid #fff; 
outline: none;
}
ul.tabs li a:hover {
color: #fff;
background: #232323;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  {
background: #ef9da6;
color: #fff;
}

/*Tab Conent CSS*/
.tab_container {
padding:20px 0 0 0;
border-top: none;
overflow: hidden;
clear: both;
float: left; 
width: 100%;
background: #fff;
}
.tab_content {
padding: 0;
}