@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 {
	font-weight: bold;
}

ul.dropdown li {
	padding: 6px 10px;
	border-style: solid;
	border-width: 1px 1px 1px 0;
	border-color: #fff #d9d9d9 #d9d9d9;
	color: white;
	text-transform: uppercase;
	border-bottom-color: #486864;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-top-color: #a5e6de;
	border-left-width: 0;
	font: bold 12px Arial, Helvetica, "Helvetica Neue", Geneva, sans-serif;
	border-right-style: none;
	border-right-color: #d9d9d9;
	width: 145px;
}

ul.dropdown li.subnav {
	padding: 7px 10px;
	background-color: black;
	color: white;
	border-top: 1px solid gray;
	border-right: 1px solid #464041;
	border-bottom: 1px solid #464041;
}

ul.dropdown li.hover,
	ul.dropdown li:hover {
	/*background-color: #911412;*/
	color: white;
	border-top: 1px solid red;
	border-bottom: 1px solid maroon;
}

ul.dropdown li.hover a {
	color: white
}

ul.dropdown a:link,
	ul.dropdown a:visited {
	color: white;
	text-decoration: none;
	font-weight: bold;
	text-transform: none;
}

ul.dropdown a:hover {
	color: white;
}

/* -- level mark -- */

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

ul.dropdown ul li {
	font-weight: normal;
	/*background-color: #85b9b3;*/
}

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

ul.dropdown *.dir {
	background: url(images/nav-arrow-down.png) no-repeat 100% 50%;
}

/* -- 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-left: 15px;
	background-image: url(images/nav-arrow-left.png);
	background-position: 0 50%;
	padding-right: 10px;
}
