/* Dropdown control */
.selectBox-dropdown {
	min-width: 150px;
	position: relative;
	text-decoration: none;
	text-align: left;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;

    font-size: 13px;

    display: block;

    height: 29px;

    border-radius:3px; 
    -webkit-border-radius:3px; 
    -moz-border-radius: 3px; 
    -khtml-border-radius:3px;

    -moz-box-shadow: 0 1px 0px #eee, inset 0px 1px #fff; 
    -webkit-box-shadow: 0 1px 0px #eee, inset 0px 1px #fff; 
    box-shadow: 0 1px 0px #eee, inset 0px 1px #fff; 

    line-height: 28px;
    cursor: pointer;

    color: #494949; 
    border: 1px solid #d5d5d5;
    background: #f9f9f9;
}


.selectBox-dropdown:hover {
    color: #494949 !important;
    background: #fff;
}
.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    
}

.selectBox-dropdown.selectBox-menuShowing {
}

.selectBox-dropdown .selectBox-label {
	padding: 0px 12px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 23px;
	height: 100%;
	background: url("/images/select-arrow.png") 5px 12px no-repeat;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 500px;
	min-height: 1em;
	border: solid 1px #d5d5d5; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	overflow: auto;

    border-radius:3px; 
    -webkit-border-radius:3px; 
    -moz-border-radius: 3px; 
    -khtml-border-radius:3px;

    -moz-box-shadow: 0 1px 0px #eee, inset 0px 1px #fff; 
    -webkit-box-shadow: 0 1px 0px #eee, inset 0px 1px #fff; 
    box-shadow: 0 1px 0px #eee, inset 0px 1px #fff; 
}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	display: inline-block;
	overflow: auto;
}

.selectBox-inline:focus {
	border-color: #666;
}


/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: default;
	margin: 0;
    padding: 0px;
}

.selectBox-options LI A {
    font-size: 13px;
	line-height: 2;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;

    color: #494949;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #EEE;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #C8DEF4;
}

.selectBox-options .selectBox-optgroup {
    font-size: 13px;

    color: #494949;
    line-height: 2;

    overflow: hidden;

    padding: 0 0.5em;
    white-space: nowrap;
    
}


/* Disabled state */
.selectBox.selectBox-disabled {
	color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .5;
	filter: alpha(opacity=50);
	border-color: #666;
}

.selectBox-inline.selectBox-disabled {
	color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
	background-color: transparent !important;
}

/* calendar height in history */
.b-calendar-spec-select-selectBox-dropdown-menu {
    height: 400px;
}
