/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:1px solid #ccc;
	width: 858px;
	text-align:center;
	position:center;
	
}

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

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

/* 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: #006699;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
font-size: 1.1em;
padding: 0 15px;
}

.dropdown a:hover{
	text-decoration:none;
	background: url(../images/hover.gif);
	border-bottom: 1px solid #9999cc;
}

.dropdown1 a{
	text-decoration:none;
	color: #006699;
	font-weight: bold;
	font-family: Arial, "Times New Roman", Times, serif;
font-size: 0.9em;
}

.dropdown1 a:hover{
	text-decoration:underline;

}

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

}

.dropdown ul li:hover{
	background-color:#66FFFF;
	}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:0;
	width:105px;
	font-weight: normal;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	padding:5px;
	width:120px;
}
.dropdown-submenu{
	border: 1px solid #ccc; border-left-width: 2px;
	border-right-width:1px;
	border-bottom-width:1px;
	border-bottom-color: #999999;
	border-right-color: #999999;
	}