

/*  == tab heading */
.tabs {
    		overflow:hidden;
}
.tabs li{ float:left; }
.tabs li a{
		background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #8168A8),
	color-stop(1, #331A58)
);
background-image: -o-linear-gradient(bottom, #8168A8 0%, #331A58 100%);
background-image: -moz-linear-gradient(bottom, #8168A8 0%, #331A58 100%);
background-image: -webkit-linear-gradient(bottom, #8168A8 0%, #331A58 100%);
background-image: -ms-linear-gradient(bottom, #8168A8 0%, #331A58 100%);
background-image: linear-gradient(to bottom, #8168A8 0%, #331A58 100%);
}
.tabs li:first-child a{ border-left: none; }
.tabs li a:hover{ color:#fff;background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #331A58),
	color-stop(1, #8168A8)
);
background-image: -o-linear-gradient(bottom, #331A58 0%, #8168A8 100%);
background-image: -moz-linear-gradient(bottom, #331A58 0%, #8168A8 100%);
background-image: -webkit-linear-gradient(bottom, #331A58 0%, #8168A8 100%);
background-image: -ms-linear-gradient(bottom, #331A58 0%, #8168A8 100%);
background-image: linear-gradient(to bottom, #331A58 0%, #8168A8 100%);}
.tabs li.active a{  color:#fff;background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #A5B33D),
	color-stop(1, #768209)
);
background-image: -o-linear-gradient(bottom, #A5B33D 0%, #768209 100%);
background-image: -moz-linear-gradient(bottom, #A5B33D 0%, #768209 100%);
background-image: -webkit-linear-gradient(bottom, #A5B33D 0%, #768209 100%);
background-image: -ms-linear-gradient(bottom, #A5B33D 0%, #768209 100%);
background-image: linear-gradient(to bottom, #A5B33D 0%, #768209 100%); }

/* == accordion */
.accordion_tabs {
	display:none;
	padding: 10px;
	font-weight:bold;
}
a.accordion_tabs:link,
a.accordion_tabs:visited{
	color: #21759B;
}
a.accordion_tabs:hover{ color:#D54E21; }
a.accordion_tabs.active{ color: #000; }

/*  == tab content  */
.tab_content{
	border-top: none;
	display:none;
	/*padding: 10px;*/
}
