/*
 * SmartTextBox.css
 * 
 * SmartTextBox default styles 
 * Copyright (c) 2009-2010 Pierre Gayvallet - GPL license.
 */

.smartTextBox{
	font: 12px "Tahoma";
	cursor: text;
}

.smartTextBox-items{
	zoom: 1;
	overflow: hidden;
	margin: 0;
	padding: 3px 4px 0;
	*padding-bottom: 3px;
}

.smartTextBox-elem{
	list-style-type: none;
	line-height: 18px;
	float: left;
	display: block;
	padding: 0;
	margin: 0 5px 3px 0;
	cursor: default;
}

.smartTextBox-box-elem{
	position: relative;
	padding: 0 5px;
	border: 1px solid #CAD8F3;
	background: #F2F2FF;
	cursor: default;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.smartTextBox-input-elem{
	backgound-color : transparent;
}

.smartTextBox-input-elem-valueInput{
	border: none;
}

.smartTextBox-elem-hover{

}

.smartTextBox-elem-box-hover{
	background-color: #FFC;
}

.smartTextBox-elem-input-hover{

}

.smartTextBox-elem-focus{
	
}

.smartTextBox-elem-box-focus{
	background-color: #FFC;
}

.smartTextBox-elem-input-focus{
	
}

.smartTextBox-elem-valueContainer{
	margin-right: 8px;
	white-space: nowrap;
}

.smartTextBox-elem-deleteButton{ 
	position: absolute; 
	right: 4px; 
	top: 6px; 
	display: block; 
	width: 7px; 
	height: 7px; 
	font-size: 1px; 
	background: url('../imgs/close.gif');
}

.smartTextBox-elem-deleteButton:hover{ 
	border: none;
	background-position: 7px;
	text-decoration: none;
}



/* AutoComplete */
.smartTextBox-autocomplete{
	position: absolute;
	z-index: 9999;
	white-space:pre;
	display:table;
}

.smartTextBox-autocomplete-placeholder{
	opacity: 0.9;
	filter: alpha(opacity=90);
	background: #eee;
	padding: 5px 7px;
	white-space:pre;
	display:table;
}

.smartTextBox-autocomplete-results{
	opacity: 0.9;
	filter: alpha(opacity=90);
	background: #eee;
	margin: 0;
	padding: 0;
	white-space:pre;
	display:table;
}

.smartTextBox-autocomplete-result{
	margin: 0;
	padding: 5px;
	list-style-type: none;
	background: #eee;
	cursor: pointer;
	white-space:pre;
	display:table;
}

.smartTextBox-autocomplete-value {
	display: none;
}

.smartTextBox-autocomplete-highligh {
	font-weight: bold;
}

.smartTextBox-autocomplete-result-focus{
	background: #C6D9E4;
}