/************************************************************************
 * Author: $Author: elisa $
 * Header: $Header: c:\src\webmyriad/webcms/menu.css,v 1.2 2009/10/19 03:13:56 elisa Exp $
 * Purpose: 	Navigation menu
 *
 * Id: $Id: menu.css,v 1.2 2009/10/19 03:13:56 elisa Exp $
 * Log: $Log: menu.css,v $
 * Log: Revision 1.2  2009/10/19 03:13:56  elisa
 * Log: color changes and transparancy
 * Log: Committed on the Free edition of March Hare Software CVSNT Server.
 * Log: Upgrade to CVS Suite for more features and support:
 * Log: http://march-hare.com/cvsnt/
 * Log:
 * Log: Revision 1.1.1.1  2009/09/19 09:35:35  elisa
 * Log: Imported sources
 * Log: Committed on the Free edition of March Hare Software CVSNT Server.
 * Log: Upgrade to CVS Suite for more features and support:
 * Log: http://march-hare.com/cvsnt/
 * Log:
 * Tag: $Name$
 * Revision: $Revision
 * $Source
 * 
*************************************************************************/
/* CSS Document */
.menu {
	width: 550px;
	font-family: Times New Roman;
	font-size: 16px;
	color: #CCCCCC;
	/*text-transform: uppercase;*/
}


/* remove all the bullets, borders and padding from the default list styling */
.menu ul{
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu ul ul{
	z-index: 1000;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li{
	display:block;
	float:left;
	position:relative;
	text-align:left;
	white-space:nowrap;
	
}

/* style the links for the top level */
.menu a, .menu a:visited, .menu a:link{
	/*display:block;*/
	display:inline-block;
	line-height:40px;
	height:40px;
	text-decoration:none; 
	border:0 none;
	color:#CCCCCC;
	text-align:center;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited{
	width:102px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:18px;
	left:0; 
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:18px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; 
	top:0; 
	left:0;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	/*display:block;*/
	padding-left:4px;
	font-family: Helvetica, sans-serif;
	/*font-family:Arial;*/
	font-size:14px;
	display:inline-block;
	background:#708A70;
	filter: alpha(opacity:1);     
	KHTMLOpacity: 1;     
	MozOpacity: 1;     
	-khtml-opacity:1;    
	-ms-filter:”alpha(opacity=100)”;    
	-moz-opacity:1;  
	filter:alpha(opacity=100);   
	color:white;
	line-height:28px; /* the height of the mouseoverbox*/ 
	font-size: 10pt;
	height:25px;
}

/* style the top level hover */
.menu a:hover {
	background: none;
}

.menu ul ul a:hover{
	/*display:block;*/
	display:inline-block;
	color:white; 
	background:#657665;	
}

.menu :hover > a {
	color:white;
	background: #708A70;
}

.menu ul ul :hover > a {
	color:white;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
	visibility:visible; 
}

