/** 
 * 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: bold;
}

ul.dropdown li {
	background-color: #22314e;
	margin:0px;
	color: #fff;
	width:183px;
	font-size:90%;
}

ul.dropdown li.right {
	background-color: #fff;
	margin:0px;
	color: #22314e;
	width:184px;
}

ul.dropdown li.sep {
	/** background: url(../images/layout/main_nav_sep.gif) no-repeat 0px 0;*/
	width:1px;
	height:52px;
	background-color: #fff;
}

ul.dropdown li.sub_nav{
	min-height:52px;
	line-height:52px;
}	

ul.dropdown li.hover,
ul.dropdown li:hover {
	background-color: #22314e;
	color: #fff;
}

ul.dropdown li.second {
	font-size:80%;
	font-weight:bold;
	text-align:left;
}

ul.dropdown a.first{
	color: #22314e;
	text-decoration: none;
	display:block;
	min-height:52px;
	line-height:52px;
}

ul.dropdown a.first:hover{
	color: #fff;
	text-decoration: none;
	display:block;
	min-height:52px;
	line-height:52px;
}

ul.dropdown a.first.hover{
	color: #fff;
	text-decoration: none;
	display:block;
	min-height:52px;
	line-height:52px;
}
	
/* -- level mark -- */
ul.dropdown ul {
	 margin-top: 0px;
}

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

ul.dropdown a.second{
	 display: block;
	 min-height:16px;
	 line-height:16px;
	 padding-left:5px;
	 color: #fff;
	 text-decoration: none;
}

ul.dropdown a.second:hover,ul.dropdown a.second:hover{
	background-color:#22314e;
	display: block;
	min-height:16px;
	line-height:16px;
	padding-left:5px;
	color: #fff;
	text-decoration: none;
}



/*-------------------------------------------------/
 * @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%;
}