/*

 *      menu-std.css

 *

 *      Copyright 2009 Kevin Brodigan <kev_brodigan@yahoo.co.uk>

 *

 *      This program is distributed in the hope that it will be useful,

 *      but WITHOUT ANY WARRANTY; without even the implied warranty of

 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 */





/*

==============    MENUS    ==================

*/



#menuBar {

	position: relative;

	top: -3px;

	z-index:100;

	/*margin-bottom: 2em;*/

	width: 900px;

	/*font-size: 8pt;*/

}



#menuBar ul, #menuBar ul ul {

	list-style: none;

}



#menuBar ul li {

	position: relative;

	float: left;

	padding: 5px 8px 5px 8px;

}



#menuBar ul li a {

	width: 100%;

	text-decoration: none;

	font-weight: bold;

	text-align: center;

}



li.menu a {

	color: #000;

}



li.menu a:hover {

	color: #336600;

}



li.active-menu a {

	color: #336600;

}



li.active-menu a:hover {

	color: #63584d;

}



#menuBar ul ul {

	visibility: hidden;

	position: absolute;

	top: 23px;

	left: -35px;

}



#menuBar ul ul li {

	text-align: left;

	width: 120px;

	background-color: rgb(28,25,22);

	opacity: 0.85;

	filter: alpha(opacity=85);

}



#menuBar ul ul li a {

	text-align: left;

	color: #bef;

}



#menuBar ul ul li a:hover {

	color: #fff;

}



#menuBar ul li:hover ul, #menuBar ul li a:hover ul {

	visibility: visible;

}



li .menu .subMenu li a:hover {

	color: black;

}



