@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 {
 font-weight: bold;
 
}

	ul.dropdown li {
	color: #949750;
	border-right:1px solid white;
	
	
	
	
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	
	color: #949750;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #949750; text-decoration: none; padding-left:5px;padding-right:5px; font-weight:900; text-transform:uppercase; font-size:15px; font-family:"Arial Black"}
	ul.dropdown a:hover		{ color: #bbba8a; }
	ul.dropdown a:active	{ color: #bbba8a; }


	/* -- level mark -- */

	ul.dropdown ul {
	margin-top:0px;
	
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 padding:0px;
		 border:0px;
		 margin:0px;
		 border-left:1px solid white;
		 margin-left:-1px;
		 width:300px;
		 padding-top:3px;
		
		 
		}
		
		ul.dropdown ul li a:link,
		ul.dropdown ul li a:visited
		{
		font-size:12px;
		padding-left:11px;
		}
		
		



