ul.tabs {
    font-size:12px;
	margin: 10px 0 0 0;
	padding: 0;
	float: left;
	list-style: none;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0 6px 0 0;
	padding: 0;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #eeeeee;
    border-radius:6px;
    border: 1px #dddddd solid;
}
ul.tabs li a {
	text-decoration: none;
	display: block;
	padding: 10px 20px;
	outline: none;
    color:#797979
}
ul.tabs li.active {    border: 1px #fff solid;}
ul.tabs li.active a{color:#90278e}
ul.tabs li a:hover {
	background: #e6e6e6;
    border-radius:6px;

}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #fff;
    border-radius:6px;
	 /*--Makes the active tab look like it's connected with its content--*/
}
.tab_container {
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, 1)), color-stop(100%,rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66ffffff', endColorstr='#00ffffff',GradientType=0 );

    border-radius: 6px;
    margin-top:10px
}
.tab_content {
	padding: 30px 54px 54px 54px;
    font-size: 12px;
    line-height:20px;
}