/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/*******************************************************************/
/*Feuille de style - Site internet NEONS						   */
/*copyright Departement des affaires culturelles - Ville de Geneve */
/*******************************************************************/


.menu {
	width:320px;
	z-index:100;
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	top:170px;
	left:467px;
	z-index:100;
	}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	font-size:12px;
	}
	
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	height:25px; 
	line-height:25px;
	padding:0 10px 0 5px;
	text-decoration:none;
	}
	
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	/*width:181px;
	w\idth:170px;*/
	}
	
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
	line-height:25px;
	}
	
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	width:130px;
	border:#ccc solid;
	border-width:1px 0 0 0;
	visibility:hidden;
	position:absolute;
	top:25px;
	left:0; 
	}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:24px;
	t\op:25px;
	}

/* 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 {
	background:#ffc;
	color:#666; 
	font-size:12px;
	width:123px;
	padding:0 0 0 5px;
	border:#ccc solid;
	border-width:0 1px 1px 1px;
	/* yet another hack for IE5.5 */
	}
* html .menu ul ul a{
	/*width:186px;
	w\idth:175px;*/
	}
	
/* style the top level hover */
.menu a:hover, .menu ul a:hover{
	color:#333; 
	background:#fff;
	}
.menu :hover > a, .menu ul :hover > a {
	color:#666;
	background:#fff;
	}

/* style the second level hover */
.menu ul ul a:hover{
	color:#333; 
	background:#fff;
	}
.menu ul ul :hover > a {
	color:#333;
	background:#fff;
	}


/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible; 
	}

