/***********************************************
* Tab Menu- By Alf Magne Kalleland www.dhtmlgoodies.com
* Script featured and available at Dynamic Drive: http://www.dynamicdrive.com/
* This notice must stay intact for use
***********************************************/

XyGrey { color: #DEDEDE }
XyRed  { color: #8C5242 }

#mainMenu
{
	/* Background color of main menu */
	background-color: #FFFFFF;
	/* Fonts of main menu items */
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	/* Font size of main menu items */
	font-size:11pt;
	/* Bottom border of main menu */
	border-bottom:1px solid #000000;
	/* Height of main menu */
//	height:30px;
	/* Don't change this position attribute */		
	position:relative;
	visibility: hidden;
}

#mainMenu a
{
	/* Red color when the user moves the mouse over sub menu items */
	color: #FF0000;
	/* Spaces at the left of main menu items */
	padding-left:5px;
	/* Spaces at the right of main menu items */
	padding-right:5px;
	font-weight: bold;
	/* Don't change these two options */
	position:absolute;
	bottom:-2px;
}

#submenu
{
	/* Font  of sub menu items */
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	/* Font size of sub menu items */
	font-size:10pt;
	/* Height of main menu */
	height:20px;
	/* Background color of sub menu items */
	background-color:#DEDEDE;
	/* Border options */
	border-right:1px solid #8C5242;
	border-bottom:1px solid #8C5242;
	visibility: hidden;
	/* Don't change this option */
	width:100%;
}
	
html>body #clearmenu
{
	/* non IE browsers menu bottom spacing */
	margin-bottom: 2px;
}
	
#submenu div
{
	/* Don't change this option */
	white-space:nowrap;
}

/* Style attributes of active menu item */
#mainMenu .activeMenuItem
{
	/* Font colour */
	color: #000000;
	/* Border options */
	border-left:1px solid #000000;
	border-top:1px solid #000000;
	border-right:1px solid #000000;		
	/* Background color */
	background-color: #DEDEDE;
	/* Cursor like a hand when the user moves the mouse over the menu item */
	cursor:pointer;
}

/* Style attributes of inactive menu items */
#mainMenu .inactiveMenuItem
{
	/* Font colour */
	color: #8C5242;
	/* Cursor like a hand when the user moves the mouse over the menu item */
	cursor:pointer;
}
	
#submenu a
{	
	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
	text-decoration:none;
	/* Space at the left of each sub menu item */
	padding-left:5px;
	/* Space at the right of each sub menu item */
	padding-right:5px;
	/* Text color */
	color: #000;
}
	
#submenu a:hover
{
	/* Red color when the user moves the mouse over sub menu items */
	color: #FF0000;
}
