#nav{
	cursor: pointer;
	margin: 0 0 0 283px;
	padding: 0;
	list-style: none;


}

/* fixes IE6 quirck that prevents proper horizontal display */
#nav li {
	float: left;
}

/*
navMainItem class needed because if you use ... li a {}
it applies to all children <a> and if you use ... li > a
to get the first level, then it doesnt work in IE
*/
#nav li a.main-item{
	text-decoration: none;
	color: #FBFBED;
	float: left;
	padding: 15px 10px 0 10px;
	height: 36px;
	font-size: 16px;
}
#nav li a.main-item.featured{
	color: #FBFBED; /* needed for ie6 */
	border-top: 2px #fff solid;
	position: relative;
	top: -2px;
	height: 44px;
	background: url(../images/nav-featured-bg.gif) top left repeat-x;
}

#nav li a.main-item:hover{
	color: #FBFBED; /* needed for ie6 */
	background: url(../images/nav_link_hover.gif) top left repeat-x;
	
}

/* DROP DOWN MENU */
#dropdown{
    display: none;
    z-index: 2;
	clear: both;
	position: absolute;
	float: left;
	top: 117px;

}
#dropdown div{
	border: 1px #B1B19D solid;
	margin-bottom: 2px;
	background-color: #FFF;
}
#dropdown a{
	padding: 4px 16px 4px 15px;
	display: block;
	font-size: 8pt;
	height: 19px;
	text-decoration: none;
	color: #515524;
	font-family: Geneva;
    background: url(../images/arrow.gif) 7px 11px no-repeat;
}
#dropdown a:hover{
	background-color: #F9F9E0;
}

