/*Estilos para manejar el menu superior*/
#top_menu {
	float:left;
	height: 40px;
	width:960px;
}

ul#topnav {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
ul#topnav li{
	margin: 0;
	padding: 0;
	overflow: hidden;  /*--Important - Masking out the hover state by default--*/
	float: left;
	height:40px;
}
ul#topnav a, ul#topnav span { /*--The <a> and <span> share the same properties since the <span>  will be a duplicate of the <a> tag--*/
	padding: 10px 17px;
	float: left;
	text-decoration: none;
	color: #FFF;
	text-transform: uppercase;
	clear: both;
	width: 100%;
	height: 20px;
	line-height: 20px; /*--Vertical alignment of text--*/
}
ul#topnav a{ /*--This is basically the hover state of navigation--*/
	color:#F90;
	background-position: left bottom;
}
ul#topnav span{ /*--Default state of navigation--*/
	background-position: left top;
}

/*Estilos para manejar el menu inferior*/
#bottom_menu {
	float:left;
	height: 40px;
}

ul#bottomnav {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
ul#bottomnav li{
	margin: 0;
	padding: 0;
	overflow: hidden;  /*--Important - Masking out the hover state by default--*/
	float: left;
	height:40px;
}
ul#bottomnav a, ul#bottomnav span { /*--The <a> and <span> share the same properties since the <span>  will be a duplicate of the <a> tag--*/
	padding: 5px 3px 5px 3px;
	float: left;
	text-decoration: none;
	color: #333;
	text-transform:none;
	clear: both;
	width: 100%;
	height: 40px;
	line-height: 50px; /*--Vertical alignment of text--*/
}

ul#bottomnav a{ /*--This is basically the hover state of navigation--*/
	color:#333;
	background-position: left bottom;
}

ul#bottomnav a:hover{
	text-decoration:underline;
}

ul#bottomnav span{ /*--Default state of navigation--*/
	background-position: left top;
}
