/* CSS Document */
	#dropbox{
		height:30px;
		width:50px;
		border:#666666 1px solid;
		z-index:1;
		background-color:#000000;
	}
	
	.downarrow{
		width:18px;
		background-color:#CCCCCC;
		background-image:url(../ecommerce/images/dnarr.gif)
		background-position:center;
		background-repeat:no-repeat;
		z-index:2;
		border-color:#EEEEEE #666666 #666666 #EEEEEE;
		border-style:solid;
		border-width:1px;
		cursor:pointer;
		float:right;
	}
	.downarrow:active{
		background-color:#eeeeee;
	}
	.downarrow:hover{
		background-color:#dddddd;
	}

	.optholder{
		height:30px;
		float:left;
	}
	.optholder:hover{
		opacity: 0.5;
		filter: alpha(opacity=50); 
	}
	.optbox{
		height:100px;
		/*overflow:auto;*/
		z-index:3;
		position:relative;
		display:none;
		overflow-x:none;
		overflow-y:scroll;
		background-color:#FFFFFF;
		border:#000000 1px solid;
	}
	
	.option{
		float:left;
		cursor:pointer;
	}


