/**
* @version $Id: menu.css 10387 2008-06-03 10:59:16Z pasamio $
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

/**
 * JMenu javascript behavior styling
 *
 * @author		Johan Janssens <johan.janssens@joomla.org>
 * @package		Joomla
 * @since		1.5
 * @version    1.0
 */

/* ---- Basic menu styles ------------------- */

/* common styling */
.menu, .menu ul, .menu li { margin: 0; padding: 0; border: 0 none; }

.menu       { position:relative; z-index: 100;}
.menu li    { float:right;  position:relative; list-style: none; display: inline;}
.menu li a  { display:block; white-space: nowrap;  }
.menu li li { width: 100%; clear: both;  /*FF 1.0.7 needs this */  }
.menu li ul { visibility: hidden; position:absolute; }

.menu li li ul {  top: 0; right: 0; }

.menu li:hover ul               {  visibility: visible; }

/* ---- Menu layout -------------------------- */

.menu li {
	border-left: 1px solid #dadada;
	border-right: 1px solid #686868;
}

.menu ul    { border: 1px solid #656565; background: #e1e1e1;}

.menu a, .menu div {
	padding: 0.35em 1em 0.35em;
	margin: 0 1px 0 1px;
	color: #333333;
	line-height: 26px; vertical-align: middle;
	font-size: 14px; font-weight: bold; text-decoration: none;
}

.menu li.disabled a { color: gray; }

.menu ul a {
	font-size: 11px;
	font-weight: normal;
	padding-left: 25px;
	padding-right: 20px;
	line-height: 1.2em;
}

/* 1 level - hover */
.menu li:hover a {  background-image: url(../images/hrlog.png);  }
/* 2 level - normal */
.menu li:hover li a { background: #d9d9d9 none; border: 0 none;  }
/* 2 level - hover */
.menu li:hover li:hover a { background-color: #8b8b8b;  }


