#global_navigation ul li ul{ /*keeps main site nav on top of tabs*/
	z-index:100;
}
.tabbed_content .tabs li{
	display:inline;
}
.tabbed_content .tabs li a {
	float:left;
	color: #666;
	height: 35px;
	width:90px;
	display: block;
	font-size: 14px;
	line-height: 38px;
	text-align: center;
	margin: 0 5px 0 0;
	text-decoration: none;
	border: 1px solid #CCC;
	text-shadow: #FFF 0px 1px 0;
	-moz-border-radius: 6px 6px 0px 0px;
	-webkit-border-top-left-radius:6px;
	-webkit-border-top-right-radius:6px;
	-webkit-border-bottom-right-radius:0px;
	-webkit-border-bottom-left-radius:0px;
	background: -moz-linear-gradient(top, rgba(250,250,250,1), rgba(225,225,225,1));
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(250,250,250,1)), to(rgba(225,225,225,1)));
}
.tabbed_content .tabs a.last {
	margin-right: 0px;
}
.tabbed_content .tabs a.last.active {
}
.tabbed_content .tabs .active{
	width:92px;
	border:none;
	height:36px;
	color: #FFF;
	background: #329e3f;
	text-shadow: #777 0px -1px 0;
	background: -moz-linear-gradient(top, rgba(46,176,53,1), rgba(38,144,44,1));
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(46,176,53,1)), to(rgba(38,144,44,1)));
}
.tabbed_content .tabs li:hover {
	background: -moz-linear-gradient(top, rgba(250,250,250,1), rgba(225,225,225,1));
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(250,250,250,1)), to(rgba(225,225,225,1)));
}
.tabbed_content .tabs li:active {
	top: 1px;
	position: relative;
}
.tabbed_content .content {
	overflow:hidden;
	top: -1px;
	z-index: 2;
	clear: both;
	margin: 0 0 15px 0;
	position: relative;
	border: 1px solid #CCC;
/*Place content style here*/
	color: #666;
	background:#FFF;
	-moz-border-radius: 0px 0px 6px 6px;
	-webkit-border-top-left-radius:0px;
	-webkit-border-top-right-radius:0px;
	-webkit-border-bottom-right-radius:6px;
	-webkit-border-bottom-left-radius:6px;

}
.tabbed_content .content li {
	padding: 25px;
	display: block;
	position: relative;
}
.tabbed_content .content li.hidden {
	display: none !important;
}
