/*************** combobox *****************/
.combobox {
  float: right;
  position: relative;
}

.combobox .combobox_button{
	float:		left;
	cursor:		pointer;
	position: relative;
}

.combobox .combobox_button img{
  display: block;
}

.combobox .combobox_element{
	  float: left;
    width: 420px;
    height: 29px;
    background: white;
    border: 0;
    border-top: 1px solid #c9c9c9;
    border-left: 1px solid #c9c9c9;
    margin: 0;
    padding: 0;
}

.combobox .combobox_element span{
	display: block;
	padding: 0 0 0 0px;
	font-size: 14px;
	color: #86959e;
	white-space: nowrap;
  line-height: 29px;
}

.combobox ul.combobox_content{
  display:  none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 30px;
  list-style: none;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  background: none;
  max-height: 200px;
  overflow: auto;
  border-top: 1px solid #b7bfc3;
}
.combobox.contact ul.combobox_content{
  top: 24px;
}

.combobox ul.combobox_content li{
  background: #e8f2f7;
  margin:     0 0 0 0;
  cursor:     pointer;
  text-align:   left;
  overflow:   hidden;
  border: 1px solid #b7bfc3;
  border-top: none;
}

.combobox ul.combobox_content li:hover {
  background: #eee1bc;
}

.combobox ul.combobox_content li span{
  font: 11px/11px Tahoma, Helvetica;
  color: black;
}