/* styles for the menu system */

#nav, #nav ul
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	padding: 0;
	margin: 0;
	list-style: none;
	color: #CCCCCC;
}

#nav li
{
	float: left; /* set the main menu to display horizontally */
	padding: 0;
	list-style-type:none;
	list-style-image:none;
	margin-left: 0px;
}	
/* main menu anchor style */
#nav a.tab {
	background: transparent url('images/tab_right.gif') no-repeat scroll top right;
	display: block;
	width: auto; /* variable main menu widths */
	padding: 0 10 0 1; /* space between main menu items */
	color: #FFFFFF; /* main menu text colour */
	text-decoration: none;
}
#nav a.tab span {
	background: transparent url('images/tab_left.gif') no-repeat;
    display: block;
    padding: 6px 0 4px 10px;
}

#nav a:hover {
	color: #FFCC66; /* main menu rollover colour */
}
/* submenu anchor style */
#nav ul a
{
	color: #666666;
	width: 150px;
	padding: 2 0 2 8;
	display:block;
}
#nav ul a:hover {
	color: #333333;
	background-image: url(images/menuback_hi.png);
}

/* set the sub menus to be hidden initially - don't use 'display' as it doesn't work in Opera*/
#nav li ul
{
	position: absolute;
	width: 150px;
	left: -999em;
	line-height: 80%;
	background-image: url(images/menuback03.png);
	background-position: bottom right;
	margin-left: 0px;
	margin-bottom: -8px;
	padding: 0 0 6 0;
}

/* display the sub menu when rolled over, and provide support for crappy IE */
#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

#content
{
	clear: left;
	/*background-image: url(images/grad02.gif);*/
	/*background-repeat: repeat-x;*/
}
