
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
/*	border-bottom:1px solid #ccc;	*/
	height:48px;
	position:relative;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(../images/tabs-new-04112010.gif) no-repeat;
	display:block;
	height: 48px;  
	line-height:37px;
	width: 162px;
	text-align:center;	
	text-decoration:none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #fff;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
	outline:none;
}

ul.tabs a:active {
	outline:none;	
}

/* when mouse enters the tab move the background image
ul.tabs a:hover {
	background-position: -420px -49px;	
	color:#fff;	
}

active tab uses a class name "current". it's highlight is also done by moving the background image.
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#fff !important;
}
 */

/* Tab Azul */
ul.tabs a.tabAzul 			{ background-position: 0 -0px; width:162px; }
ul.tabs a.tabAzul:hover 	{ background-position: 0 -49px; }
ul.tabs a.tabAzul.current { background-position: 0 -98px; }
ul.tabs a.tabAzul.current:hover { background-position: 0 -147px; }

/* Tab Verde */
ul.tabs a.tabVerde 			{ background-position: -162px -0px; width:162px; }
ul.tabs a.tabVerde:hover 	{ background-position: -162px -49px; }
ul.tabs a.tabVerde.current { background-position: -162px -98px; }
ul.tabs a.tabVerde.current:hover { background-position: -162px -147px; }

/* Tab Purple */
ul.tabs a.tabPurple 			{ background-position: -324px -0px; width:162px; }
ul.tabs a.tabPurple:hover 	{ background-position: -324px -49px; }
ul.tabs a.tabPurple.current { background-position: -324px -98px; }
ul.tabs a.tabPurple.current:hover { background-position: -324px -147px; }

/* Tab Naranajo */
ul.tabs a.tabNaranjo		{ background-position: -488px -0px; width:162px; }
ul.tabs a.tabNaranjo:hover 	{ background-position: -488px -49px; }
ul.tabs a.tabNaranjo.current { background-position: -488px -98px; }
ul.tabs a.tabNaranjo.current:hover { background-position: -488px -147px; }

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}
.contenedorTabs {
	width:648px;
}
