/* LINKS BACKGROUND */

#navcontainer
{
	background: #DBD6D2;
	margin: 0 auto;
	font-family: "Century Gothic", "Trebuchet MS", Arial, sans-serif;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	width: 100%;
	height: auto;
}

/* to stretch the container div to contain floated list */
#navcontainer:after
{
content: ".";
display: block;
line-height: 1px;
font-size: 1px;
clear: both;
}

/* UNORDERED LIST APPEARANCE */
ul#navlist
{
	list-style: none;
	padding: 0;
	width: 70%;
	margin: 0px;
	position: relative;
	font-size: 0.8em;
	display: inline;
	float: right;
	z-index: 100;
}
ul#navlist li
{
display: block;
float: left;
width: 15%; /* margin width */
margin: 0;
padding: 0;
text-align: center;
}


ul#navlist li a
{
display: block;
width: 100%;
padding: 0.2em;
border-width: 1px;
border-color: #FFFFFB #aaab9c #97897D #fff;
border-style: solid;
color: #777;
text-decoration: none;
background: #ECEAE8;
font-family: trebuchet, arial, sans-serif;
}

#navcontainer>ul#navlist li a { width: auto; }

ul#navlist li#active a
{
background: #DBD6D2;
color: #800000;
}


ul#navlist li a:hover, ul#navlist li#active a:hover
{
color: #800000;
background: #DBD6D2;
border-color: #aaab9c #fff #fff #ccc;
}

