﻿#menu ul, #menu li { /* using a list for menu */
list-style-type: none;  /* cleaning up the list */
margin:0;
padding:0;
}

#menu ul {
position: absolute; /* positionning for IE5 et IE5.5 */
padding-top:10px;
left: 0px;
top: 0px;
width: 200px;
text-align: center;
}

#menu li {

background-image: url(button.gif);
	background-repeat: no-repeat;
	background-position: center center;
	width: 200px;
}

#menu li a
{
	/* buttons dimensions and definition */
	display: block; /* block for <a> to give it its dimensions */
	height: 35px;
	width: 200px;
	line-height: 35px; /* height of line to avoind paddings */
	font-size: 16px;
	font-family: Verdana, georgia, serif;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	background-image: url(menuknop.gif);
	background-repeat: no-repeat;
	background-position:  30px center;

}


#menu .selected
{
	color:#003466;
}

#menu li a:hover, #menu a.selected 
{
	background: transparent url(menuknop_over.gif);
	background-repeat: no-repeat;
	background-position:  30px center;
}


