/*!
 * Combobox Plugin for jQuery, version 0.5.0
 *
 * Copyright 2012, Dell Sala
 * http://dellsala.com/
 * https://github.com/dellsala/Combo-Box-jQuery-Plugin
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Date: 2012-01-15
 */
.combobox {
    margin-right: 0px;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
    float:left;
}
.combobox input {
	border:none;
	width:39px;
	height:28px;
	padding:0 4px;
	text-align:right;
}
.combobox input:focus {outline:none;}
.combobox_arrow{
    background:url(img/common/images.png); background-position:-206px -870px;
    display: block;
    height: 100%;
    width: 100%;

}
.combobox_button {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 19px;  
}

.combobox_button:hover {
    text-decoration: none;
}

.combobox_button {
    * top: 0px !important;
}

.combobox_selector {
    background-color: #FFF;
    font-size: 12px;
    z-index: 1000;
    max-height: 200px;
    overflow: auto;
    border:1px solid #000000;
    border-top:none;
    color:black;
    font-weight:bold;
    cursor:pointer;
    line-height: 16px;
}

.combobox_selector ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.combobox_selector li {
    padding: 0px 4px 0px 4px;
	text-align:right;
}

.combobox_selector li:hover,
.combobox_selector li.selected {
    background-color: #C3C3C3;
    color: #000;
}

