
.asmContainer {
	/* container that surrounds entire asmSelect widget */
}

.asmSelect {
	/* the newly created regular 'select' */
	display: inline; 
	margin-bottom: 1em;
}

.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; 
	*/
	
	clear: both;
	width: 476px;
	overflow: hidden;
	background: #e4e4e4;
	margin: 0.25em 0 0 0; 
	padding: 0;
	list-style: none;
	/* border: 1px solid #94acbd; */
	
}

.asmListItem {
	/* li item from the html list above 
	position: relative; 
	margin-left: 0;
	padding-left: 0;
	list-style: none;
	background: #ddd;
	border: 1px solid #bbb; 
	width: 100%; 
	margin: 0 0 -1px 0; 
	line-height: 1em;
	*/
	vertical-align: top;
	overflow: hidden;
	border-top:2px solid #cbcbcb;
	margin: -2px 0 0;
	padding: 7px 9px 7px 10px;
}

.asmListItem:hover {
	background-color: #e5e5e5;
}

.asmListItemLabel {
	/* this is a span that surrounds the text in the item, except for the remove link 
	padding: 5px; 
	display: block;
	*/
	float: left;
	font:17px Tahoma, Arial, sans-serif;
	color: #4d4d4d;
}

.asmListSortable .asmListItemLabel {
	cursor: move; 
}

.asmListItemRemove {
	/* the remove link in each list item 
	position: absolute;
	right: 0; 
	top: 0;
	padding: 5px; 
	*/
	float: right;
	font:16px Tahoma, Arial, sans-serif;
	color: #ff911e;
	text-decoration: underline;
}
