/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:400px;

	width:92px;
	float:left;
}

/* single tab */
ul.tabs li { 

	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
	border:1px solid #666;	
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: red url(../imagenes/btncenter.jpg) no-repeat 0 0;
	font-size:11px;
	display:block;
	height: 50px;  
	width: 92px;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:29px 0px;
	margin:0px;	
	position:relative;
	color:#000000;
	font-weight:bold;
	font-size:13px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: red url(../imagenes/btncenter_h.jpg) no-repeat 0 0;

}

/* 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: red url(../imagenes/btncenter_a.jpg) no-repeat 0 0;

	cursor:default !important; 
	color:#FFFFFF !important;
}



/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
	border:solid 0px blue;	


}

div.panes{
	border:solid 0px blue;
	width:217px;
	float:right;
	background:url(../imagenes/fondo_4.jpg) no-repeat right bottom;
	height:441px;
	vertical-align:middle;
	overflow:hidden;

}

