﻿/* 			REX Blind Parties Web Site - CSS Master File 				*/
/* 																		*/
/* 	Version 001	- 22/06/10												*/
/*	Version 002 - 08/08/10 - Eliminate "height" on all objects and use max-height	*/
/*	Version 003a- 10/08/10 - To get the "Links" page showing links in navy bluue	*/
/*	Version 003b- 12/11/10 - To change all nevy to black for testing				*/
/* 																						*/
/*																					*/
/*																					*/

body {
	background-color:#FFFFFF; 				/* white  - background behindn container*/
	font-family:Arial, Helvetic, sans-serif;/*need to make final decision on fonts */
	text-align: center; 					/* from design - to accomodate IE browsers */
	/* color:#000066; 							/*navy - all text on the website defaults to navy*/
	color:#000000; 							/*black - all text on the website default*/
	}

body h2 { 
	font-size:20px; /* MOD TO DESIGN - a height for H2 text */
}

body a {
	/* color:#000066;	/* Links retain website navy colour */
	color:#000000;	/* Links retain website black colour */
	}

#container {
	width: 960px; 				/* RBP MOD DESIGN - See width calculation */
	margin-right:  auto; 		/* Design - to centre container in browser window */
	margin-left: auto; 			/*               DITTO                              */
	text-align: left;  			/* Design - to override text align centre in the body section */
	background-color:#FFFF66;	/* RBP - yellow - default for all background*/
	padding: 25px; 				/* Swaign - buffer between text and edge of container */
	min-height: 450px;
	}

#header { 
		/* background-color:#000066; 	/* RBP Design - header test dark yellow */
		background-color:#000000; 	/* RBP Design - header test dark yellow */
		color:#FFFF66; 				/* RBP Design - header background dark blue */
		text-align: center;
		font-size: 50px;
		font-weight:bolder;
		height: 55px;
		padding: 5px 5px 5px 5px;
	}

#content { 
	padding: 5px;
	}

#widemenu {
	margin-bottom: 5px;
	height: 25px;
	}

#widemenu ul {
	margin: 0px;
	padding: 0px;
	}

#widemenu ul li {
	float: left;
	list-style-type: none;
	padding: 0px 30px 5px 5px;
	font-size: 22px;
	}

#widemenu ul li a {
	/* color:#000066;	/* navy - link colours aare nevy whether they have been visited or not*/
	color:#000000;	/* black - link colours are defalt whether they have been visited or not*/
	text-decoration: none; /* to assure not unerline on link text */
	}

#widemenu ul li a:hover {
	color: #FFFF66; /* RBP Design - hover for menu items - yellow */
	/* background-color:#000066; /* RBP Design - hover background for menu items navy */
	background-color:#000000; /* RBP Design - hover background for menu items navy */	
	}