.contenedorMenu {
    height: 48px;
    width: 990px;
    padding-left:0px;
    margin: auto;
    background: White;
}

/* PRIMER NIVEL */

.menu UL {
    padding-right: 0px;
    padding-left: 8px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin: 0px;
    list-style-type: none;
}

.menu UL LI {
    height: 48px;
    float: left;
    position: relative;
    margin: 0px auto;
    position: relative;
    text-align: center;
    margin-right: 0px;
    color: White;
    z-index: 800;
}

.menu UL LI:hover {
    background: #48b1c3;
}

.menu UL LI A {
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: #000;
    line-height: 48px;
    height: 48px;
    padding-left: 12px;
	padding-right: 12px;
    text-decoration: none;
}
.menu UL LI A:hover {
	color: White;
}

/* SEGUNDO NIVEL */

.menu UL LI UL {
    left: 0px;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    top: 0px;
    height: 0px;
}

.menu UL LI:hover UL {
    visibility: visible;
    overflow: visible;
    width: 200px;
    position: absolute;
    top: 48px;
    height: auto;
    background: #48b1c3;
    border-radius: 0px 0px 7px 7px;
    -webkit-box-shadow: 0 5px 10px 1px rgba(0,0,0,0.5);
    box-shadow: 0 5px 10px 1px rgba(0,0,0,0.5);
}

.menu UL LI:hover a {
    color:White;
}

.menu UL LI UL LI {
    font-size: 12px;
    font-family: verdana, sans-serif;
    position: relative;
    height: 30px;
    text-align: left;
    margin: 0px;
    padding-top: 5px;
    width: 100%;
    border:none;
    border-bottom: 1px solid White;
}

.menu UL LI:hover UL LI A {
	font-size: 14px;
    width: 185px;
    padding-left: 15px;
    display: block;
    background: none transparent scroll repeat 0% 0%;
    padding-bottom: 5px;
    color: White;
    line-height: 11px;
    padding-top: 5px;
    height: auto;
    text-decoration: none;
    font-weight: 500;
    z-index: 1;
}

.menu UL LI:hover UL LI A:hover {
	text-decoration: underline;
}

/* TERCER NIVEL */

.menu UL LI:hover UL LI UL {
    left: 0px;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    height: 0px;
}

.menu UL LI UL LI:hover UL {
    left: 200px;
    margin-top: -1px;
    visibility: visible;
    color: #000;
    position: absolute;
    top: 0px;
    height: auto;
    border:none;
    border: 1px solid #87d9ff;
}