.dropdownMenu{
	position: absolute;
	min-width: 150px;

	z-index: 10;

	background: #fff;
	padding: 3px;

	border: 1px #DFDFDF solid;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;

	box-shadow: 1px 1px 7px #e0e0e0;
	-webkit-box-shadow: 1px 1px 7px #e0e0e0;
	-moz-box-shadow: 1px 1px 3px #e0e0e0;
}

.dropdownMenu li{
	margin: 0;
	padding: 0;
}

.dropdownMenu li.separator{
	height: 1px;
	background-color: #e0e0e0;
	margin: 3px 0;
}

.dropdownMenu li.separator a{
	display: none;
}

.dropdownMenu li a{
	padding: 0.5em 2em;
	font-family: Arial;
	line-height: 1.2em;
	font-size: 0.8em;

	display: block;
	text-decoration: none;
	cursor: default;
	color: #000;
}

.dropdownMenu li.selected a{
	cursor: pointer;
	color: #fff;
	background-color: #80B7E4;
}

.dropdownMenu li.disabled a{
	color: #e0e0e0;
}

.dropdownMenu li.disabled a:hover{
	cursor: default;
	background-color: #fff;
}

.dropdownMenu li.hasSubmenu a{
	border-right: 2px #000 solid;
}

.dropdownMenu li.loading{
	background: url('/.style/standard/xhtml/controls/dropdownMenu/loader.gif') 50% 50% no-repeat;
	height: 1.4em;
}

.dropdownMenu li.loading a{
	display: none;
}

