@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
 */

/* -- Delete before saving -- 

* {	
	font-family: arial, helvetica, sans-serif; margin:0px; padding:0px; }
body { 
	color: #000000; background-color: #ffffff; font-size: 75%; }
a { 
	outline: none; }
/* -- Delete before saving -- */

#TopNavWrap{
	float: left; 
	display: inline;
	background-image: url(/images/nav-background.jpg);
	background-repeat:no-repeat;
	padding: 1px 15px;
	height: 36px;
	width: 968px;
}
ul#nav{
	height: 34px;
	margin: 0 0 0 115px; /* Add left margin to center when top level is complete */
}
ul.dropdown {
 font-weight: bold;
}

	ul.dropdown li {
	 color: #FFF;
	 border-right: 1px solid #aea79f; /*6f6657;*/

	}
	ul.dropdown li.last {	
		border-right: none;
	}
	ul.dropdown li a,ul.dropdown li span.dir {
		 padding: 9px 40px 8px;	 		
		 display: block;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #aea79f;
	 color: #FFF;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #FFF; text-decoration: none; }
	ul.dropdown a:hover		{ color: #FFF; }
	ul.dropdown a:active	{ color: #fc00d2; }


	/* -- level 2 -- */

	ul.dropdown ul {
	 margin-top: 0px;
	 border-width: 1px;
	 border-style: solid;
	 border-color: #6f6657;
	 background-color: #80786d;
	 width: 210px;
	}

		ul.dropdown ul li {
			font-weight: normal;
			border-right: none;
			border-bottom: 1px solid #6f6657;
			
		}
		ul.dropdown ul li.last{
			border-bottom: none;
		}
		ul.dropdown ul li a{
			display: block;
			padding: 6px 15px;
		}
	/* -- level 3 -- */

	ul.dropdown ul ul{	
	 margin-top: 1px;
	 border-width: 1px;
	 border-style: solid;
	 border-color: #6f6657;
	}