@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		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
 */
div#top_navigation {
	position: relative;
	z-index: 100;
}

ul.dropdown {
 	font-weight: bold;
}



	ul.dropdown li.hover,
	ul.dropdown li:hover {
	  background: #4d4d4d !important;
	  color: #fff !important;
	}
	
	ul.dropdown ul li.hover,
	ul.dropdown ul li:hover {
	  background: #4d4d4d !important;
	  color: #fff !important;
	}



ul.dropdown ul li a{ 
		display: block; 
		width: 188px !important; 
		color: #000; 
		height: 100% !important;
		line-height: 14px !important;
		color: #fff !important;
	}
	
	ul.dropdown ul li a:hover{ 
		width: 188px !important; 
		color: #000; 
	}

	ul.dropdown a:active	{ color: #ffa500; }



	/* -- level mark -- */

	ul.dropdown ul {

	}

		ul.dropdown ul li {
			display: block;
		 	font-weight: normal;
		 	float: none !important;
		}
		
	ul.dropdown ul li.last a{
		display: block;
	}
	ul.dropdown ul li.last a:hover{
		display: block;

	}
	



