	/***********************************************************************************************
	
	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.
	
	***********************************************************************************************/

	
	
	#menu_top {
			/* Height of main menu */		
		position:relative;	/* Don't change this position attribute */
		float:left;
		text-align:left;
		
	}
	
	#submenu{		
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
		/* Background color of sub menu items */
		padding:0 0 0 0px;
		margin:0px 0px 0px -4px;
		position:relative;
		top:0px;
		float:left;
		
			/* Don't change this option */
		
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#menu_top .activeMenuItem{
		/* Border options */
	
		/* Background color */
		color:#C0E1EF;
		text-decoration:none;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		font-weight:normal;
		font-size:14px;
		font-family:"Trebuchet MS";
		letter-spacing:1px;
		margin-right:20px; 
	}
	
	#menu_top .activeMenuItem img{
		position:absolute;
		bottom:0px;
		right:0px;
	}
		
	/*
	Style attributes of inactive menu items
	*/
	#menu_top .inactiveMenuItem{		
		color: #FFF;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		font-weight:normal;
		font-size:14px;
		font-family:"Trebuchet MS";
		letter-spacing:1px; 
		margin-right:20px; 
	}
	
	#submenu a{	
		text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:5px;	/* Space at the left of each sub menu item */
		padding-right:5px;	/* Space at the right of each sub menu item */
		color: #0A8DC3;	/* Text color */
		font-size:13px;
		font-family:Arial, Helvetica, sans-serif; 
	}
	
	#submenu a:hover{
		color: #53AFD5;	/* Red color when the user moves the mouse over sub menu items */
	}
	


