/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
    width:250px;
     background-image: url(images/ai04.jpg);
}

/* these are the inner menus*/
.dropdown ul {
	margin:0;
	padding:5;
    background-image: url(images/ai04.jpg);
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0;
	width:250px;
    cursor:pointer;
     background-image: url(images/ai04.jpg);

}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
font-family: Times New Roman ,Arial,Tahoma;
font-size: 14px;
color:#C5A690;
text-decoration:none;
font-weight: bold;
}

.dropdown a:hover{
font-family: Times New Roman, Arial,Tahoma;
font-size: 14px;
color:#846654;
text-decoration:none;
font-weight: bold;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li, .dropdown li{
   margin:0;
	padding:0;
	border-top:0;

}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu, .dropdown ul li.submenu{

	padding:0px;
	width:250px;
	margin:0;
	padding:0;
}
