﻿/* Autocomplete
----------------------------------*/
.ui-autocomplete {
	padding: 0px;
	border: 1px solid #444444;
	color: #444444;
	z-index: 99999;
	width: 10em;
	overflow-y: auto; 
	overflow-x: hidden;
}

.ui-autocomplete ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ui-autocomplete li {
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block; /*  	if width will be 100% horizontal scrollbar will apear  	when scroll mode will be used 	*/ /*width: 100%;*/
	font: menu;
	font-size: 12px; /*  	it is very important, if line-height not setted or setted  	in relative units scroll will be broken in firefox 	*/
	line-height: 16px;
	overflow: hidden;
}

.ui-menu-item-alternate {
	
}

.ui-menu-item-label {
	background-color: #D8DFEA;
	color: #B20909;
	font-weight: bold !important;
	text-align: center;
	vertical-align: middle;
}

.ta-strikeThrough {
	text-decoration:line-through;
}

.ta-inactive {
    color:#888888;
}

.ui-menu-item-alternate .ta-inactive {
    color:#666666;
}

.ta-highlight {
	font-weight:bold;
}

.ui-autocomplete-loading { 
	background-image: url('//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/base/images/ui-anim_basic_16x16.gif') !important;
	background-position: right center;
	background-repeat: no-repeat;
}

/* Autocomplete combobox styles */
.ui-autocomplete-combobox button, .ui-autocomplete-combobox input {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.ui-autocomplete-combobox input {
	height: 20px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-mozilla-border-top-right-radius: 0px;
	-mozilla-border-bottom-right-radius: 0px;
}

.ui-autocomplete-combobox button {
	width: 24px; 
	height: 24px;
	vertical-align:bottom; 
}

/* Basic combobox styles for IE7 */
*:first-child + html .ui-autocomplete-combobox button{
	height: 26px; 
}

