@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
 *
 */


/*-------------------------------------------------/
 * @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-vertical {
}

ul.dropdown-vertical li.hover,
ul.dropdown-vertical li.dir:hover {
 margin-right: -3px;
 padding-right: 23px; /* coz ul.dropdown *.dir sets this to 20px */
}

ul.dropdown li.item {
 margin-right: 0 !important; /* suppress hover-extension on item entries for IE6 */
 padding: 0 !important; /* works with next rule to make entire button active, not just text */
}

ul.dropdown li.item a {
 display: block;
 /*
 ** We really want just "padding: 7px 10px;" here, but IE6 doesn't set the width of the
 ** <A> element to the full width of the <LI> minus the L/R padding, so we have to use
 ** "width: 100%;" to force it.  This means we can't set L/R padding, as this is outside
 ** the element's width, but as the text is centred it doesn't really matter.  Phew!
 */
 width: 100%;
 padding: 7px 0;
}

ul.dropdown {
 float: none;
 clear: both; /* avoid floating LI elements in a previous menu */
}

	ul.dropdown li {
	 padding: 7px 10px;
	 border-style: solid;
	 border-width: 1px 1px 1px 0;
	 border-color: #fff #d9d9d9 #d9d9d9;
	 background-color: #eee;
	 color: #000;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #ccc;
	 color: #000;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #000; text-decoration: none; }
	ul.dropdown a:hover	{ color: #000; background-color: #ccc; }
	ul.dropdown a:active	{ color: #ffa500; }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 1px;
	 left: 100%;
	}

		ul.dropdown ul ul {
		 top: 1px;
	 	 left: 100%;
	 	}

		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-down.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;
}

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%;
}
