@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1
 * @type		transitional
 * @browsers	Windows: IE5+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2008 Live Web Institute. All Rights Reserved.
 *
 * Module Classes: *.dir {} *.on {} *.open {} li.hover {} li.first {} li.last {}
 * Expected directory tag - li
 *
 */

@import "helper.css";
#nav {
	background: #4D4D4F;
	height: 40px;
	width: 1000px;
	border-bottom: 8px solid #FDB740;
	font-size: 14px;
}


/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */


ul.dropdown {
	font-weight: normal;
	line-height: 40px;
}

	ul.dropdown li {
	padding: 7px 10px;
	color: #FFF;
	border-right: 1px solid #FFF;
	line-height: 26px;
	background: #4d4d4f;
	}
	
	ul.dropdown li .last {
		border: none;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	color: #000;
	background: #CCC;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{
	color: #FFF;
	text-decoration: none;
}
	ul.dropdown a:hover		{ color: #000; }


	/* -- level mark -- */

	ul.dropdown ul {
	width: 175px;
	margin-top: 1px;
	}

		ul.dropdown ul li {
	font-weight: normal;
	line-height: 20px;
		}

