/* this is the main UL element*/
.dropdown{
	margin: 0;
	padding: 0;
	list-style: none;
	/*border-bottom: 1px solid #cccccc;*/
}

/* these are the inner menus*/
.dropdown ul{
	margin: 0;
	padding: 0;
	border-top: 1px solid #cccccc;
	list-style: none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	display: block;
	margin: 0 0 0 1px !important;
	margin: 0 0 0 0 !ie;
	padding: 5px;
	width: 140px;
	background-color: #ffffff;
	cursor: pointer;
	border-bottom: 1px solid #cccccc;
}

/* 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%;
}

.dropdown a:hover{
	text-decoration: underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border: 1px solid #cccccc;
	border-top: 0;
	margin-left: -1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image: url("/img/bullet/arrow.gif");
	background-position: center right;
	background-repeat: no-repeat;
	padding: 5px;
	width: 140px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image: url("/img/bullet/arrow.gif");
	background-position: center right;
	margin-bottom: -2px !ie;
	padding: 5px;
	width: 140px;
}