/* Turn off other stuff you don't need with drop downs. */
#navigation ul
{
	padding:0;
}

#navigation li:before
{
	content:"";
}

/* Fixing left margin for sub-lists. */
#navigation li li
{
	margin-left:-1em; /* Remove space in Safari, Opera, and Firefox. */
}

#navigation ul li li
{
	padding-left:0; /* Undos a negation of the appropriate negative margin-left for IE 6 when drop downs are not used. */
}

/* The practical drop down code. The work of HTMLDog (http://htmldog.com/articles/suckerfish/dropdowns/). */
#navigationUL ul
{
	list-style:none;
}

#navigationUL li
{
	position:relative;
	float:left;
	width:150px;
}

#navigationUL li ul
{
	position:absolute;
	left:-999em;
	margin-left:150px;
	top:0;
	background:url(../images/highLines.png);
}

#navigationUL li ul ul
{
	left:-999em;
}

#navigationUL li a
{
	padding:0.5em 10px;
	width:130px;
	display:block;
	font-size:1.3em;
	color:#fff;
	text-decoration:none;
}

#navigationUL li a:hover
{
	text-decoration:none;
	color:#fff;
	background:url(../images/arrow.gif) 100% 50% no-repeat #4e4e4e;
}

#navigationUL li li
{
	width:200px;
}

#navigationUL li li a
{
	width:180px;
}

#navigationUL .noArrow a:hover
{
	background:#4e4e4e;
}

#navigationUL li:hover ul ul, #navigationUL li:hover ul ul ul, #navigationUL li.sfhover ul ul, #navigationUL li.sfhover ul ul ul
{
	left:-999em;
}

#navigationUL li:hover ul, #navigationUL li li:hover ul, #navigationUL li li li:hover ul, #navigationUL li.sfhover ul, #navigationUL li li.sfhover ul, #navigationUL li li li.sfhover ul
{
	left:auto;
}

/* Provide special coloration for subarea of site. */
#home a.home, #club a.club, #show a.show, #rockrattler a.rockrattler, #galleries a.galleries
{
	background:#4e4e4e;
}
