/*================================================================
NAV stylesheet for the website.

Define all aspects (layout AND typography) of:
  - Nav (ul)
  - Nav List Items (li)
  - Nav Links
  - Current Page Definitions
  
================================================================*/


/* NAV (ul)
----------------------------------------------------------------*/
#nav ul 
{
    list-style: none;
	display: block;
	background: #ffe2bf;
	margin: 0;
	padding: 0;
}


/* NAV LIST ITEMS (li)
----------------------------------------------------------------*/
#nav li 
{
	width: 130px;
	margin: 0;
	padding: 0;
    display: block;
    float: left;
    position: relative;
    background-color: #ffe2bf;
}


/* NAV LINKS
----------------------------------------------------------------*/
#nav a:link, 
#nav a:visited 
{ 
    display: block;
	height: 20px;
	font-weight: bold;
	font-size: 13px;
	padding: 3px 5px 0 5px;
	color: #45618b;
	text-decoration: none;
	text-align: center;
	border-right: 1px solid #999999;
}

#nav a:hover 
{
  background: #EEE;
  text-decoration: none;
  border-bottom: none;
}
  

