#menu {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #000000;
	height: 30px;
	width: 750px;
	margin: auto;
}



#menu ul {
	list-style-type:none;
	margin:auto;
	
}

#menu li{
	float:left;
	position:relative;
	/*allows submenu items to stack properly vertically*/
	width:125px;
	background-color: #CC0000;
}

#menu li ul{
display:none;
/*hide every li in ul*/
position:absolute;
/*prevents submenu from affecting content down when displayed*/
}

#menu li:hover ul, #menu li.over ul{
display:block;
/*display submenu(ul) when user hovers over any list items(li)*/
}

#menu a{
	display:block;
	/*changing links to block level elements so you wont have to be exactly over text but over block and accessability needs to be addressed*/
	width:125px;
	/*needs width of links to be same as li now that its a block element*/
	color:#FFFFFF;
	text-decoration:none;
	font-size: 12px;
	line-height: 30px;
	
}


#menu a:hover{
background-color:#000000;
font-size: 12px;
line-height: 30px;
/*when hover over any link in menu see colour red*/
}

.mainbold {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-image: url(../images/tabbullet.jpg);
	background-repeat:no-repeat;
	height:30px;
	text-align: center;
	font-size: 12px;
	line-height: 30px;
	
}
.border {
	border: thin solid #FFFFFF;
	text-align: center;
	height: 25px;
}
#menuhugger {
	background-color: #000000;
	width: 800px;
}



.mainbold:hover {
		background-position: 0px -30px;
}
