@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";*/


/*-------------------------------------------------/
 * @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 {
 margin: 0;
 background-color: #4A682C;
 width: 800px;
}

	ul.dropdown li {
	 padding: 4px 20px;
	 background-color: #4A682C;
	 color: #FFF;
	 font-size: 12px;
	 margin-right: 10px;
	 text-transform: uppercase;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #6C8A4E;
	 color: #FFF;
	}

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


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 0;
	 filter:alpha(opacity=90); opacity:0.90;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 padding: 4px 20px 2px 5px;
		 border-top: 1px solid #39571B;
		 border-left: 5px solid #39571B;
		 border-right: 5px solid #39571B;
		 margin: 0;
		 text-align: left;
		}
