#Menu
{
    font-family: Trebuchet, Verdana, Arial, Tahoma;
    font-size: 1em;
    background-color: #b17d30;
    width: 130px; /* 	this width must exist (with any value you need). see note above	 */
    font-weight: bold;
    border-bottom: white 2px solid;
}
.MenuBlock
{
    margin-bottom: 0px;
    margin-top: 0px;
}


#Menu a
{
    text-decoration: none;
    color: #f2e6cc;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    margin: 0px;
    padding-top: 0px;
}
#Menu ul 
{
	padding: 0px;
	list-style-type: none;
	margin: 0px;
}

#Menu li
{
    display: block;
    padding-bottom: 6px;
    padding-right: 6px;
    padding-top: 6px;
    padding-left: 6px;
    border-top: white 1px solid;
}

#Menu li:hover
{
    background-color: #cc9933;
    color: #ffffff;
}

#Menu a:hover 
{
	color: #ffffff;
}







/*
// Taken from http://www.aplus.co.yu/ADxMenu/
// Aleksandar Vacic
// Used under Creative Commons License
*/

/*		------	Basic style	------		*/


/* Fix IE6's inability to expand clickable area */
/*
* html #menu li a {
	position: relative;
}
 */

/*
#menu li ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
}
 */

/*
	using display is better (no scrollbars when page loads),
	but IE can't handle it, so only good browsers should see this
html>body #menu li ul {
	display: none;
}
 */


/* fix the position 
#menu li ul {
	top: 0;
	left: 0;
}
#menu li:hover ul {
	top: 0;
	left: 100%;
}
*/

/* simulate child selector for IE 
div#menu li:hover ul,
#menu li:hover li:hover ul,
#menu li:hover li:hover li:hover ul {
	visibility: visible;
}
div#menu li:hover li ul,
#menu li:hover li:hover li ul,
#menu li:hover li:hover li:hover li ul {
	visibility: hidden;
}
*/

/* do the normal show, with increased specificity, for good browsers 
#menu ul#menuList li:hover>ul {
	display: block;
	visibility: visible;
}
*/

/*		------   Make-up	--------			*/


/*		------   Specific fixes	(thank to W3C box model makers for these) --------			*/
/* 
		I'm gonna move the submenus 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 script re-positioning is applied.
		Of course, script could take care of that, but that takes too much code - this is easier.
#menu li ul {
	margin-top: -5px;
}
*/

/*		------   Fixes	for IE	--------			
* html #menu li:hover ul {
	left: 124px;
}
*/
/* if 100%, then menu will disappear because of margin-right=2px */