
/* Begin Parent Button Settings */

	#nav, #nav ul { 
		background-color: transparent; /* 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: #000000; /* Hexidecimal code for Font Color */
		display: block;
		text-align: center;
		text-decoration: none;
		font-family: Verdana;
                font-weight: bold; /* Font face */
		font-size: 12px; /* Font size */
		padding: 3px 0px;
	} 

	#nav a:hover {
		color: #2269B1; /* Hexidecimal code for Hovered Font Color */
	}

/* End Parent Button Settings */

/* Begin Drop Down Button Settings */

	#nav li { 
		float: left; 
		width: 142px; /* Width of the button, each width below should match this */
	}

	#nav li ul { 
		background-color: #D8D9DB; /* Hexidecimal code for Button Color */
		border-top: 1px solid black; /* Border settings, should match below */
		left: -999em; 
		position: absolute; 
		width: 142px; /* Width of the drop down buttons */
	} 

	#nav li ul li { 
		width: 142px; /* 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: #000000; /* Hexidecimal code for Font Color */
		font-family: Verdana; /* Font face */
		font-size: 12px; /* Font size */
		text-align: left;
		text-decoration: none;
		text-indent: 3px;  
	}

	#nav li ul li a:hover {
		color: #2269B1;
                font-weight: bold; /* Hexidecimal code for Hovered Font Color */
	}

	#nav li ul ul { 
		margin: -22px 0 0 142px; /* The last number should match the width */
	} 

	#nav li:hover, #nav li.sfhover {
		background: transparent; /* 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; 
	}

