
#navigation {
	padding: 0;
	position:relative; /* Makes this the containing block */
	height:60px;
	white-space: nowrap;
	width: 560px;
	text-align: left;
	margin: 2 0;
	background: transparent; /* background of second row of navigation */
	padding-left:350px;
}
#heading {
}


#navigation ul {
	position: absolute; /* Needed for FF, background */
	margin: 0;
	height: 30px;
	z-index:1;
	width:560px; /* *** Adjust this to match the actual width of the tabs. *** */
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 10px;
}

#navigation a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding:9px 6px 0px 6px;
	float:left;
	position:relative;
	height:30px; /* Needed for IE 5.x broken box */
	height:21px; /* 30 - 9, for non-broken browsers */
	font-size: 12px;
}

#navigation a:hover {
 text-decoration: underline;
}
#navigation a span {
 background: transparent;
 height:30px;
 width:7px;
 display:block;
 font-size:1px;
 position:absolute;
 top:0px;
 left:0px;
}
#navigation li {
 margin: 1px;
 float: left;
 display: block;
 list-style: none;
}

#navigation li ul {
	display: none; /* Hide sublists */
	width:550px; /* 800 - 10, IE needs this to be fixed width */
	top: 30px; /* moves the sublist below main list */
	left: 0px;
}

#navigation li:hover a, #navigation li.mouse_over a {
	background-color: transparent;
		color: #6c0792; 

}
#navigation li:hover a span, #navigation li.mouse_over a span {
	background-color: transparent;
}

#navigation #nav_list li li a {
 background-image: none;
 background-color: transparent; /* Needed to make dividers visible */
}

#navigation li.nav_default_on a, #navigation li.nav_default_off a {
	background-color: transparent;
	color: #6c0792;	
}

#navigation li.nav_default_on a span, #navigation li.nav_default_off a span {
	background-color: transparent;
}

#navigation  {
 position:relative;
 width:550px;
 height:30px;
}


#navigation li li a {
 font-weight: normal;
 background-image: none;
 height:21px;
}

#navigation li li {
 background: transparent url(../images/navigation_divider.gif) no-repeat 100% 11px; /* Dividers in the sublist */
}

#navigation li.mouse_over ul { /* Show sublist of hovered item */
 display: block;
}

body:last-child #navigation li:hover ul { /* Show sublist of hovered item, hack hides this from Opera, works in FF & Safari(?) */
 display: block;
}

* html #navigation li:hover ul { /* Show sublist of hovered item, hack hides this from Opera, works in IE */
 display: block;
}

#navigation li.nav_default_on ul { /* Show sublist of current page */
 display: block;
}

#navigation li.nav_default_off ul { /* Hide sublist of current page */
 display: none;
}
