/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding-right:0px;
	list-style:none;
	border-bottom:0px solid #444;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0px;
	border-top:0px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0px;
	width:180px;
	height:25px;
	cursor:pointer;
}
.dropdown li a{
	margin:0;
	padding: 0px 0px 0px 0px;
	width:180px;
	height:25px;
	padding-top:5px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown p {
	font: normal 1.4em "Times New Roman", Times, serif;
	padding: 5px 0px 0px 40px;
	text-decoration:underline;
	color: #E1E9E2;
}
.dropdown a{
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#030398;
	padding: 0px 0px 0px 0px;
}

.dropdown a:hover{
	text-decoration:underline;
	border-bottom:0px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#030398;
}
.dropdown li a:hover{
	display: block;
	float: left;
	padding: 0px 0px 0px 0px;
	border-bottom:0px solid #5A7C50;
	width:180px;
	height:25px;
	padding-top:5px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#030398;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid  #008442;
	margin-left:-1px;
	background-color: #dee6df;
	text-align:center;
}
.dropdown ul li a:hover{
	border-right:0px solid;
	margin-left:-1px;
	width:180px;
	height:25px;
	padding-top:5px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:0px;
	width:180px;
	height:25px;
	padding-top:5px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('right.gif');
	background-position:center right;
	background-color: #dee6df;
	padding-top:5px;
	width:180px;
	height:25px;
}
