@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 li 
	{
		font-family:Trebuchet MS, Verdana, helvetica, sans-serif;
		color: #696969;
		font-size: x-large;
		text-decoration: none;	
		background-color: #ffffff;
		padding-left:10px;
		padding-right:10px;
	}
	
	ul.dropdown li:hover {
	 text-decoration:underline;
	 color: #3484BF;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #696969; text-decoration: none; }
	ul.dropdown a:hover		{ text-align:left; color: #3484BF; }
	ul.dropdown a:active	{ color: #30f20a; }


	/* -- level mark -- */

	ul.dropdown ul 
	{
		text-align:left;
		width: 200px;
		margin-top: 1px;
	}

	ul.dropdown ul li 
	{
		font-weight: normal;
		font-size:medium;
	}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */

ul.dropdown *.dir {
 padding-right: 20px;
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

