@charset "utf-8";
/* CSS Document */

#navMenujQuery {
	margin:0; 
	padding:0;
	list-style:none;	
	font-family:arial;
	font-size:18px;
	text-align:center;
	line-height:40px;
}
 
#navMenujQuery li {
	float:left;	
	/*background:url(../imagenes/menu/default.jpg) no-repeat center center;	/* default background image	*/
	background-color:#FFF;
	width:200px;							/* width and height of the menu item */
	height:40px;
	/*border-left:1px solid #111;				/* simulate pixel perfect using border */
	/*border-right:1px solid #333;
	/*border-top:1px solid #555;
	/*border-bottom:1px solid #333;*/
	position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
}
 
#navMenujQuery li a {
	z-index:20;		/* z-index must be higher than .hover class */
	display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
	height:40px;
	position:relative;
	color:#000000;
	text-decoration:none;
}

#navMenujQuery li a:hover {
	color:#FFF;
}
 
#navMenujQuery li .hoverJquery {
	/*background:url(../imagenes/menu/over.jpg) no-repeat center center;		/* mouseover image	*/
	background-color:#C8D208;
	position:absolute;	/* must be postion absolute 	*/
	width:200px;	/*	width, height, left and top to fill the whole LI item	*/
	height:40px;
	left:0; 
	top:0;	
	z-index:0;		/* display under the Anchor tag	*/
	display:none;	/* hide it by default	*/
}	
 
#navMenujQuery li.selected {
	/* background:url(../imagenes/menu/selected.jpg) no-repeat center center;	/* selected image	*/
	background-color:#E2EE0B;
}

#navMenujQuery li.selected a {
	/* background:url(../imagenes/menu/selected.jpg) no-repeat center center;	/* selected image	*/
	color:#FFF;
}

#bordenavMenujQuery {
	border-bottom:#CCC 1px solid;
	float:none;
	clear:both;
}

