
/* Begin Parent Button Settings */

	#nav, #nav ul { 
		background-color: #EFEEE9; /* Hexidecimal code for Button Color */
		border-top: 0px solid black; /* Border settings, should match below */
		float: left;
		list-style: none; 
		line-height: 1.5;
		margin: 0;
		padding: 0;
	} 


	#nav a { 
		border-bottom: 0px solid black; /* Border settings, all three should match */
		border-left: 0px solid black;
		border-right: 0px solid black; 
		color: #494949; /* Hexidecimal code for Font Color */
		display: block;
		text-align: center;
		text-decoration: none;
		font-family: arial; /* Font face */
		font-size: 12px; /* Font size */
		padding: 0px;
	} 

	#nav a:hover {
		color: #494949; /* Hexidecimal code for Hovered Font Color */
	}

/* End Parent Button Settings */

/* Begin Drop Down Button Settings */

	#nav li { 
		float: left; 
		 /* Width of the button, each width below should match this */
	}

	#nav li ul { 
		background-color: #020A0D; /* Hexidecimal code for Button Color */
		border-top: 1px solid white; /* Border settings, should match below */
		left: -999em; 
		position: absolute; 
		width: 180px; /* Width of the drop down buttons */
		margin-left:5px;
	} 

	#nav li ul li { 
		width:180px; /* Width of the drop down buttons */
	}

	#nav li ul li a {
		border-bottom: 1px solid white; /* Border settings, all three should match */
		border-left: 1px solid white;
		border-right: 1px solid white; 
		color: #ffffff; /* Hexidecimal code for Font Color */
		font-family: verdana; /* Font face */
		font-size: 11px; /* Font size */
		text-align: left;
		text-decoration: none;
		text-indent: 3px;  
	}

	#nav li ul li a:hover {
		color: #00AEE8; /* Hexidecimal code for Hovered Font Color */
	}

	#nav li ul ul { 
		margin: -22px 0 0 180px; /* The last number should match the width */
	} 

	#nav li:hover, #nav li.sfhover {
/* Hexidecimal code for hovered Button Color */
	}

/* End Drop Down Button Settings */

	#nav li:hover ul { 
		left: auto; 
	}

	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul { 
		left: -999em; 
	}

	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, 
	#nav li li li.sfhover ul{ 
		left: auto; 
	}
