/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
        border-bottom:1px solid #fff;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:120px;
	background-color:#438C27;
	cursor:pointer;
        color:#fff;
        
}

/* 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:#fff;
	width:100%;
}

.dropdown a:hover{
	text-decoration:underline;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
    border-left:1px solid #fff;
	background:#E40708;
	padding-left:20px;
	width:105px;
        background-image:url("/images/nav-greenbg.jpg");
        background-position:center top;
        background-repeat:repeat-x;
        color:#fff;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
    border:1px solid #fff;
	background:#E40708;
	padding-right:20px;
	width:105px;
        color:#fff;
}
