/* CSS Document */
/*MENU DESPLEGABLES */

ul.menu {
	list-style: none;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 3px;
	padding-left: 0px;
	}

ul.menu li {
	float: left;
	position: relative;
	width: 110px;
	height: 20px;
	margin: 0px;
	/*background-color:#000000;*/
	text-align: center;
	border-color: #CCCCCC;
	border-left-style: solid;
	border-left-width: 0px;
	border-bottom-style: solid;
	border-bottom-width: 0px;
	border-right-style: solid;
	border-right-width: 0px;
	border-top-style:solid;
	border-top-width: 0px;

	}


ul.menu ul {
	display: none;
	list-style: none;
	position: absolute;
	top: 20px;
	left: 0px;
	}

ul.menu ul li{
	top: 0px;
	left: -40px;
	width: 130px;
	height: 25px;
	background-color: #000000;
	border-color: #0000FF;
	border-left-style: solid;
	border-left-width: 0px;
	border-bottom-style: solid;
	border-bottom-width: 0px;
	border-right-style: solid;
	border-right-width: 0px;
	border-top-style:solid;
	border-top-width: 0px;
	}


ul.menu li a {
	text-decoration: none;
	font-size: 12px;
	color: #FFCC00;
	}

ul.menu li a:hover {
	text-decoration: none;
	font-size: 12px;
	color: #0033FF;
	}


ul.menu li ul a {
	text-decoration: none;
	font-size: 12px;
	color: #000000;
	}

ul.menu li ul a:hover {
	text-decoration: none;
	font-size: 14px;
	color: #FFFF00;
	}




ul.menu li:hover > ul {
	display:block;
	color: #FFFF00;
	}

ul.menu li:hover {
	background-color: ;
		color: #FFFF00;

	}

ul.menu li ul li:hover {
	background-color: #666666;
	color: #FFFF00;
	}

