/*NAVIGATION STYLES*/

/*Applicable to all cells in navigation table*/
#navigation td	{
		text-align:center;
		font-variant:small-caps;
		padding-top:6px;
		padding-bottom:6px;
		vertical-align:middle;
		background-position:center;
		background-repeat:no-repeat;
}

/*Applicable only to active/rolled-over cells in navigation table*/
td.navBarActive	{
		width:195px;
		/*background-image: url(../images/navbg_active.jpg);*/
		cursor:pointer;
		}

/*Applicable only to other navigation option cells in navigation table*/
td.navBarInactive	{
		width:195px;
		/*background-image: url(../images/navbg_inactive.jpg);*/
		cursor:pointer;
		}


/*Navigation Links*/
a.navBarLink:link,
a.navBarLink:visited	{
		color:black;
		text-decoration:none;
}

a.navBarLink:hover	{
		color:red;
}

a.navBarLinkActive:link,
a.navBarLinkActive:visited	{
		color:#a82336;
		text-decoration:none;
}

a.navBarLinkActive:hover	{
		color:#a82336;
}

