/**
 * @author Mel Huikeshoven
 * @package Joomla
 * @copyright Copyright (C) 2009
 */


/********************
GLOBAL MENU
*********************/

#head_menu {
	height:2px;
	margin:0; 
   background-color: #567300;
   display:inline;
	float:left;
	overflow:hidden;
}

/* head_ menu li block */
#head_menu li {
   list-style: none;
   display: inline;
   margin:0;
   min-height:3em; /* Fixes IE7 whitespace bug */ 
   font-weight:bold;
   
   }



div#head_menu a.site {
   background-color: #567300;
   color: #e9f8c9;
   text-decoration:none; /* no underline for links */
   padding: 2em 1.5em 2em 1.5em;
   line-height: 3em;
 
}

/* current page
*/
div#head_menu a.current_site {
   background-color: #fff;
   color: #567300;
   text-decoration:none; /* no underline for links */
   /*border-left: 1px solid #81ac00;  */
   border: 1px solid #81ac00;  
   padding: 2em 1.5em 2em 1.5em;
   line-height: 2em;
   margin-left: 10px;
}

/* hover state for all links */
div#head_menu a:hover {
   color: #567300;
}


/********************
MENU
*********************/
#menu {
   background-color: #567300;
   padding: 5px 0 5px 0; /* some air for it */
}

/* menu li block */


#menu li {
   list-style: none;
   margin: 0;
   display: inline;
   line-height: 1.4em;
   padding: 11px 0 12px 0;
}


/* first level links */
div#menu li a {
   text-decoration:none; /* no underline for links */ 
   padding: 11px 16px 12px 16px; /*some air for it */
   color: #e9f8c9; /* this will be link color for all levels */
   background: #567300; 
   min-height:10px; /* Fixes IE7 whitespace bug */ 
   margin: 0;

}

/* hover state for all links */
div#menu li a:hover {
   background-color: #81ac00;
   border-left: 1px solid #e9f8c9;
   border-right: 1px solid #e9f8c9;
   color: #fff;
   padding: 11px 15px 12px 15px;  /* some air for it */
}

/*  This is for current page  */
div#menu .active a  {
  /* background: url(../images/arrow-right.gif) no-repeat 5px center; */
   background-color: #81ac00 !important;  
   padding: 11px 16px 12px 16px;  /* some air for it */
   color: #fff;
   font-weight:bold;
 
}

