
/* Begin Parent Button Settings */

	#nav, #nav ul { 
		background-color: #FFE4B9; /* Hexidecimal code for Button Color */
		border-top: 0px solid #E0C092; /* Border settings for buttons, should match below */
		float: left;
		list-style: none; 
		line-height: 1.5;
		margin: 0;
		padding: 0;
		width: 210px; /* Width of the buttons, each width below should match this */
	} 

	#nav a { 
		border-bottom: 1px solid #E0C092; /* Border settings, all three should match */
		border-left: 0px solid #E0C092;
		border-right: 0px solid #E0C092; 
		color: #1F5E67; /* Hexidecimal code for Font Color */
		display: block;
		font-family: verdana; /* Font face */
		font-size: 12pt; /* Font size */
		padding: 0.1px 0px;
		text-align: left;
		text-decoration: none; 
	} 

	#nav a:hover {
		color: #1F5E67; /* Hexidecimal code for Hovered Font Color */
	}	

/* End Parent Button Settings */

/* Begin Drop Down Button Settings */

	#nav li { 
		float: left;
		position: relative;
		width: 210px; /* Width of the button, each width below should match this */
	}

	#nav li ul { 
		background-color: #FFE4B9; /* Hexidecimal code for Button Color */
		border-top: 0px solid #E0C092; /* Border settings, should match below */
		left: -999em; 
		margin: -20px 0 0 210px; /* The last number should match the width */
		position: absolute; 
		width: 210px; /* Width of the drop down buttons */
	}

	#nav li ul li { 
		width:210px; /* Width of the drop down buttons */
		position: relative;	
	}

	#nav li ul li a {
		border-bottom: 1px solid #E0C092; /* Border settings, all three should match */
		border-left: 0px solid #E0C092;
		border-right: 0px solid #E0C092; 
		color: #1F5E67; /* Hexidecimal code for Font Color */
		font-family: verdana; /* Font face */
		font-size: 12pt; /* Font size */
		text-align: left;
		text-decoration: none;
		text-indent: 3px;
	}

	#nav li ul li a:hover {
		color: #1F5E67; /* Hexidecimal code for Hovered Font Color */
	}

	#nav li:hover, #nav li.sfhover {
		background: #FFE4B9; /* Hexidecimal code for Hovered Button Color */
	}

/* End Drop Down Button Settings */

	#nav li:hover ul { 
		left: 210px; 
		top: .01em;
	}

	#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: 210px; 
	}