/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	font:11px Arial, Helvetica, sans-serif;
}

/* these are the inner menus*/
.dropdown ul{
	margin:10px 0px 0px 0px;
	padding:0;
	list-style:none;
	font-size:11px;

}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding:0px;
	background-color:#fff;
	cursor:pointer;
	text-align:center;

}

#dropdown-list li a{
	padding-top:4px;
	margin-right:-1px;
	
}

#dropdown-list li	{

}

/* 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:#457c65;

}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left:-1px;
	border:#457c65;
	height:45px;

}

#services #dropdown-list	{
	border-right:1px solid #457c65;
	border-left:1px solid #457c65;
	border-top:1px solid #457c65;

}

#services #dropdown-list a	{
	text-indent:0px;
	height:30px;


}

#services #dropdown-list li	{
	border-bottom:1px solid #457c65;
	margin:0px 0px 0px 0px;
	height:45px;
	
}



