/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist{
	width:926px;
	position:relative;
	z-index:3;
}

.menulist ul{
	clear:both;
 	margin:0;
 	padding:0;
 	width:200px;
 	list-style:none;
 	background:#4D4D4D;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 	display:none;
 	position:absolute;
 	top:50;
 	left:0;
 	z-index:10;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 	top:0;
 	margin-top:0;
 	left:92px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 	float:left;
 	display:block;
 	position:relative;
	background:url(images/bg-menulist.gif) repeat-x; 	
}

.menulist li a{
	height:92px;
	display:block;
	text-indent:-9999px;
}

.menulist li a.home {background:url(images/btnHome.jpg) no-repeat; width:144px;margin-right:99px;}
.menulist li a.about {background:url(images/btnAbout.jpg) no-repeat; width:104px;}
.menulist li a.team {background:url(images/btnTeam.jpg) no-repeat; width:127px;}
.menulist li a.programs {background:url(images/btnPrograms.jpg) no-repeat; width:123px;}
.menulist li a.dates {background:url(images/btnDates.jpg) no-repeat; width:124px;}
.menulist li a.testimonials {background:url(images/btnTestimonials.jpg) no-repeat; width:103px;}
.menulist li a.apply {background:url(images/btnApply.jpg) no-repeat; width:102px;}
/*.menulist li a.sponsors {background:url(images/btnSponsors.jpg) no-repeat; width:99px;}*/

.menulist li a:hover, .menulist li a.highlighted {background-position:0 -92px;}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */

.menulist ul li{
	width:200px;
 	float:none;
 	width:auto;
 	margin:0;
 	padding:0;
 	background:none;
}


/* Links inside the menu
.menulist a {
	font-size:18px;
 	display:block;
 	padding: 3px;
 	color:#FFF;
 	text-decoration:none;
} */

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 	color:#FFF;
 	background-color:#A64;
}
.menulist a.highlighted {
 	color:#FFF;
 	background-color:#C86;
} */

.menulist ul li a{
	width:190px;
	text-indent:0;
	height:auto;
	color:#FFF;
	font-size:11px !important;
	padding:6px 0 6px 10px;
	text-decoration:none;
}

.menulist ul li a:hover{
     color:#FFF;
     background:#518D1F;
}


/* Only style submenu indicators within submenus. */
.menulist a .subind {
 	display:none;
}
.menulist ul a .subind {
 	display:none;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 	float:left;
}
.menulist ul a {
 	float:none;
}
/* \*/
.menulist a {
 	float:none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
.menulist ul li {
 	float:left;
 	width:100%;
}

.menulist ul li {
 	float:left;
 	height:1%;
}
.menulist ul a {
 	height:1%;
}
/* End Hacks */
