/*

Brian K. James Dot Com • Version 3.0
CSS File: nav.css

This file is for SITE NAVIGATION ONLY.
Decoration of the pages to this site
are found in page.css.

*/

/* **********************************
	  MAIN SITE NAVIGATION CODE
   **********************************
*/


#nav {
	text-align: center;
}

#nav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#nav ul li {
	display: inline;
}

#nav ul li a, #nav a:visited {
	font-family: "News Gothic MT", Arial, sans-serif;
	font-size: 12px;
	width: 100%;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: #074c98;
}

#nav ul li a:hover {
	color: white;
}

#nav ul li a:active {
	color: #00FF00;
}

/* **********************************
		SIDE NAVIGATION CODE
   **********************************
*/

#sideNav {
	float: left;
	display: block;
	width: 180px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	background-color: white;
}

#sideNav ul { 
	padding: 0px;
}

#sideNav ul li {
	font-size: 12px;
	list-style-type: none;
	padding: 0.5em 0.5em;
}

#sideNav ul li a, #sideNav a:visited {
	padding: inherit;
	text-decoration: none;
	color: #787878;
}

#sideNav a:hover {
	background-color: #81BEF3;
	color: white;
}

#sideNav a:active {
	background-color: #244D84;
	color: white;
}


/* **********************************
	  FOOTER NAVIGATION CODE
   **********************************
*/


#footer {
	text-align: center;
}

#footer ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#footer ul li {
	display: inline;
}

#footer ul li a, #footer a:visited {
	font-family: "News Gothic MT", Arial, sans-serif;
	font-size: 10px;
	width: 100%;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: #074c98;
}

#footer ul li a:hover {
	color: white;
}

#footer ul li a:active {
	color: blue;
}

