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




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

	ul.dropdown li {
	 height:30px;
	 padding: 0 12px;
	 background-color:#4394bd;

	 color: #fff;
	 border-right:1px solid #fff;
	 display:block;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
/*	 background-color: #eee;*/
	 background-color: #fd8d03;
	 color: #fff;
	}

	ul.dropdown a { 	 line-height:30px; }
	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #fff; text-decoration: none; }
	ul.dropdown a:hover		{ color: #fff; }
	ul.dropdown a:active	{ color: #ffa500; }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 155px;
	 margin-top: 0px;
	}
	* html ul.dropdown ul {
		width:158px;;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 border-top:1px solid #fff;
		 height:auto;
		}
		ul.dropdown ul a {
			line-height:1.2em;
			padding: 6px 0;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 padding-right: 20px;
}



