/* * * * Functionality Menu Code  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#nav * {
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index:1;
}	

#nav-wrapper {
	margin-bottom: 4px;
}

#nav  {
	height: 40px;
	line-height: 40px;
	margin-bottom: 5px;
}

#nav li {
	float: left; /* makes the list items sit side by side. note: if you try to get the list items to stack by unfloating the li elements, IE6+ leaves gaps */
	position: relative; /* positioning content for the nested ul (drop down) */
}

#nav a {
	display: block; /* no divider needed to the left of first list items */
}

/* * * * Customizable Menu Code  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


#nav ul {
	font-size: 1.17em; /* prevents inheritence */
}

#nav a {
	color:#fff;	/* sets the color of all menu types */
	text-decoration: none;
}
#nav a:hover,
.home #nav #nav-home a,
.contact #nav #nav-contact a,
.portfolio #nav #nav-portfolio a,
.services #nav #nav-services a,
.testimonials #nav #nav-testimonials a{
	text-decoration: underline;
}

#nav a span {
	display: block;
	padding: 0 15px; /* pads the link away from the list item on the first level */
}

