@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;
 
}

	ul.dropdown li {
	 padding: 7px 10px;
	 border-style: none;
	 border-width: 0px 0px 0px 0;
	 border-color: #7c8d49 #7c8d49 #7c8d49;
	 background-color: #7c8d49;
	 /* background-image: url(images/nav-back2.gif);*/
	 color: #ffffff;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #7c8d49;
	 color: #FFFFFF;
	}

ul.dropdown li:link,
	ul.dropdown li:visited	{ color: #FFFFFF; text-decoration: none; }
	ul.dropdown li:hover		{ color: #f0dcb0; text-decoration: none; }
	ul.dropdown li:active	{ color: #f0dcb0; text-decoration: none; }
	
	
	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #FFFFFF; text-decoration: none; }
	ul.dropdown a:hover		{ color: #f0dcb0; text-decoration: none; }
	ul.dropdown a:active	{ color: #f0dcb0; text-decoration: none; }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 180px;
	 margin-top: 0px;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 padding-right: 20px;
background-image: url(images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


/* -- 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;
}

