/* sets the 3 tabs to have no margin or padding */
.ui-tabs ul {
	margin:0;
	padding:0;
}

/* sets the 3 tabs to have no list style */
.ui-tabs .ui-tabs-nav {
	list-style: none;
	position: relative;
	border:1px solid #f2f2f2; /* ie hack */

}
/* sets the tabs to be on the same line */
.ui-tabs .ui-tabs-nav li {
	position: relative;
	float: left;
	margin:0 3px 0 0; /* sets the margin bottom */
	text-align:center;
	font-size:13px;
	line-height:25px;
	width:100px;
	height:26px;
	background:url(/images/tab.png) no-repeat;


}
/* sets the tabs to be on the same line if they are linked*/
.ui-tabs .ui-tabs-nav li a {
	float: left;
	text-decoration: none;
	color:#fff;
	width:100px;
	height:26px;	
}
/* this is the what is displayed on the active tab */
.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
		background:url(/images/tab_selected.png) no-repeat;
		width:100px;
		height:26px;
		
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
	cursor: text;
	color:#000;
}
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
	cursor: pointer;
} /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	background: none;
	
}
/* hides tabs that are not being used */
.ui-tabs .ui-tabs-hide {
	display: none !important;
}
