/* -------------------------- */
/* Estilos de diseño del menú */
/* -------------------------- */


/* -------------------------- */



/* Estilos de maquetación del menú */

.navCol , .navCol ul, .navCol li, .navCol  a  {margin: 0; padding: 0;}

a {text-decoration: none;}
.container {
    width: 90%;
    max-width: 900px;
    margin: 10px auto;
}
.toggleMenuCol {
    display:  none;
    background: #c70aa0;
    padding: 10px 0px;
    color: #fff;
    width:100%;
    text-align:center;
}
.navCol {
    list-style: none;
     *zoom: 1;
     /*background:#175e4c;*/
}
.navCol:before,
.navCol:after {
    content: " "; 
    display: table; 
}
.navCol:after {
    clear: both;
}
.navCol ul {
    list-style: none;
    width: 9em; 
}

.navCol li {
    position: relative;
}
.navCol > li {
    float: left;
}
.navCol > li > .parent {
}

.navCol li  ul {
    position: absolute;
    left: -9999px;
    width:200px;
}
.navCol > li.hover > ul {
    left: 0;
}
.navCol li li.hover ul {
    left: 100%;
    top: 0;
}


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

	.toggleMenuCol {
		display:  block;
		background: #c70aa0;
		padding: 10px 0px;
		color: #fff;
		width:100%;
		text-align:center;
	}

	.navCol{
		display:none;
	}
    .active {
        display: block;
    }
    .navCol > li {
        float: none;
    }
    .navCol > li > .parent {
        background-position: 95% 50%;
    }
    .navCol li li .parent {
        background-image: url(/"images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .navCol ul {
        display: block;
        width: 100% !important;
    }
   .navCol > li.hover > ul , .navCol li li.hover ul {
        position: static;
    }

}