/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding: 20px 0 0 0;
	list-style:none;
	float: right;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding: 0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0 !important;
	padding:0px !important;
	cursor:pointer;
	background-color: #ffffff;
	font-size: 12px; 
	letter-spacing: 0px;
}
.dropdown li.mainTabs {
	height: 40px;
	padding:10px 15px 0 15px !important;
	border-left: 1px solid #eaeaea;
	float: left;
	font-weight: bold;
}

/* 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:#000000;
	width:100%;
	margin: 0;
	padding: 0;
}
.dropdown li li a{
	display: block;
	padding: 4px 4px 4px 15px;
}

.dropdown a:hover{
	
}
.dropdown li li a:hover{
	background-color: #a80000;
	color: #FFFFFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-bottom:1px solid #eaeaea;
	border-top:0;
	margin-left:-1px;
	overflow: hidden;
	font-weight: normal;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:0px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:0px;
}