li
{
	display: inline;
	padding: 0;
	margin: 0;
	left: 0;
}

ul
{
	text-align: left;
	padding: 0;
	margin: 0;
	left: 0;
	
}

.tabs
{
	margin:0px;
}

.ui-tabs-nav a
{
	/*
		In general, style all links in the tab navigation area.
		In practice, this allows us to differentiate between active tabs
		and inactive tabs
	*/
	color: #333;
	background-color: #E0E0E0;
	padding:10px;
	left: 0px;
	border-bottom: 0; /* Make an unselected tab appear to float above the panel slightly */
}

.ui-tabs-nav
{
	/*
		A margin at the bottom allows us to put padding at the bottom
		of the tab headers
	*/
	margin-bottom: 0px;
	padding:0px;
}

.ui-tabs-selected
{
}

.ui-tabs-unselect
{
}

.ui-tabs-selected a
{
	/*
		Style the selected tab header link (which overwrites the 'ui-tabs-nav a'
		style)
	*/
	background-color: #C00;
	color:#FFF;
	padding: 10px;
	left: 0px;
}

.ui-tabs-disabled
{
}

.ui-tabs-panel
{
	width: 620px;
}

.ui-tabs-hide
{
	display: none;
}

