/***** 
	This CSS file is specifically for the site navigation.
*****/

/****** LINK CONTAINER STYLES *****/
#siteNavLeft
{
   	float: left;
	width: 500px;
	height:40px;
	font-size: 1.5em;
	text-align: left;
	padding: 2px 0px 0px 20px;
	overflow: hidden;
	border: solid;			/* for testing */
	border-width: 0px;		/* for testing */
	border-color: yellow;	/* for testing */
}

#siteNavMiddle
{
   	float: left;
	width: 200px;
	height:40px;
	font-size: 1.5em;
	color:  red;
	font-weight: bold;
	text-align: center;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
	border: solid;			/* for testing */
	border-width: 0px;		/* for testing */
	border-color: yellow;	/* for testing */
}

#siteNavRight
{
   	float: right;
	width: 250px;
	height:40px;
	font-size: 1.5em;
	text-align: right;
	padding: 2px 20px 0px 0px;
	overflow: hidden;
	border: solid;			/* for testing */
	border-width: 0px;		/* for testing */
	border-color: yellow;	/* for testing */
}

#siteNavPadding
{
	padding: 5px 5px 5px 5px;
}


/****** LINK STYLES *****/
a.siteNav:link
{
	color: #2D0800;
	text-decoration: none;
}

a.siteNav:visited
{
	color: #2D0800;
	text-decoration: none;
}

a.siteNav:hover
{
	color: #ffffff;
	text-decoration: none;
}

a.siteNav:active
{
	color: #2D0800;
	text-decoration: none;
}   