/*
default js select styles
*/
.js-select
{
	position:absolute;
	width:200px;
	cursor:pointer;
	font-size:11px;
	line-height:16px;
	margin:auto;
	right:0px;

}

/*
default js select box styles
*/
.js-select-box
{
	height:20px;
	background: url(../img/js-select/centre.png) top left repeat-x;
}

.js-select-left-box
{
	position:absolute;
	left:0px;
	top:0px;
	height:20px;
	width:4px;
	background:transparent url(../img/js-select/left.png) top left no-repeat;
}

.js-select-right-box
{
	height:20px;
	width:4px;
	position:absolute;
	right:0px;
	background: transparent url(../img/js-select/right.png) top right no-repeat;
}
.unselectable{color:#f00;}
.js-select .js-select-anchor
{
	height:16px;
	width:16px;
	position:absolute;
	right:2px;
	top:2px;
	background:url(../img/js-select/arrow-down-current.png) top right no-repeat;
}

.js-select.active .js-select-anchor
{
	background:url(../img/js-select/arrow-up-current.png) top right no-repeat;
}

.js-select-text
{
	height:16px;
	width:170px;
	position:absolute;
	left:2px;
	top:2px;
	padding:0px 5px;
	overflow:hidden;
}

/*
js select popup styles
*/
.js-select-popup{
	position:absolute;
	visibility:hidden;
	width:190px;
	overflow:hidden;
	/*background-color:rgb(223, 223, 223);*/
	background:url(../img/js-select/pop_up_bg.png);
	padding:5px;
	margin:auto;

	right:0;
}

.js-select.active .js-select-popup
{
	visibility:visible;
}

/*
list styles
*/
.js-select-list
{
	list-style-type:none;
	list-style-position:outside;
	margin:0px ! important;
	padding:0px;
}

/*
option styles
*/
.js-select-option
{
	cursor:pointer;
	background-color:white;
	margin:0px 0px 1px 0px;
	padding:2px 5px;
	/*background-color:white;*/
	background:url(../img/js-select/pop_up_bg.png);	
	width:auto;
	border-bottom:1px solid #e2e2e2;
}

.js-select-option.unselectable
{
	font-style:italic;
	font-size:10px;
	font-weight:bold;
}

.js-select-option.selected
{
	background-color:#FF0000;
	color:#FFFFFF;
}

.js-select-option.hover
{
	background-color:#FF9F9F;
}

/*
scrollbar styles
*/



.js-select-scrollbar
{
	display:none;
	position:absolute;
	float:left;
	margin-left:1px;
	width:18px;
	height:250px;
	background-color:white;
	right:3px;
}

.js-select-scrollbar-up
{
	position:absolute;
	display:block;
	top:1px;
	left:1px;
	width:16px;
	height:16px;
	background:url(../img/js-select/arrow-up-current.png) top left no-repeat;
}

.js-select-scrollbar-down
{
	position:absolute;
	bottom:1px;
	left:1px;
	display:block;
	width:16px;
	height:16px;
	background:url(../img/js-select/arrow-down-current.png) bottom left no-repeat;
}

.js-select-scrollbar-move
{
	position:absolute;
	top:18px;
	left:1px;
	display:block;
	width:16px;
	height:50px;
	background:url(../img/js-select/scroller.gif) top left no-repeat;
}


