* {
	margin: 0;
	padding: 0;
	/*border: 1px solid red;*/
}

body {
	font-family: Arial;
	font-size: 80%;
}

a:link, a:visited {
	text-decoration: none;
	color: #FFFFFF;
}

a:hover, a:active, a:focus {
	text-decoration: underline;
}

p {
	font-size: 0.9em;
}


/*------------------------------------------------------------------------------
- reusable buttons
------------------------------------------------------------------------------*/

.red-button {
	background: url(../images/red-button.png) no-repeat;
	width: 163px;
	height: 24px;
	text-align: center;
	font-size: 0.8em;
	text-transform: uppercase; 
	margin-bottom: 10px;
}

	* html .red-button {
		padding-top: 5px;
		height: 21px;
	}
	
	*+html .red-button {
		padding-top: 5px;
		height: 21px;
	}

	.red-button a {
	  font-size: 0.8em;
	}	
	
.white-button {
	background: url(../images/white-button.png) no-repeat;
	width: 163px;
	height: 24px;
  text-align: center;
  font-size: 0.8em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
	* html .white-button {
		padding-top: 5px;
		height: 21px;
	}
	
	*+html .white-button {
		padding-top: 5px;
		height: 21px;
	}
	
	.white-button a:link,
	.white-button a:active,
	.white-button a:focus,
	.white-button a:visited {
	  font-size: 0.8em;
	  color: #000000;
	}

/* form errors */	

ul.errors {
	list-style: none;
	margin-bottom: 20px;
}
	
	ul.errors li {
		background: url(../images/form/delete.png) no-repeat;
		margin-bottom: 5px;
		padding-left: 20px;
		font-weight: bold;
	}

.message p {
	font-weight: bold;
	padding-left: 20px;
	background: url(../images/form/tick.png) no-repeat;
}
	
