@charset "utf-8";
/* CSS Document */

	/***********************************************************************************************
	
	Copyright (c) 2005 - Alf Magne Kalleland post@dhtmlgoodies.com
	
	Get this and other scripts at www.dhtmlgoodies.com
	
	You can use this script freely as long as this copyright message is kept intact.
	
	***********************************************************************************************/
		
	#mainMenu{
		font-size:12px;	/* Font size of main menu items */
/*		border-bottom:1px solid #000000;	/* Bottom border of main menu */
		height:30px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
		font-weight:bold;
	}
	#mainMenu a{
		margin: 16px 2px;
		text-decoration:none;
		/* Don't change these two options */
		position:absolute;
		bottom:-1px;	/* Change this value to -2px if you're not using a strict doctype */
	}
	#submenu{		
		width:100%;	/* Don't change this option */
		font-size:12px;
		
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		color:#B693FF;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{		
		color: #ffffff;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#submenu a{	
		text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		margin:55px 3px;	/* Space at the left of each sub menu item */
		color: #B693FF;	/* Text color */
		font-weight:bold;
	}
	
	#submenu a:hover{
	color:#ffffff;
	/* Red color when the user moves the mouse over sub menu items */
	}
	
	#submenu a:active{
	color:#ffffff;
	/* Red color when the user moves the mouse over sub menu items */
	}

