@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. All Rights Reserved.
 *
 * 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 {
 font-weight: normal;
}

	ul.dropdown li {
	 padding: 7px 10px;
	 /*border-style: solid;
	 background-color: #f6f6f6;*/
	 color: #edecc9;
     font: 14px/normal Georgia, Times, Times New Roman, sans-serif;

	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 /*background-color: #eee;*/
	color: #edecc9;
	}

	ul.dropdown a:link, 
	ul.dropdown a:visited	{ color: #edecc9; text-decoration: none; }
	ul.dropdown a:hover		{ color: #474109; }
	ul.dropdown a:active	{ color: #ffa500; }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 1px;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 font: 12px/normal Georgia, Times, Times New Roman, sans-serif;
 padding-right: 20px;
 /*background-image: url(images/nav-arrow-down.png);*/
 background-color: #edecc9;
 /*background-position: 100% 50%;
 background-repeat: no-repeat;*/
 border-style: solid;
 border-width: 1px 1px 1px 1px;
 border-color: #e1deaf #e1deaf #e1deaf; #e1deaf;
 color: #474109;

}

	ul.dropdown *.dir li.hover{   /*,	ul.dropdown *.dir li:hover */
	background-color: #e1deaf;
	color: #87835e;
	}

	ul.dropdown *.dir a:link, 
	ul.dropdown *.dir a:visited	{ color: #87835e; text-decoration: none;}
	/*ul.dropdown *.dir a:hover	{ color: #87835e;}*/
	ul.dropdown *.dir a:active	{ color: #87835e; }

/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 /*color: #edecc9;
 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%;
}