/* Dropdown control */
.selectBox-dropdown {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: #fff;
    border: 0px solid #BBB;
    border-radius: 5px;
    color: #6e6e6e;
    cursor: default;
    display: inline-block;
    height: 23px;
    font-size: 95.9%;
    margin-top: -16px;
	outline: none;
    padding-right: 40px;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
}

.instances {
    width: 150px; /* width = (desired width) - padding-right */
}

.websites {
    width: 160px; /* width = (desired width) - padding-right */
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
	display: inline-block;
	overflow: hidden;
	padding: 5px 5px 4px 5px;
	text-align: left;
	white-space: nowrap;
	width: 100%;
	font: 11px Arial;
	color: #A4A4A4;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 23px;
	height: 100%;
	background: url(http://www.triplep-steppingstones.net/themes/steppingstones/images/icon-dropdown.jpg) 50% center no-repeat;
	border-left: 0px solid #BBB;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #e7e7e7;
	border: 0px solid #BBB; /* should be the same border width as .selectBox-dropdown */
    max-height: 200px;
	overflow: auto;
	padding-bottom: 5px;
    position: absolute;
    z-index: 99999;
}


/* Inline control */
.selectBox-inline {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	border: solid 1px #BBB;
	background: #FFF;
	display: inline-block;
    outline: none;
	overflow: auto;
    width: 250px;
}

.selectBox-inline:focus {
	border-color: #666;
}


/* Options */
.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
	color: #6E6E6E;
}

.selectBox-options {
    padding-bottom: 5px;
}

.selectBox-options li a
{
    display: block;
    font-size: 95.9%;
    padding: 5px;
	white-space: nowrap;
	overflow: hidden;
	font: 11px Arial;
}

.selectBox-options li.selectBox-hover a {
	background-color: #5ec5ed;
	color: #fff;
}

.selectBox-options li.selectBox-disabled a {
	color: #888;
	background-color: transparent;
}

.selectBox-options li.selectBox-selected a {
    background-color: #5ec5ed;
    color: #fff;
	font: 11px Arial;
}

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	padding: 0 .3em;
	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;
}




