﻿/* CSS Navigation Layout */

#body_home #nav_home a,
		#body_design #nav_design a,
		#body_hosting #nav_hosting a,
		#body_contact #nav_contact a {
	background-position: -256px 0; /* shift right two positions to active tab */
	color: #000;
}

#nav {
	list-style-type: none;
	margin: 41px 0 0 0;
	padding: 0;
	height: 32px;
	width: 516px;
	float: left;
	font: normal normal bold small/1.4 "Lucida Grande", Tahoma, sans-serif;
}

#nav li {
	margin: 0;
	padding: 0;
	float: left;
}

#nav a {
	background: url('images/tab.png') no-repeat;
	float: left;
	width: 128px;
	text-align: center;
	color: #FFF;
	text-decoration: none;
	line-height: 2.5;
	border-right: 1px #007D00 solid;
	height: 32px;
}

#nav a:hover {
	background-position: -128px 0; /* shift right one position to hover tab */
}

