﻿div.ordererContainer {
	width:154px;
	border:1px #BBBBBB solid;
	
	position:relative;
	line-height:20px;
	font-size:12px;
	color:#FFFFFF;
	-moz-user-select: none;/*mozilla browsers */
	-khtml-user-select: none;/*webkit browsers*/
}
div.ordererElement {
	width:140px;
	height:20px; /*height affects elemHeight property in the .js file*/
	border:1px #BBBBBB solid; /*border width affects elemHeight property in the .js file*/
	padding:0px 3px; /*vertical padding affects elemHeight property in the .js file*/
	cursor:pointer;
	position:absolute;
	top:3px;
	left:3px;
	background-color: #8D1E30;
	-moz-user-select: none;/*mozilla browsers */
	-khtml-user-select: none;/*webkit browsers*/
}
div.ordererElementHover {
	width:140px;
	height:20px;
	border:1px #BBBBBB solid;
	padding:0px 3px;
	cursor:pointer;
	position:absolute;
	top:3px;
	left:3px;
	background-color: #6F1E2B;
	-moz-user-select: none;/*mozilla browsers */
	-khtml-user-select: none;/*webkit browsers*/
}
div.ordererElement:hover {
	background-color:#352C66;
}