
/* Begin Parent Button Settings */

	#nav1, #nav1 ul { 
		background-color: #FFFFFF; /* 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;
	} 

	#nav1 a { 
		border-bottom: 0px solid black; /* Border settings, all three should match */
		border-left: 0px solid black;
		border-right: 0px solid black; 
		color: #b87647; /* Hexidecimal code for Font Color */
		display: block;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		font-family: verdana; /* Font face */
		font-size: 10px; /* Font size */
		padding: 1px 0px;
	} 

	#nav1 a:hover {
		color: #513b31; /* Hexidecimal code for Hovered Font Color */
	}

/* End Parent Button Settings */

/* Begin Drop Down Button Settings */

	#nav1 li { 
		float: left; 
		width: 120px; /* Width of the button, each width below should match this */
	}

	#nav1 li ul { 
		background-color: #FFFFFF; /* Hexidecimal code for Button Color */
		border-top: 1px solid #b87647; /* Border settings, should match below */
		left: -999em; 
		position: absolute; 
		width: 120px; /* Width of the drop down buttons */
	} 

	#nav1 li ul li { 
		width:120px; /* Width of the drop down buttons */
	}

	#nav1 li ul li a {
		border-bottom: 1px solid #b87647; /* Border settings, all three should match */
		border-left: 1px solid #b87647;
		border-right: 1px solid #b87647; 
		color: #b87647; /* Hexidecimal code for Font Color */
		font-family: verdana; /* Font face */
		font-size: 10px; /* Font size */
		text-align: left;
		text-transform: uppercase;
		text-decoration: none;
		text-indent: 3px;  
	}

	#nav1 li ul li a:hover {
		color: #513b31; /* Hexidecimal code for Hovered Font Color */
	}

	#nav1 li ul ul { 
		margin: -22px 0 0 120px; /* The last number should match the width */
	} 

	#nav1 li:hover, #nav1 li.sfhover {
		background: #FFFFFF; /* Hexidecimal code for hovered Button Color */
	}

/* End Drop Down Button Settings */

	#nav1 li:hover ul { 
		left: auto; 
	}

	#nav1 li:hover ul ul, #nav1 li:hover ul ul ul, #nav1 li.sfhover ul ul, #nav1 li.sfhover ul ul ul { 
		left: -999em; 
	}

	#nav1 li:hover ul, #nav1 li li:hover ul, #nav1 li li li:hover ul, #nav1 li.sfhover ul, #nav1 li li.sfhover ul, 
	#nav1 li li li.sfhover ul{ 
		left: auto; 
	}