/**
	sexy-combo 2.1.3 : http://code.google.com/p/sexy-combo/
	
	This is the base structure, a skin css file is also needed
*/

/*wrapper of all elements*/
div.combo {
    position:relative;
    left: 0px;
    top: 0px;
}
/*text input*/
.combo input {
    position: absolute;
}


/*icon*/
.combo div.icon {
    position:absolute;
}


/*list wrapper*/
.combo div.list-wrapper {
    position: absolute;
    overflow: hidden;
    /*we should set height and max-height explicitly*/
    height: 200px; 
    max-height: 200px;
    /*should be always at the top*/
    z-index: 99999;

}

/*"drop-up" list wrapper*/
.combo div.list-wrapper-up {}

/*dropdown list*/
.combo ul {}

/*dropdown list item*/
.combo  li {
    height: 20px;
}

/*active (hovered) list item*/
.combo li.active {}


.combo .visible {
    display: block;
}

.combo .invisible {
    display: none;
}

/*used when emptyText config opt is set. Applied to text input*/
.combo input.empty {}

a.to-highlight:hover {
    background-color: rgb(223, 232, 246);
}


/**
	sexy-combo 2.1.3 : http://code.google.com/p/sexy-combo/
	
	This is an example custom skin.
*/

div.custom {
    white-space: nowrap;
    /*height: 20px;*/
    border: 0;
    margin: 0;
    padding: 0;
	width: 190px;
}

div.custom input {
    margin: 0 0 0 0;
    padding:0px 3px 0px 6px;
    background:transparent url(/images/countdown2/findstore_query.gif) no-repeat scroll left top;
    border:0px;
    height: 20px;
	line-height: 20px;
    vertical-align:middle; 
    left: 0px;
    top: 0px; 
    width: 161px;
	font-size:11px;
	color:#747474;
}
div.selectrow div{height:20px;}

div.error input {
	background-image:url(/images/countdown2/query_bg_error.jpg)!important;
	color:#CC0000;
}
div.custom div.icon {
    width:34px;
    height:20px;
    border: 0;
    background:transparent url(/images/countdown2/arrow_down.gif) 0px 0px no-repeat;
    cursor:pointer;
   /* border-bottom: 1px solid #B5B8C8;*/
    top:0px;
    right: 0px; 
	display: block;
}
div.error div.icon {
	background-image:url(/images/countdown2/arrow_down_error.gif)!important;
}

div.custom div.list-wrapper {
    left: 0px;
    top: 20px;
    border: 1px solid #A8A8A8;
	border-top: 0;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    width: 190px;
    bottom: auto;
	/*position:relative;*/
	z-index:10;
}

div.custom div.list-wrapper-up {
    top: auto;
    bottom: 0px;
    border: 1px solid #CFCFCF;
	border-bottom: 0;	
}

div.custom ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 200px;
}


div.custom  li {
	font-size:11px;
    background-color: #FFFFFF;
    cursor: pointer;
    margin: 0;
	color:#747474;
	padding:3px 6px 0 6px;
    vertical-align:bottom; 
}

div.custom li.active {
    background-color: #CFCFCF;
	color:#333;
}

div.custom input.empty {
    color: gray;
}