/*
* CEEMES DROPDOWN PLUGIN CSS FILE
*/

.ddo {
	width : 300px;
}

.ddo .select-info {
    border: 1px solid black;
    cursor: pointer;
    height: auto;
    width: 100%;
}
.ddo .select .options {
    background-color: white;
    border: 1px solid black;
    display: none;
    height: 1px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 25;
}
.ddo .select .options .optionswrapper {
    position: absolute;
    top: 0;
}
.ddo .select .options .option {
    border-color: black;
    border-style: solid;
    border-width: 0 0 1px;
	cursor: pointer;
}
.ddo .select .options .option:hover {
	background: grey;
}
.ddo .select .options .scroller {
    background: none repeat scroll 0 0 black;
    position: absolute;
    right: 0;
    width: 10px;
}
.suggestion-found {
	color:red;
}
.ddo.form-required .select .options .option.hightligh, 
.ddo.form-fit .select .options .option.hightligh
{
	font-weight: bold;
}