/*		Content Tabs
 *	Styles to create the Tab-thingy for the content.
 */

div.ContentTabs {
	/* For future use, or custom-theme */
	margin:				0px 10px;		/* 0px top & bottom, 10px left & right */
}

/* Tabs style */
div.ContentTabs div {
	float:				left;			/* To get them next to eachother */
	
	margin:				0px 5px;		/* 0px top & bottom, 5px left & right */
	padding:			5px 10px;		/* 5px top & bottom, 10px left & right */
	
	background:			#567;			/* Half dark/Half ligth blue-ish */
}
/* Tab hover */
div.ContentTabs div:hover {
	background:			#678;			/* Dark blue-ish */
	
	color:				#DDD;			/* Light grey text */
	
	cursor:				pointer;
}
/* Active tab */
div.ContentTabs div.Active {
	background:			#FFF;			/* White */
	
	color:				#333;			/* Dark grey text */
}

/* Abort tab (Cancel/Logout, Red) */
div.ContentTabs div.Abort {
	float:				right;
	clear:				right;

	background:			#933;
}
div.ContentTabs div.Abort:hover {
	background:			#B33;

	color:				#333;
}

/* About tab (About/Help), Update tab (Update?) */
div.ContentTabs div.About, div.ContentTabs div.Update {
	float:				right;
}