/* this is the main UL element*/

#main{
	top:0;
	margin:0;
	padding:0 0 0 1px;
	position: relative;
	height:20px;
	/*border:1px solid red;*/
	
}


.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
}

.dropdown #menuHome{
	width:178px;
}

.dropdown #menuAux{
	width:100px;
	border-right:none;
}

.dropdown #menuAux a{
font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:10px;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:1px 5px 1px 5px;
	width:89px;
	background-color:#FFF;
	cursor:pointer;
	border-right:2px solid #b2114e;
	
	
}
.dropdown ul li a{
	font-weight:normal;
	color:#b2114e;
}

.dropdown ul li a:hover{
	font-weight:normal;
	color:#ff99cc;
}


/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#b2114e;
	width:100%;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:10px;
}

.dropdown a:hover{
	color:#ff99cc;
	text-decoration:none;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-left:none;
	border-right:none;
	border-bottom:1px solid #b2114e;
	border-top:0;
	
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	padding-left:10px;
	width:84px;
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	padding:5px;
	width:90px;
}