@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-family: Arial, sans-serif;
	font-size: small;
	color: #ffffff;
}

ul.dropdown li {
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 11px;
	padding-right: 4px;
	border: 1px solid #7ea3c4;
	background-image: url('../design-images/menu-normal2.png');
	margin-top: 5px;
}


ul.dropdown ul {
	border-left: 1px solid #7ea3c4;
	border-right: 1px solid #7ea3c4;
	border-top: 1px solid #7ea3c4;
}

ul.dropdown ul li {
	background-image: none;
	background-color: white;
	margin: 0px;
	border: 0px;
	border-bottom: 1px solid #7ea3c4;	
}

ul.dropdown li#active {
	background-image: url('../design-images/menu-selected.png');
	border: 1px solid #98b692;
}

ul.dropdown li#active a {
	text-decoration: none; 
	color: #ffffff;
}

ul.dropdown li#active a:hover {
	text-decoration: underline;
}

ul.dropdown a {  text-decoration: none; color: #ffffff;}
ul.dropdown a:hover		{  text-decoration: underline; }

ul.dropdown ul a{
color: #373737;
}


/* -- level mark -- */

ul.dropdown ul {
margin-top: -2px;
margin-left: 2px;
width: 193px; /* IE doesn't inherit the width for some reason */
}


ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
	 background-image: url('../design-images/menu-normal2-arrow.png');

}


