/*		------   Make-up	--------			*/

#ctl00_menu {
	font-family: Tahoma, sans-serif;
	font-size: 0.9em;
	color: #000;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	height: 28px;/* 	Height mentioned above	 */
}

#ctl00_menu a {
	text-decoration: none;
	text-align: center;
	color: #000;
	padding: 4px 5px 5px;
}

#ctl00_menu li {
	margin: 2px;
	padding: 1px;
}
/**/
#ctl00_menu li:hover {
	background-color: #ddd;
	padding: 0;
	border: 1px solid #ccc;
}


#ctl00_menu li li {
	width: 124px;/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
}

#ctl00_menu li ul {
	color: #000;
	background-color: #fff;
	background-repeat: repeat-y;
	border: 1px solid #ccc;
	width: 130px;
}

#ctl00_menu li ul a {
	text-align: left;
	padding-left: 15px;
}
#ctl00_menu a.csssubmenu {
	background-image: url(gfx/downarrow.gif);
	background-repeat: no-repeat;
	background-position: 0 11px;}

#ctl00_menu li ul a.csssubmenu {
	background-image: url(gfx/arrow.gif);
	background-repeat: no-repeat;
	background-position: 100% 5px;
}

/*		------   Specific fixes	(thank to W3C for these) --------			*/
/* 
		I'm gonna move the csssubmenus 5px up
		5px works fine here and it is roughly calculated as:
			padding-bottom + margin-bottom + border-bottom of the LI
			+
			*-top values of the LI
			
		Mostly it needs a bit of trial and error.
		Basic idea is to remove the scrollbar when menu re-positioning is perfomed. Of course, script could take care of that, but that takes too much code - this is easier.
*/
#ctl00_menu li li ul {
	margin-top: -5px;
}


/* dms
this causes the menus in FF to always be visible
#ctl00_menu ul ul {
display:block!important;
}
*/