.ac_border {
	border: 1px solid silver;
	border-radius: 4px;
	background-color: #F8F8F8;
}

.ac_border.ac_invalid {
	border-color: darkred;    
}

.ac_border.ac_focused {
	border-color: #C7A158; 
	background-color: white;      
}

.acs_button {
	background-image: url(img/icon-down-0.png);	
	background-repeat: no-repeat;
	background-position: center center;
	width: 20px;
}

.acs_button:hover {
	background-image: url(img/icon-down-1.png);    
}

.ac_select.ac_expanded .acs_button {
	background-image: url(img/icon-up-0.png);    
}

.ac_select.ac_expanded .acs_button:hover {
	background-image: url(img/icon-up-1.png);    
}

.ac_items {
	margin-left: -1px;
	background-color: white;    
	border: 1px solid silver;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:    0px 1px 1px 0px rgba(0, 0, 0, 0.3);
	box-shadow:         0px 1px 1px 0px rgba(0, 0, 0, 0.3);       
}

.ac_item, .ac_group {
	padding: 0 5px;	
	border: 1px solid transparent;
}

.ac_group {
	font-weight: bold;  
}

.ac_item.ac_focused {
	background-color: #E7F4F9;
	border: 1px solid #E7F4F9;
	cursor: pointer;
}

.ac_item.ac_selected {
	background-color: #EEEEEE;
	border: 1px solid #EEEEEE;
}

.ac_item.ac_selected.ac_focused {
	background-color: #E7F4F9;
	border: 1px solid #EEEEEE;
}

.ac_item.ac_disabled {
	color: silver;	
}

.ac_empty {
	font-style: italic;
	color: gray;	
}

.ac_slider {
	padding: 0 10px;	
	height: 13px;
}

.acs_grip {
	height: 11px;
	width: 11px;
	border: 1px solid silver;
	background-color: #EEEEEE;
	border-radius: 5px;
	cursor: pointer;	
}

.acs_line {
	height: 5px;
	margin-top: -2.5px;
	background-color: darkgreen;    	
}

.ac_checklist .acl_item {
	padding-left: 20px;
	background-image: url(img/check-0.png);
	background-repeat: no-repeat;
	background-position: 2px center;	
}

.ac_checklist .acl_item > label {
	cursor: pointer;	
}

.ac_checklist .acl_item.ac_checked {
	background-image: url(img/check-1.png);
}

.ac_checklist  .acl_item.ac_disabled {
    opacity: 0.5;
}

.ac_checktree .act_check {
    cursor: pointer;
    padding-left: 20px;
    background-image: url(img/check-0.png);
    background-repeat: no-repeat;
    background-position: 2px center;  
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;       
}

.ac_checktree .act_folder { 
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;       
    cursor: pointer;
}

.ac_checktree .act_check.ac_checked {
    background-image: url(img/check-1.png);
}

.ac_checktree .act_check.ac_partial {
    background-image: url(img/check-2.png);
}

.ac_checktree .act_item.ac_disabled {
    opacity: 0.5;
}

