/* All <ul> tags in the menu including the first level */
.mainMenuClass, .mainMenuClass  ul {
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 1001;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.mainMenuClass ul {
	visibility: hidden;
	position: absolute;
	top: 1.7em; /* I'm using ems rather than px to allow people to zoom their font */
	left: -1px;
	width: 150px;
}

/* Second and third etc. level submenus - position across from parent instead */
.mainMenuClass ul ul {
	top: 0px;
	left: 155px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.mainMenuClass li {
	float: left;
	position: relative;
		margin-right: -1px;
	border-left: 1px solid #939B8A;
}
/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.mainMenuClass li ul li {
	float: none;
	color: #FFFFFF;	background-color: #6E4222;	border: 1px solid #939B8A;
	margin-top: -1px;
}
.mainMenuClass li ul li a:hover {
	border: 0;
}
.mainMenuClass ul>li:last-child {
	margin-bottom: 0px;
}

/* Links inside the menu */
.mainMenuClass a {
	display: block;
	padding: 0px 8px 3px 8px;
	
	font-family: "Trebuchet MS", "Times New Roman", Times, serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration:  none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.mainMenuClass a:hover, .menulist a.highlighted:hover, .mainMenuClass a:focus {
	color: #FFFFFF;
	background-color: #8F5A32;	border-bottom: 1px solid #939B8A;
}
.mainMenuClass  a.highlighted {
	color: #FFFFFF;
	background-color: #8F5A32;	border-bottom: 1px solid #939B8A;
}

/*** Current Item ***/
.menuCurrentItem a {
	color: #FFFFFF;	background-color: #6E4222;	border-bottom: 1px solid #939B8A;
}
.menuCurrentItem li a {
	color: #FFFFFF;		border-bottom: 0;
}



/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.mainMenuClass a {
 float: left;
}
.mainMenuClass ul a {
 float: none;
}
/* \*/
.mainMenuClass a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .mainMenuClass  ul li {
 float: left;
 height: 1%;
}
* html .mainMenuClass  ul a {
 height: 1%;
}
/* End Hack */


.BTNForms {
	background: url(../images/btn_silver.gif); background-repeat: repeat-x;
	border: 1px ridge #E3E3E3;
}

#main {
	border: 1px solid #939B8A;
	border-top: none;
}
