﻿
/*MENU MANUAL*/
		/* Primer nivel del menu */
		#MenuDinamico
		{
			width: 205px;
		}
		#MenuDinamico a.botonMenu1 /*Nivel 1*/
		{
			cursor: pointer;
			background-repeat: no-repeat;
			background-position: right;
			font-family: verdana;
			font-size: 13px;
			font-weight: bold;
			color: #ffffff;
			text-decoration: none;
		}
		#MenuDinamico botonMenu1 a:hover /*Nivel 1 Rolover*/
		{
			background-repeat: no-repeat;
			background-position: center;
			font-family: verdana;
			font-size: 13px;
			font-weight: bold;
			color: #333333;
			text-decoration: none;
		}
		

		/* Segundo nivel del menu */
		#MenuDinamico .barraMenu2
		{
			width: 150px;
			left: 205px;
			background-color:#ebebeb;
		}
		#MenuDinamico .barraMenu2 a.botonMenu2 /*Nivel 2*/
		{
			cursor: pointer;
			font-style: normal;
			font-family: verdana;
			font-size: 9px;
			font-weight: normal;
			color: #696969;
			text-decoration: none;
		}
		#MenuDinamico .barraMenu2 a.botonMenu2:hover /*Nivel 2 Rolover*/
		{
			background-color:#ebebeb;
			background-repeat: no-repeat;
			background-position: center;
			font-style: normal;
			font-family: verdana;
			font-size: 9px;
			font-weight: normal;
			color: #696969;
			text-decoration: none;
		}
		#MenuDinamico .barraMenu2 a.botonMenu2:active /*Nivel 2 click*/
		{
			background-repeat: no-repeat;
			background-position: right;
			font-style: normal;
			font-family: verdana;
			font-size: 9px;
			font-weight: normal;
			color: #696969;
			text-decoration: none;
		}
		
		/* Tercer nivel del menu */
		#MenuDinamico .barraMenu3
		{
			width: 150px;
			left: 150px;
			background-color:#edf4e8;
		}
		#MenuDinamico .barraMenu3 a.botonMenu3 /*Nivel 3*/
		{
			cursor: pointer;
			font-style: normal;
			font-family: verdana;
			font-size: 9px;
			font-weight: normal;
			color: #696969;
			text-decoration: none;
		}
		#MenuDinamico .barraMenu3 a.botonMenu3:hover /*Nivel 3 rolover*/
		{
			background-color:#edf4e8;
			background-repeat: no-repeat;
			background-position: center;
			font-style: normal;
			font-family: verdana;
			font-size: 9px;
			font-weight: normal;
			color: #696969;
			text-decoration: none;
		}
		#MenuDinamico .barraMenu3 a.botonMenu3:active /*Nivel 3 click*/
		{
			background-repeat: no-repeat;
			background-position: right;
			font-style: normal;
			font-family: verdana;
			font-size: 9px;
			font-weight: normal;
			color: #696969;
			text-decoration: none;
		}
		
#MenuDinamico ul.dropMenu {
    margin: 0px;
    padding: 0px;
    cursor: pointer;
}

#MenuDinamico ul.dropMenu li {
    list-style-type: none;
    margin: 0px;
    position: relative;
}

#MenuDinamico ul.dropMenu li ul {
    position: absolute;
    top: 0px;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
}


#MenuDinamico ul.dropMenu li a {
    display: block;
    text-decoration: none;
    width: 100%;
}