/* Dropdown control */
.goods-sel-color .selectBox-dropdown {
	background: url("../images/select-box-bg.png") no-repeat scroll 0 0;
	width: auto;
	position: relative;
	line-height: 14px;
	text-decoration: none;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
	width: 140px;
	height: 25px;
}
.goods-sel-color .selectBox-dropdown:hover{
	background-position: 0 -30px;
}
.goods-sel-color .selectBox-dropdown.selectBox-menuShowing {
	background-position: 0 -60px;
}
.goods-sel-color .selectBox-dropdown .selectBox-label {
	color: #363636;
    display: inline-block;
    float: left;
    overflow: hidden;
    padding: 4px 5px 4px 10px;
    text-align: left;
    white-space: nowrap;
    width: 72%;
    font-size: 13px;
    line-height: 16px;
}

.goods-sel-color .selectBox-dropdown .selectBox-arrow {
	background: url("../images/select-arrow.gif") no-repeat 50% center;
	height: 23px;
    position: absolute;
    right: 0;
    top: 2px;
    width: 26px;
}

/* Big select */
.big-select-box{
	background: url("../images/input-stylise.png") no-repeat scroll 0 0 transparent;
    height: 56px;
    margin-right: 5px;
    max-width: 450px;
    position: relative;
}
.big-select-box .selectBox-dropdown {
	background: url("../images/input-stylise.png") no-repeat scroll right -70px transparent;
    height: 42px;
    margin-right: -5px;
    padding: 14px 10px 0 10px;
    display: block !important;
    text-decoration: none;
}
.big-select-box .selectBox-dropdown .selectBox-arrow {
	background: url("../images/big-select-arrow.gif") no-repeat 0 0;
	height: 14px;
    position: absolute;
    right: 5px;
    top: 50%;
    width: 16px;
    margin-top: -6px;
}
.big-select-box .selectBox-dropdown:hover .selectBox-arrow{
	background-position: 0 -40px;
}
.big-select-box .selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{
	background-position: 0 -79px;
}
.big-select-box .selectBox-dropdown .selectBox-label {
	color: #363636;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
    line-height: 26px;
    height: 34px;
}
/* Dropdown menu */
.selectBox-dropdown-menu {
	background-color: #fff;
	position: absolute;
	z-index: 100;
	max-height: 200px;
	border: 1px solid #619913;
	overflow: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	box-shadow: 0 2px 3px #bcbcbc;
	-webkit-box-shadow: 0 2px 3px #bcbcbc;
}
.selectBox-dropdown-menu.bigSelectBox{
	max-height: 260px;
	border: 2px solid #8C7975;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
}
/* Inline control */
.selectBox-inline {
	width: 250px;
	outline: none;
	border: solid 1px #BBB;
	background: #FFF;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	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;
	padding: 0;
	margin: 0;
}
.selectBox-options li a{
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	padding: 2px 4px 4px;
    text-decoration: none;
	font-size: 13px;
	color: #363636;
}
.selectBox-options.bigSelectBox li a{
	padding: 2px 10px 4px;
	font-size: 16px;
}
.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;
	font-weight: bold;
}
.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	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;
}