@charset "UTF-8";

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


/*-------------------------------------------------/
 * @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;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	padding-left: 20px;
}

ul.dropdown li {
	background-color: transparent;
	color: #FFF;
	padding-top: 9px;
	padding-right: 18px;
	padding-left: 18px;
	font-size: 14px;
	padding-bottom: 9px;
}

ul.dropdown li.hover,
ul.dropdown li:hover {
	background-color: #4c0f1e;
}

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


	/* -- level mark -- */

ul.dropdown ul {
	width: 150px;
	margin-top: -1px;
	background-color: #842b41;
}
	
ul.dropdown ul li {
	font-weight: normal;
	font-size: 12px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

ul.dropdown li.selected /* -- this controls the primary and secondary li link SELECTED ON state -- */ {
	background-color: #4c0f1e;
}
	
ul.dropdown li.selected a /* -- this controls the primary a link SELECTED ON state -- */ {
	color: #FFF;
}

ul.dropdown li.selected ul li a /* -- this controls the secondary a link Off state -- */ {
	color: #FFF;
}


ul.dropdown li.selected ul li.selected a /* -- this controls the secondary li link SELECTED ON state -- */ {
	color: #FFF;
}

ul.dropdown li.selected ul li a:hover /* -- this controls the secondary a link HOVER ON state -- */ {
	color: #999;
}

/* --
ul.dropdown li.selected a,
ul.dropdown li a:hover {
	color: #ff871f;
}
-- */