/* this is the main UL element*/
.dropdown {
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	display:block;
	padding-bottom:0px;
	font-size:14px;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	margin:0;
	background-color:#f2f2f2;
	cursor:pointer;
}

/* 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:#333333;
	width:100%;
}

.dropdown ul li a{
	display:block;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li a:hover{
	background-color:#666666;
	color:#FFFFFF;
	width:200px;
	border-top:0;
	display:block;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
 padding: 0 0 0px 0;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{

}
.link-col { display:block; width: 230px; float:left; }
.link-col li{ font-family:Arial, Helvetica, sans-serif; }

