/* this is the main UL element*/
.dropmenu {
	list-style:none;
	height: 18px;
	width: 920px;
	padding: 3px 0;
	border-bottom: 1px solid #ddd;
	text-align: left;
}

/* these are all the LIs in the menu*/
.dropmenu li{
	float: left;
	margin:0;
	cursor:pointer;
	width: 98px;
	height: 14px;
	position: relative;
	
}
.dropmenu li a {
	padding-left: 16px;	
}
.dropmenu li.first {

}
.dropmenu li.bl {
	width: 100px;
}
.dropmenu li.bl a {

}
.dropmenu li.br a {
	border-left: 1px solid #ddd;
	padding-left: 30px;
}
.dropmenu li.last {
	width: 120px;
}
.dropmenu li.last a {

}
/*
.dropmenu li.border a {
	padding-left: 11px;
	border-left: 1px solid #ddd;
}
*/
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropmenu a {
	display: block;
	color:#666;
	font-size: 7pt;
	text-align: left;
	height: 14px;
	line-height: 14px;
	font-weight: normal;
	text-decoration: none !important;
}
.dropmenu a:hover{ 	color: #000; }

/* these are the inner menus*/
.dropmenu ul{

	text-align: left;
	border: 1px solid #ddd;
	position: absolute;
	top: 17px !important;
	left: 0 !important;
	margin:0;
	padding:0;
	padding-bottom: 5px;
	list-style:none;
	background: transparent url(/img/menubg.png) repeat scroll 0 0;

}

/* these are the LIs that only belong to submenu*/
.dropmenu ul li{ 
	border:0;
	height: 18px; 	
	width: 162px;
	
}
.dropmenu ul li a { 
	display: block;
	font-weight: normal; 

	line-height:18px;
	text-decoration: 
	none !important; 
}
/* these are the LIs that contains a submenu*/
.dropmenu li.submenu{
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropmenu ul li.submenu{
}





