#menu {
	text-decoration: none;
	list-style-type: none;
	width: auto;
}

#menu br {display: none;}

#menu li {
	background-color: transparent;
	display: block;
    float: left; /* la lista se ve horizontal */
    height: 60px;
    width: 110px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
	margin-right: 4px;
    /* BACKGROUND */
	background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(top,  #99c4e5 0%, #1e5799 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#99c4e5), color-stop(100%,#1e5799)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #99c4e5 0%,#1e5799 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #99c4e5 0%,#1e5799 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #99c4e5 0%,#1e5799 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #99c4e5 0%,#1e5799 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99c4e5', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */	/*	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;*/
	box-shadow: 0px 1px 1px #333;
}

#menu li a {
	color: white;
    display: block;
    font-family: Tahoma;
    font-size: 13px;
    font-weight: bold;
    width: 110px;
    line-height: 48px;
    padding: 0 14px;
    margin: 6px 0;
    text-decoration: none;
    /* animamos el cambio de color de los textos */
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

#menu li a:hover {
	background-color: transparent;
	background-image: url(../images/trans_white.png;);
	background-repeat: repeat;
	text-decoration: none;
	color: #000;
    display: block;
    font-family: Tahoma;
    font-size: 13px;
    font-weight: bold;
    line-height: 48px;
    padding: 0 14px;
    margin: 6px 0;
    text-decoration: none;
    /* animamos el cambio de color de los textos */
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;

}