@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 ;
 display: inline;
 padding-left: 20px;
}

	ul.dropdown li {
	 padding: 0px 10px 3px 10px;
	 border-color: #2E5629;
	 }
	 
	 li.dropdown-section {
		color: #FFF;
		}
/* controls hover over top level list items */	 	
	li.dropdown-section:hover {
		background-color: #E9FECB;
		color: #000;
	}
/* controls hover over top level list items LINKS */	 	
	li.dropdown-section a:hover {
		color:#000;

	}
	li.dropdown-section a {
	/* controls top level list items LINKS */	 	
		text-decoration:none;
		color: #FFF;
		font-weight: bold;
	}

	/* This code block will do the underline roll-over effect. 
	ul.dropdown a:hover		{ color: #FFF; text-decoration: underline;}
	ul.dropdown a:active	{ color: #FFF; text-decoration: underline;}
	*/
	
/*This controls the style for listed links - it removes any style so there is no indication links in the menu have been visited  */
	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: inherit; text-decoration: none;}

/*controls hover over sub level list items */
	li.dropdown-item:hover {
		background-color: #2E5629;
		text-decoration:none;
		/*color: #FFF; not doing anything*/
		/*text-align: center;*/
	}
	/* adds underline when hoverling over the link part of the sublevel list item */
		li.dropdown-item a:hover{
		color: #FFF;
		/*text-align: center;*/
	}
	li.dropdown-item a{
		color: #000;
		/*text-align: center;*/
	}
	li.dropdown-item {
		text-decoration:none;
		color: #000;
		font-size:12px;
		/*text-align: center;*/
	}

	/* -- level mark -- */
	
	ul.dropdown ul {	 
		margin-top: 0px;
		width: 250px;
	 	background-color: #E9FECB;
	 	text-align: left;
		padding-bottom: 5px;
		border-style: solid;
		border-color:#2E5629;
		border-width: 1px;
	}
	ul.dropdown ul li {
		 font-weight: normal;
		 padding-top: 5px;
		 padding-bottom: 5px;
		/* text-decoration: none; */
		}
	ul.dropdown ul li:hover {
		 font-weight: normal;
		 padding-top: 5px;
		 padding-bottom: 5px;
		 color: #FFF; /* controls color of hover in submenu when not on actual link*/
		/* text-decoration: none; */
		}
		
		
		/* not used - no sub sub lists 
			ul.dropdown ul ul {
		 	font-weight: normal;
		 	border-top-style: solid;
		 	border-color:#FFF;
			border-width: 1px;

			}
*/	


/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */
 /*this controls the hover over the top level items */
ul.dropdown *.dir:hover {
color: inherit;
font-weight: bold;
		
}
ul.dropdown *.dir {

 background-position: 100% 50%;
 background-repeat: no-repeat;
}
ul.dropdown li *.dir {

}

.noStyle:hover{
	color: #FFF;
}

.dir{
	font-size: 14px;
}

/* -- Components override -- 

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url(images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}
*/