/*Global CSS*/

body
{
	margin:0px;
	width:100%;
	background-color:#000000;
	color:#EEEEEE;
	font-family:"Bitstream Sera Vans", Arial, "Times New Roman";
}


/*Header*/

#header
{
	height:150px;
	background-image: url(/images/header_bg.png);
	background-repeat: repeat-x;
	border:#2D2D2D solid thin;
}

.logo
{
	margin-top:30px;
	margin-left:25px;
}

.logoDiagram
{
	position:absolute;
	top:2px;
	right:30px;
	width:164px;
	height:148px;
}

/*END Header*/

/*Begin Navigation*/


/*
**********************Change can be made here***********************
If content ever exceeds the height of the Navigation side bar increase the height of the below element
to fit the newly added content
*/

#navContainer
{
	width:200px;
	/*Make this number bigger*/
	height:1000px;
	
	background-color:#232323;
	border-right:#699904 solid 10px;
	float:left;
}

a.nav
{
	width:160px;
	height:30px;
	display:block;
	margin-top:5px;
	margin-left:12px;
	padding-top:12px;
	padding-left:15px;
}
	

a.nav:link, a.nav:visited
{
	color:#EEEEEE;
	text-decoration:none;
	font-family: "Bitstream Vera Sans", Arial, "Times New Roman";
	background-color:#363A36;
}

 a.nav:hover, a.nav:active
{
	color:#EEEEEE;
	text-decoration:none;
	font-family: "Bitstream Vera Sans", Arial, "Times New Roman";
	background-color:#475047;
}

/*Current Page Nav*/
#currentPage
{
	background-color:#7CB605 !important;
}
	
/*Designer info*/
#navContainer p
{
	color:#585858;
	font-size:small;
	padding:10px;
	
}

/*END Navigation*/

a:link, a:visited
{
	color:#EEEEEE;
}

a:hover, a:active
{
	color:#7CB605;
}

a img
{
	border:none;
}

/*Back Button*/
.backButton
{
	margin-left:200px;
}

