/* 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{
	margin:0;
	width:180px;
	height:30px;
	line-height:30px;
	background:url(../img/menu-bg.gif) no-repeat;
	cursor:pointer;
	font-size:18px;
	font-family:"Times New Roman", Times, serif;
	text-align:center;
	margin-right:5px;
	margin-left:0px
	
	
}

/* 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:#FFFFFF;
}

.dropdown a:hover{

}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	height:25px;
	width:172px;
	background-image:none;
	background:#198BC5;
	margin-top:1px;
	line-height:25px;
	text-align:left;
	padding-left:8px;

}
.dropdown ul li a{
	width:172px;
	}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image: url(../img/menu-down-bg.gif);
	background-repeat:no-repeat;
	width:180px;
	height:30px;
	text-align:center;
	line-height:30px;
}

/* 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:5px;
	width:120px;
}