.asmContainer {
	/* container that surrounds entire asmSelect widget */
	width: 400px;
}

.asmSelect {
	/* the newly created regular 'select' */
	display: block; 
	float: left;
	width: 140px;
	margin-top: 5px;
}

.asmOptionDisabled {
	/* disabled options in new select */
	color: #999; 
}

.asmHighlight {
	/* the highlight span */
	padding: 0;
	margin: 0 0 0 1em;
}

.asmList {
	/* html list that contains selected items */
	margin: 0.25em 0 1em 0; 
	position: relative;
	display: block;
	padding-left: 0; 
	list-style: none;
	width: 240px;
	float: right;
	clear: none;
}

.asmListItem {
	/* li item from the html list above */
	position: relative; 
	margin-left: 0;
	list-style: none;
	margin: 0 0 -1px 0; 
	line-height: 1em;
	color: #fff;
	width: 240px;
	text-indent: 15px;
	font-size: 14px;
	padding: 6px 0;
	border: #89c144 solid 1px;
	background: #092e20;
}

.asmListItem:hover {
	background-color: #031b12;
}

.asmListItemLabel {
	/* this is a span that surrounds the text in the item, except for the remove link */
	display: block;
}

.asmListSortable .asmListItemLabel {
	cursor: move; 
}

.asmListItemRemove {
	/* the remove link in each list item */
	position: absolute;
	right: 0; 
	top: 0;
	padding: 5px; 
}
