#menu, #menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#menu {
	width: 700px;
	border: ;
	background-color: ;
	background-image: ;
	
	
	margin-top: 80px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: 60px;
}

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

#menu:after {
    clear: both;
}

#menu {
    zoom:1;
}

#menu li {
	float: left;
	box-shadow: 1px 0 0 #CCC;
	position: relative; 
	
}

#menu a {
	float: left;
	color: #666;
	text-transform: uppercase;
	font: bold 12px Arial, Helvetica;
	text-decoration: none;
	padding-top: 12px;
	padding-right: 25px;
	padding-bottom: 12px;
	padding-left: 25px;
}

#menu li:hover > a {
	color: #E6691E;
}

*html #menu li a:hover { /* IE6 only */
    color: #BA4E1F;
}
/* SUBMENU */
#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: #444;
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);
	border-radius: 3px;
	transition: all .2s ease-in-out;
	background-color: #D8D8D8;
}

#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;
    _line-height: 0; /*IE6 only*/
    box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

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

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

#menu ul a:hover {
    background-color: #fff;
    background-image: linear-gradient(#F93, #fff);
}
/*FIN SUBMENU*/
/* PRIMER Y ULTIMO ELEMENTO DEL SUBMENU*/
#menu ul li:first-child > a {
    border-radius: 3px 3px 0 0;
}

#menu ul li:first-child > a:after {
    content: '';
    position: absolute;
    left: 40px;
    top: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #444;
}

#menu ul ul li:first-child a:after {
    left: -6px;
    top: 50%;
    margin-top: -6px;
    border-left: 0; 
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    border-right: 6px solid #3b3b3b;
}

#menu ul li:first-child a:hover:after {
    border-bottom-color: #04acec; 
}

#menu ul ul li:first-child a:hover:after {
    border-right-color: #0299d3; 
    border-bottom-color: transparent;   
}

#menu ul li:last-child > a {
    border-radius: 0 0 3px 3px;
}
/* FIN PRIMER Y UTLIMO ELEMENTO */

/* CSS MOVILES */
#menu-trigger { /* Hide it initially */
    display: none; 
}

@media screen and (max-width: 866px) {

    #menu-wrap {
        position: relative; margin-top:5px;
		 margin-bottom:5px;
    }

    #menu-wrap * {
        box-sizing: border-box;
    }

    #menu-trigger {
	display: block; /* Show it now */
	height: 40px;
	line-height: 40px;
	font-size:18px;
	cursor: pointer;
	color: #fafafa;
	font-weight: bold;
	background-color: #7E7E7E;
	/* Multiple backgrounds here, the first is base64 encoded */
	
	border-radius: 2px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 25px;	
    }

    #menu {
        margin: 0; padding: 10px;
        position: absolute;
        top: 40px;
        width: 100%;
        z-index: 1;
        display: none;
        box-shadow: none; background-color:#A2A2A2;    
    }

    #menu:after {
        content: '';
        position: absolute;
        left: 25px;
        top: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #444;
    }   

    #menu ul {
        position: static;
        visibility: visible;
        opacity: 1;
        margin: 0;
        background: ; background-color:#A2A2A2;
        box-shadow: none;               
    }

    #menu ul ul {
        margin: 0 0 0 20px !important;
        box-shadow: none;       background-color:#A2A2A2; 
    }

    #menu li {
        position: static;
        display: block;
        float: none;
        border: 0;
        margin: 5px;
        box-shadow: none;           
    }

    #menu ul li{
        margin-left: 20px;
        box-shadow: none;       
    }

    #menu a{
        display: block;
        float: none;
        padding: 0;
        color: #fff;
    }

    #menu a:hover{
    background-color: #fff;
    background-image: linear-gradient(#F93, #fff); padding-bottom:4px; padding-top:4px;
    }   

    #menu ul a{
        padding: 0;
        width: auto;        
    }

   
   
    #menu ul li:first-child a:after,
    #menu ul ul li:first-child a:after {
        border: 0;
    }       

}
@media screen and (max-width: 480px) {

    #menu-wrap {
        position: relative; margin-top:10px;
    }}
@media screen and (min-width: 900px) {
    #menu {
        display: block !important;
    }
}   

/* iPad */
.no-transition {
    transition: none;
    opacity: 1;
    visibility: visible;
    display: none;          
}

#menu li:hover > .no-transition {
    display: block;
}