/* The postal code dropdowns */
.suggestions {
	position: absolute;
	background-color: #FFFFFF;
	width: 250px;
	display: none;
	z-index: 5;
	top: 0px;
	left: 0px;
	border-top: 1px solid black;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
	border-left: 1px solid black;
}
.suggestionSelected {
	position:relative;
	top: 0px;
	left: 0px;
	text-indent: 5px;
	width: 100%;
	z-index: 5;
	background-color: #000066;
	color: #FFFFFF;
	cursor: default;
}
.suggestionNotSelected {
	position:relative;
	top: 0px;
	left: 0px;
	text-indent: 5px;
	width: 100%;
	z-index: 5;
	cursor: default;
}
.holder {
	position: relative;
	/*width: 280px;*/
	/*display: none;*/
}

/* Form errors  */
.inputerror  {
	font-size: 12px;
	border: 1px solid #FF0000;
	background-color:#FFFFFF;
}