@charset "utf-8";
/* CSS Document */
/*mini reset */
#menu, #menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
/*centra y backgroud */
#menu {
    /*width: 960px;*/
	width:70%;
    margin: 10px auto;
    border: 1px solid #a31919;
	border: 1px solid #a31919;
	background-color: #890000;
    background-image: linear-gradient(#a31919, #890000);
    border-radius: 6px;
    box-shadow: 0 1px 1px #777;
	
}
/* crea float */

#menu:before,
#menu:after {
    content: "";
    display: table;
}

#menu:after {
    clear: both;
}

#menu {
    zoom:1;
}
/* list */
#menu li {
    float: left;
    border-right: 1px solid #d69999;
    box-shadow: 1px 0 0 #444; /* linea de separacion */
    position: relative;
	
}

#menu a {
    float: left;
    padding: 12px 30px;
    color: #eaeaea; /*color de fuente principal */
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
	font-weight:bold;
	font-size:12px;
    text-decoration: none;
    text-shadow: 0 1px 0 #000;
}

#menu li:hover > a {
	background:#cc7f7f;
	-webkit-transition: background 1s;
    -moz-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s;
	border: 2px;
	border-radius:16px;
	-moz-border-radius:16px;
	-webkit-border-radius:16px;
	color:#1e1e1e;
	
}

*html #menu li a:hover { /* IE6 only */
    color: #c1c1c1;
}
/* list menu*/
#menu ul {
    margin: 20px 0 0 0;
    _margin: 0; /*IE6 only*/
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 1;    
    background: #890000;   
    background: linear-gradient(#a31919, #890000);
    box-shadow: 0 -1px 0 rgba(255,255,255,.3);  
    border-radius: 3px;
    transition: all .2s ease-in-out;
}

#menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

#menu ul ul {
    top: 0;
    left: 150px;
    margin: 0 0 0 20px;
    _margin: 0; /*IE6 only*/
    box-shadow: -1px 0 0 rgba(255,255,255,.3);      
}

#menu ul li {
    float: none;
    display: block;
    border: 0;
    
    /*box-shadow: 0 1px 0 #111, 0 2px 0 #666;*/
	color:#fff;
}

#menu ul li:last-child {   
    box-shadow: none;    
}

#menu ul a {    
    padding: 10px;
	/*
    width: 130px;
    _height: 10px; /*IE6 only*/
    
	min-width:130px;
    width: auto;
	max-width:300px;
	display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

#menu ul a:hover {
    background-color: #b74c4c;
    background-image: linear-gradient(#b74c4c, #cc7f7f);
}

/* haciendo el menu responsive para movil */
@media screen and (max-width:1236px){
#menu{
    width:100%;
    margin: 10px auto;
    border: 1px solid #a31919;
	border: 1px solid #a31919;
	background-color: #890000;
    background-image: linear-gradient(#a31919, #890000);
    border-radius: 6px;
    box-shadow: 0 1px 1px #777;
 }
}
