/**
* @version $Id: menu.css 5514 2006-10-19 13:38:35Z Jinx $
* @copyright Copyright (C) 2005 - 2006 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 */
#aktif a		{  
	margin:0;
	background: url('../images/tableftJ.gif') no-repeat left top;
	background-position:0% -42px; 
    padding: 5px 0px 5px 5px;
	text-decoration:none;
}

#aktif span   {  
	display:inline;
	margin:0;
	background:url('../images/tabrightJ.gif') no-repeat right top;
	background-position:100% -42px; 
	padding:5px 15px 5px 6px;
	color:#cdcdcd;
	float:none;
}


#inaktif a		{  
	margin:0;
	background: url('../images/tableftJ.gif') no-repeat left top;
	background-position:0% 0px;
    padding: 5px 0px 5px 5px;
	text-decoration:none;
}

#inaktif span   {  
	display:inline;
	margin:0;
	background:url('../images/tabrightJ.gif') no-repeat right top;
	background-position:100% 0px;
	padding:5px 15px 5px 6px;
	color:#fff;
	float:none;
}

#inaktif a:hover		{ background-position:0% -42px;      }
#inaktif a:hover span	{ color:white;background-position:100% -42px;      }

#menu, #menu ul, #menu li { margin: 0; padding: 0; border: 0 none; }

#menu       { position:relative; z-index: 100;}
#menu li    { float:left;  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; left: 0; }

#menu li.hover ul               {  visibility: visible; }
#menu li.hover ul li ul 		  {  visibility: hidden;  }
#menu li.hover li.hover ul      {  visibility: visible;  left: 100%; }

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

#menu { }

#menu li {
	padding :2px;
	padding-bottom :0px;
}
#menu ul {
 	margin-left:-5px;
 	margin-top:0px;
}
#menu li li { border: 0;}

#menu ul    { background: #24618E;border: 1px solid #CCCCCC;border-top: 1px solid #24618E;}
#menu ul li.node { background: transparent url(../images/j_arrow.png) no-repeat right 50%; }
#menu ul li.separator { background: #DDE1E6 url(../images/bg-menu.gif);  height: 0px;  }

#menu a, #menu div {
	color: #FFF;
	font-size: 11px; text-decoration: none;
	cursor: default;
}

#menu li.disabled a { color: grey; }

#menu ul a {
	color: #FFF;
	font-size: 11px;
	font-weight: normal;
	padding-left: 5px;
	padding-right: 20px;
	line-height: 1.6em;
}
 
/* 1 level - hover */
#menu li.hover a {  font-weight: normal; cursor:hand;  }
/* 2 level - normal */
#menu li.hover li a { background-color:#24618E; border:0 none; margin:1px; cursor:hand; color:#fff ;  font-size:10px}
/* 2 level - hover */
#menu li.hover li.hover a { background-color: #FFF; border: 1px solid #ccc;  margin: 1px; color:#333 ;cursor:hand;; font-size:10px }
/* 3 level - normal */
#menu li.hover li.hover li a { background-color:transparent; border:0 none; margin:1px; cursor:hand; color:#fff ;  font-size:10px}
/* 3 level - hover */
#menu li.hover li.hover li a:hover { background-color: #FFF; border: 1px solid #ccc;  margin: 1px; color:#333 ;cursor:hand; font-size:10px}

