/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
.menu {
	font-family: arial, sans-serif; 
	position:relative; 
	z-index:100;
	/*	agregado mio	*/
	height: 18px;
	font-weight:bold;
	padding-top: 2px;
	font-size: 12px;
	padding-left:20px;
	background-color:#000000;
	/********************/
}

.menu ul li a, .menu ul li a:visited {
	display:block; 
	overflow:hidden;
	text-decoration:none; 	color:#fff;	
}

.menu ul li a:hover {
	color:#FFFF99;;
}

.menu ul li {
	position:relative;
	/*	agregado mio	*/
	/*	separa cada opcion ppal del menu	
	text-align:center;	*/
	padding-right:33px;
	/*********************/
}

/*	Agregado mio, pq sino en IE 7+ se ve mal	*/
.menuIt {
	float:left;	/*	Esto estaba en .menu ul li	*/ 
}

.menu ul li ul { display: none; }

/* specific to non IE browsers */
.menu ul li:hover ul {
	display:block; 
	position:absolute; 
	width:150px;
	background-color:#000;
	padding: 5px 0 5px 10px;
	list-style-type:circle;
}

.menu ul li:hover ul li {	padding-right:0;}
.menu ul li:hover ul li a {	display:block;}
.menu ul li:hover ul li a:hover {	color: #FFFF99;}

