
/*Div that wraps tabs*/
#header {
	position: relative;
	width: 100%;
	height: 30px;
	width: 650px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
    margin-top: -2px; /* how close to the title do we get */
}

ul#primary {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -1px; /* lowers tabs */
	width: 650px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
    /*border-bottom: solid 1px #777777;*/
}

/* Applied to all tabs */
#header ul#primary li  {
	display: inline;
	list-style: none;
}

/* Applied to Links*/
#header ul#primary a{
	width: 5.5em;
	display: block;
	float: left;
	padding: 4px 0px 4px 0px; /* was 4px 0 */
	text-align: center;
	text-decoration: none;
	color: #333; /* Text colour of all */
	background-color: #ffffff;
	border: 1px solid #aaaaaa;
	border-bottom: none;
	margin: 0px 2px 0px 0px; 
}

/* Hover over tabs */ /* Can ignore for current probs */
#header ul#primary a:hover {
	margin-top: 0;
	background: #d0d0d0;
	border-color: #777777;
	padding-bottom: 4px; /* Should be same as (*1) */
	text-decoration:underline;
}

/* Selected Tab */
#header ul#primary .SelectedTab a 
{
    font-weight:bold;
    background-color:#d0d0d0;
    border-color: #777777;
    padding-bottom:5px;
}


