/* Generales */
* {
	margin: 0;
	padding: 0;
}

ul {
	list-style-type: none;
}
body {
	margin: 0;
}
cite {
font:10px Georgia, "Times New Roman", Times, serif;
color:#999999;
display:block;
padding:6px 0 3px 0;
}

/* Menu principal */
div#menuPrincipal {
	width: 100%;
	height: 25px;
	clear: both;
	padding: 3px;
	background: #8b0000;
	font: 14px Cambria, Tahoma;
	border-bottom: 2px solid black;
	border-top: 2px solid black;
}

ul#nav {
	/*height: 25px;*/
}

/* enlaces principales */
ul#nav li {
	float: left;
	position: relative;
	/*height: 20px;*/
}

ul#nav li a {
	display: block;
	padding: 5px 5px 0px 5px;
	float: left;
	font-size: 1.1em;
	font-weight: normal; 
	color: white;
	text-decoration: none;
  /*text-transform: uppercase;*/
	height: 22px;
	/*padding-top: 5px;*/
	border-right: 1px  solid white;
}

ul#nav li a:hover {
	color: yellow;
	text-decoration: underline;
}

/* subenlaces */
ul#nav li ul {
	position: absolute;
	z-index: 1;
	top: 28px;
	left: 0;
	width: auto;
	display: none;
	border-left: 1px solid black;
	/*border-right: 1px solid white;*/
	/*border-bottom: 1px solid transparent;*/
}

ul#nav li ul li {
	display: block;
	clear: both;
	width: auto;
	background: #8b0000;
	height: 30px;
	line-height: 16px;
	border-bottom: 1px solid black;
	padding: 0;
	margin: 0;
}

ul#nav li ul li a {
	background: none;
	display: block;
	width: 200px;
	clear: both;
	height: 10px;
	font-weight:normal;
	line-height: 12px;
	padding: 4px 0 4px 7px;
	margin: 0;
	border-right: 1px solid #8b0000;
}

/* cursor sobre */

ul#nav li:hover ul, ul#nav li.over ul {
	display:block;
	width: 208px;
	z-index: 1000;	
}

ul#nav li:hover, ul#nav li.over {
	height: 30px;
	z-index: 1;
}

ul#nav li:hover ul li {
	height: 30px;
}
