

/***********************************************

  Modified version based on the following: 

* Tab Menu- By Alf Magne Kalleland post@removethisdhtmlgoodies.com

* Website Address: http://www.dhtmlgoodies.com

* Script featured/ available at Dynamic Drive: http://www.dynamicdrive.com/

* This notice must stay intact for use

***********************************************/

		

#mainMenu {

  /* Background color of main menu */

  background-color:#dddddd;

	font:14px Arial, Helvetica, sans-serif;

	color:#df0174;  	                                               

  letter-spacing:.15em; 

	/* Height of main menu */   

	height:25px;	         

	/* Don't change this position attribute */	                                           		

	position:relative;	                                               

	visibility:hidden;

}



#mainMenu a {

	/* Custom properties */

	text-decoration:none;

/*color:#FFffff; */

	color: #000000;  

    /* Spaces at the left of main menu items */

	padding-left:5px;	 

    /* Spaces at the right of main menu items */	                                               

	padding-right:5px;	                                                

	padding-bottom:5px; 

	/* Don't change these two options */

	position:absolute;

	bottom:-1px;

}



#submenu {

  /*Custom font*/

	font:15px Arial, Helvetica, sans-serif; 

  /* Background color of sub menu items */

	background-color: A52A2A;//This is a line on the top of the page ff0000;

	/* Font properties of submenu items */	

	color:black;

	/* Misc bar properties */	

	padding-top:3px;

	height:25px;

	/* Don't change this option */	

	visibility: hidden;

	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 {

	/* Border options */

	border-left:1px solid gray;                                     	

	border-right:1px solid darkgray;		

	/* Background color */

	background-color:darkgray;

	padding-top:2px; 

	/* Handcursor on mouseover */	

	cursor:pointer;	                                                    

}



/* Style attributes of inactive menu items */

#mainMenu .inactiveMenuItem {		

	/* Text color */

	color: #000000 #DCDCDC;

	/* Handcursor on mouseover */	                                                    

	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;	                                              

	/* Border options */

	border-left:1px solid B22222;                                     	

	border-right:1px solid B22222;		

	/* Background color */

	background-color:A52A2A;

	padding-top:3px; 

	padding-bottom:3px;

	color:#F5F5F5;  

}



#submenu a:hover {

	/* Color on mouseover of sub menu items */

	color:#FFD700;   

}



