/***********************************************
  Modified version for Web Before/After Makeovers 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 of main menu - either color or image */
	background-color: #8B2222;
	/*  background-image:url('../images/bgmenubar.gif'); */  	
	/* Font & character properties of main menu items */	
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 1em;
	color: #FFFFFF;  	                                               
	letter-spacing: .1em; 
	text-transform: uppercase; 		
	/* Bottom border of main menu */
	border-bottom:1px solid #790000;
	/* Height of main menu */   
	height:30px;	         
	/* Do not modify below */
	position:relative;	                                               
	visibility: hidden;
}

#mainMenu a {
	/* Custom font/character properties*/
	text-decoration:none;
	color: #FFFFFF;  
    /* 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; 
	/* Do not modify below */
	position:absolute;
	bottom:-1px;
}

#submenu {		
    /* Background color of sub menu items */
	background-color: #D67D7D;	
	/* Font & character properties of submenu items */	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #000000;                                          
	letter-spacing: .1em;
	/*border-bottom:1px solid #790000;*/
	/* Misc bar properties */	
	padding-top: 3px; 
	height: 15px; 
	/* Do not modify below */
	visibility: hidden;
	width:100%;	    
	display: block;                                                    
}


#submenu div {
	/* Do not modify below */
	white-space:nowrap;	                                                
}


/*
Style attributes of active menu item 
*/

#mainMenu .activeMenuItem {
	/* Background color */
	background-color:#B95353;
	/* Font property of active main menu item*/	
	font-weight:bold; 
	/* Border options */
	border-left:1px solid #790000;                                     	
	border-top:1px solid #790000;
	border-right:1px solid #790000;		
	padding-top: 2px; 
	bottom: -1px;
	/* Handcursor on mouseover */	
	cursor:pointer;	                                                    
}


/*
Style attributes of inactive menu items
*/

#mainMenu .inactiveMenuItem {		
	/* Text color */
	color:  #FFFFFF;
	/* Handcursor on mouseover */	                                                    
	cursor:pointer;	                                                    
    bottom: -1px;
}

#submenu a {	
	/* By default, there is no underline for submenu items. However, if you do 
	   want this setting enabled, change line below to text-decoration:underline; */
	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;	                                              
	color: #000000;  
}

#submenu a:hover {
	/* Color on mouseover of sub menu items */
	color: #FFFFFF;   
}

html>body #clearmenu { 
	/* non IE browsers menu bottom spacing */ 
	margin-bottom: 2px;                               
}

