@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.1
 * @type		transitional
 * @browsers	Windows: IE5+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2008 Live Web Institute
 *
 * 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 li {
	 padding: 7px 10px;
	 background-color: none;
	 color: #E9D4C4;
 	font-family: "Times New Roman", Times, serif;
	 font-size: 16px;
	}
	
	.licolor li {
	 background-color: #792123;
		border-style: solid;
	 border-width: 1px 1px 1px 1px;
	 border-color: #832427;
	}

	.licolor li.hover,
	.licolor li:hover {
	 background-color: #8d282a;
	}

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


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 200px;
	 margin-top: 1px;
	}

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



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

ul.dropdown *.dir {
 padding-right: 20px;
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-position: 0 50%;
}