/* General Page definitions */
body
  {
	margin:0;
	font-family: Arial;
	background-color: #FFFFFF;
	color: #000000;
	border-color: #FFFFFF;
  }
a:link {
	color: #000099;
	text-decoration: none;
}
a:visited {
	color: #000099;
	text-decoration: none;
}
a:hover {
	color: #000099;
	text-decoration: underline;
}
a:active {
	color: #000099;
	text-decoration: none;
}
.container {
	height: 100%;
	width: 100%;
}


/* Defining Menu Area */
.menuArea
{
	background-color: #FF0000;
	width: 188px;
	border-right: double #FFFFFF;
	margin: 0;
	text-align: center;
}

/* Menu Definitions */
/* Defines the settings for the whole menu */
ul#menuFormat
{
	width: 188px;
	margin-left: 0px;
	margin-top: -3px;
	padding: 0;
	text-align: center;
}

/* Forces list to diplay across page*/
ul#menuFormat li
{
	display: inline;
	padding: 0;
	width: 188px;
	text-align: center;
}

/*Defines menu properties*/
ul#menuFormat li a
{
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 0;
	padding-right: 0px;
	float: left;
	width: 188px;
	background-color: #FF0000;
	text-decoration: none;
	color: white;
	font-weight: bolder;
	border-bottom: solid 1px #FFFFFF;
	text-align: center;

}

/*Changes button colour on mouseOver*/
ul#menuFormat li a:hover
{
	background-color: #FFFFFF;
	color: red;
	text-align: center;
}

