@charset "UTF-8";
/* CSS Document */

/* --------------
* Filename: navigation.css
* Version: 1.0.0 (2008-04-02)
* Website: www.andrewspartners.com.au
* Author: Ari Rizos
* Description: Handles the navigation links, normal and hover states
*/


#navbar ul {
	margin: 0;
	padding: 0;
}

/* Changes the vertical navbar into a harizontal navigation bar */
#navbar li {
	float:left;
	text-decoration:none;
	list-style:none;
}

#navbar a {
	text-decoration:none;
	display:block;
	float: left;
	text-indent:-9000px; /* Hides the Floating Navigation Text */ 
}

#navbar #about {
	background-image:url(../images/btn-about.gif);
	background-position:0 0;
	background-repeat:no-repeat;
	width: 84px;
	height: 50px;
}
#navbar #about:hover {
	background-position:0 -50px;
}

#navbar #services {
	background-image:url(../images/btn-services.gif);
	background-position:0 0;
	background-repeat:no-repeat;
	width: 78px;
	height: 50px;
}
#navbar #services:hover {
	background-position:0 -50px;
}


#navbar #checklists {
	background-image:url(../images/btn-checklist.gif);
	background-position:0 0;
	background-repeat:no-repeat;
	width: 81px;
	height: 50px;
}
#navbar #checklists:hover {
	background-position:0 -50px;
}


#navbar #newsarticles {
	background-image:url(../images/btn-news.gif);
	background-position:0 0;
	background-repeat:no-repeat;
	width: 117px;
	height: 50px;
}
#navbar #newsarticles:hover {
	background-position:0 -50px;
}

#navbar #contact {
	background-image:url(../images/btn-contact.gif);
	background-position:0 0;
	background-repeat:no-repeat;
	width: 89px;
	height: 50px;
}
#navbar #contact:hover {
	background-position:0 -50px;
}