body {
	font: normal 12px optima;
	}

ul {}

/* CODING FOR THE NAVIGATIONAL MENU */

#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 160px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

 ul li.button {
	position: relative;
	font-family: arial;
	font-size: 1em
	}
	
 li.button ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 159px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	list-style: none;
	width: 160px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	z-index: 100;
	}

/* Styles for Menu Items */
 ul li.button a {
	display: block;
	text-decoration: none;
	color: #fff;
	background: steelblue; /* IE6 Bug */
	padding: 5px;
	border: 1px solid lightsteelblue;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li.button { float: left; height: 1%; }
* html ul li.button a { height: 1%; }
/* End */

 ul li.button a:hover { color: #fff; background: #999933; font-weight: bold; } /* Hover Styles */

 ul li.button ul li a:hover {color: black; background: khaki; font-weight: bold;}
		
 li.button ul li a { color: black; background: darkkhaki; border: 1px solid #fff; border-bottom: 0; padding: 5px; } /* Sub Menu Styles */
		
 li.button:hover ul, li.over ul { display: block; } /* The magic */
 

/* CONDING FOR THE FOOTER SECTION */
 
/* Sets the appearance of text in paragraphs inside the footer */
#footer p {
	font-size: 12px;
	font-family: Optima, Arial, Helvetica, sans-serif;
	color: #303030;
	}

/* Sets the appearance of link text and cursor when link is in hover state */
#footer a {
	font-size: 12px;
	font-family: Optima, Arial, Helvetica, sans-serif;
	/*text-decoration: none;*/
	cursor: pointer;
	}

/* Sets appearance of links */
#footer a:link { /* unvisited state */
	color: steelblue;
	}
	
#footer a:visited { /* links in visited state */
	  color: dimgray;
	}

#footer a:hover { /* link in mouse over state */
	  color: chocolate;
	}

#footer a:active { /* link in active state */
	  color: dimgray;
	}
	
/* Featured Link in Footer */
#footer a.featured
{border: 1px solid peru; border-bottom: 2px solid #800000; text-decoration: none; padding: 2px;font-weight:bold;}

#footer a.featured:hover
{color:chocolate;}

/* CODING FOR THE MENU IN THE FOOTER SECTION */

/* Defines basic nav bar properties. */
#footer div.footerMenu {
  	position: relative;
  	top: 1px;
	margin-left: auto;
	margin-right: auto;
    background: none;
	padding: 1px 10px 3px 10px;
  	text-align: center;
  	border-top: gainsboro solid 1px;
	}

/* Button properties (button simulation) */
#footer div.footerMenu a.footerButton,
#footer div.footerMenu a.footerButton2 {
	border-left: 1px solid lightblue;
	border-top: 1px solid gainsboro;
	border-bottom: 0 solid white;
	white-space: nowrap;
	left: 0px;
	padding: 1px 10px 3px 10px;
	position: relative;
	top: 0px;
	font-weight: normal;
	z-index: 0;
	background-image: none;
	background-repeat: no-repeat;
	text-decoration: none;
	}
	
#footer div.footerMenu a.footerButton {
	border-right: 1px solid white;
}
#footer div.footerMenu a.footerButton2 {
	border-right: 1px solid gainsboro;
}

/*  Defines appearance of buttons in mouse over state */
#footer div.footerMenu a.footerButton:hover, 
#footer div.footerMenu a.footerButton2:hover  {
	background-color: aliceblue;
	color: chocolate;
	text-decoration: none;
	}

/*  Defines appearance of buttons in active states */
#footer div.footerMenu a.footerButton:active,
#footer div.footerMenu a.footerButton2:active {
	color: dimgray;}

/* END OF FOOTER CODING */
