@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
 *
 */


body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}

/*-------------------------------------------------/
 * @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 {
	 padding-top: 4px;
	 padding-bottom: 5px;
	 padding-left: 10px;
	 padding-right: 10px;
	 background-color: #008198;
	 color: white;
	}

	ul.dropdown li.hover, ul.dropdown li:hover, ul.dropdown a.hover, ul.dropdown a:hover {
	 background-color: #26A9AC;
	 color: white;
	}

	ul.dropdown a:link,		
	ul.dropdown a:visited	{ color: white; text-decoration: none;}
	ul.dropdown a:hover		{ color: white; text-decoration: none;}
	ul.dropdown a:active	{ color: white; text-decoration: none;}


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 220px;
	 margin-top: 2px;
	 border-top: 1px solid #003436;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 border-left: 1px solid #003436;
		 border-right: 1px solid #003436;
		 border-bottom: 1px solid #003436;
		}

		ul.dropdown ul li a {
			color: white;
			text-decoration: none;
		}

/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 color: white;
 margin-right: 3px;
 border-bottom: 2px solid #dfb42c;
 
}


