@charset "utf-8";
/* CSS Document */


/*Tabs*/


#tabs ul
	{
	width: 718px;
	height: 24px;
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	list-style: none;
	text-align: center;
	margin: 0 auto;
	padding: 0;
	border-top: solid black 1px;
	}
#tabs ul li
	{
		margin: 0;
		display: inline;
		
	}
#tabs ul li a /* controls all of the menu links CSS*/
	{
		width: 132px;
		height: 24px;
		float: left;
		padding: 4px 0 0 0;
		margin: 0 1px 0 0;	
		display: block;
		font-weight: bold;
		text-decoration: none;
	}
	
/*individual link details*/
#tabs ul li a.tab:link,a.tab:visited
	{
		color: #ececec;
		background: transparent url('images/tab.png') no-repeat;
	}
	
#tabs ul li a.tab:hover
	{
		color: #ececec;
		background: transparent url('images/tab_over.png') no-repeat;
		
	}

#tabs ul li a.tab_current
	{
		color: #ececec;
		background: transparent url('images/tab_over.png') no-repeat;
	}
