/*
CSS Set up for Candidate DB
*/

/*
Change the background image and set the margins.
*/

body {

background-image: 		url("gryl029.jpg"); 
background-attachment: 		fixed;

margin: 			0px;

}

/*
Change the default text settings to black and size 14
and one where colour is blue, another purple and
another red
*/

body, table {

font-size:			14pt;
color:				black;

}


.warning {

color:				red;

}


.inactive {

color:				black;
background-color:		#00FFFF;
}



.rollover {

color:				blue;
text-decoration:		underline;

}


.secret {

color:				red;
background-color:		#1E90FF;
}


.test {

color:				red;

}





/*
Change the default colour settings for the links so all remain blue and underlined and text size is 14.
*/

a:link {			color: blue;
				text-decoration: underline }
a:active {			color: blue;
				text-decoration: underline }
a:visited {			color: blue;
				text-decoration: underline }
a:hover {			color: blue;
				text-decoration: none }

