
/* Begin Parent Button Settings */

	#nav, #nav ul { 
		background-color: #CBBD8C; /* 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: #0F3274; /* Hexidecimal code for Font Color */
		display: block;
		text-align: center;
		text-decoration: none;
		font-family: arial; /* Font face */
		font-size: 12px; /* Font size */
		padding: 1px 0px;
	} 

	#nav a:hover {
		color: #0F3274; /* Hexidecimal code for Hovered Font Color */
	}

/* End Parent Button Settings */

/* Begin Drop Down Button Settings */

	#nav li { 
		float: left; 
		width: 110px; /* Width of the button, each width below should match this */
	}

	#nav li ul { 
		background-color: #CBBD8C; /* Hexidecimal code for Button Color */
		border-top: 1px solid black; /* Border settings, should match below */
		left: -999em; 
		position: absolute; 
		width: 110px; /* Width of the drop down buttons */
	} 

	#nav li ul li { 
		width:110px; /* Width of the drop down buttons */
	}

	#nav li ul li a {
		border-bottom: 1px solid black; /* Border settings, all three should match */
		border-left: 1px solid black;
		border-right: 1px solid black; 
		color: #494949; /* Hexidecimal code for Font Color */
		font-family: arial; /* Font face */
		font-size: 12px; /* Font size */
		text-align: left;
		text-decoration: none;
		text-indent: 3px;  
	}

	#nav li ul li a:hover {
		color: #0F3274; /* Hexidecimal code for Hovered Font Color */
	}

	#nav li ul ul { 
		margin: -22px 0 0 110px; /* The last number should match the width */
	} 

	#nav li:hover, #nav li.sfhover {
		background: #CBBD8C; /* 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; 
	}

	#nav li ul li a.parent {
		background: url(rightarrow.gif) center right no-repeat; /* This can be deleted */
	}
