@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;
	font-size: 80%;
	color: white;
	line-height: 100%;
}

ul.dropdown li {
	padding: 6px 6px;
	background-color: #cf7600;
	color: white;
	text-transform: uppercase;
	border-left: 1px solid #91510d;
	border-right: 1px solid #fea340;
	border-bottom: 1px solid #91510d;
	border-top: 1px solid #fea340;
	min-height: 33px;
	width: 97px;
	text-align: center;
}

ul.dropdown li.subnav {
	padding: 8px 10px;
	background-color: #cf7600;
	color: white;
	text-transform: uppercase;
	font-size: 100%;
	border-left: 1px solid #91510d;
	border-right: 1px solid #fea340;
	border-bottom: 1px solid #91510d;
	border-top: 1px solid #fea340;
}

ul.dropdown li.hover,
ul.dropdown li:hover {
	background-color: #36488e;
	color: white;
	border-top: 1px solid #212e60;
	border-bottom: 1px solid #4a62bf;
	border-right: 1px solid #212e60;
	border-left: 1px solid #4a62bf;
}

ul.dropdown a {
	text-decoration: none;
	color: white;
	display: block;
}

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

/* -- level mark -- */

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

ul.dropdown ul li {
	width: 150px;
	min-height: 15px;
	text-align: left;
}


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

ul.dropdown *.dir {
	padding-right: 9px;
	background-image: url(images/nav-arrow-down.png);
	background-position: 100% 90%;
	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%;
}

/* -- Custom -- */

.single {
	padding-top: 8px;
	_padding-top: 9px;
	padding-top: 9px !ie;
	padding-bottom: 8px;
}
