/* -----------------------------------------------------------------------------------------------
 This template contains all of the styles to be used within WM2 and will be the foundation for designing new sites for JMU 
 
version:	1.0
author:		Paul Shearman
email:		shearmpj@jmu.edu
website:	http://www.jmu.edu
------------------------------------------------------------------------------------------------- */

/* The structure of this document is as follows:
	~ Header styles - including primary navigation
	
	~ Style headings are preceeded with = (i.e. =Global styles)
	~ Things that need attention are labeled with :TODO
	~ Workarounds are explained with :KLUDGE
	~ Bugs are identifies with :BUG
	
--------------------------------------------------------------------------------------------------- */

/* =Header Styles
---------------------------------------------------------------------------------- */

#header
{
	position: relative;
	height: 16px;
	background-color: #450084;
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 3px solid #cc9;
} /* header -- contains the site ID and horzontal navigation */

#header h1 {
	margin: 0;
	padding: 0;
	text-indent: -9000px;
	height: 50px;
	}

#horzNav {
	width: 100%;
	text-align: center;
	margin: -49px 0 0 0;
	padding: 0;
	font-weight: bold;
	} /* This is the site's primary navigation - currently labeled #horzNav */

#horzNav li {
	display: inline;
	list-style-type: none;
	}

#horzNav li a {
	padding: 4px 12px 0 12px;
	color: #c2a14d;
	text-decoration: none;
	}
	
#horzNav li a:hover {
	color: #cc9;
	text-decoration: underline;
	}

li#active {
	background-color: #cc9;
	}
	
#horzNav li#active a:link, #horzNav li#active a:hover, #horzNav li#active a:active, #horzNav li#active a:visited
	{
	color: #450084;
	text-decoration: none;
	}
