@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		https://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
 *
 */


/*-------------------------------------------------/
 * @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: bold;
	color: #000;
	text-decoration: none;
}
/*----Edited for background color -gray ---LN
I think most is overridden in ultimate css---LN*/
	ul.dropdown li {
	padding: 7px 10px;
	border-style: solid solid dotted;
	border-width: 1px 3px 1px 0;
	border-color: #fff #FFF #000 #d9d9d9;
	background-color: #000000;
	}

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

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


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 155px;
	 margin-top: 1px;
/*	 background-color: #CEE0C4;*/
	}
/*----why insn't the color working on the ul li items? the font-weight is ----*/
		ul.dropdown ul li {
		 font-weight: normal;
		 color: #000;
		}


/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 * LN- I removed this styling from html, don't want arrow pointing down
 */


ul.dropdown *.dir {
 padding-right: 20px;
 background-image: url(images/nav-arrow-down.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url(images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}
