
/* ------------------------------------------------------ */
/* Standard constructions that should apply to all menus. */
/* Edit these definitions should not be required.         */
/* ------------------------------------------------------ */
.menuItemsContainer .menuItem, .menuItemsContainer .expandItem {
	display: block;
}
.horizontalMenu .menuItem, .horizontalMenu .expandItem, .horizontalMenu .separator {
	float: left;
}
.verticalMenu .menuItem, .verticalMenu .expandItem {
	/*width: 100%;*/
}
.menuItemsContainer .dropItem {
	display: block;
	clear:left;
	cursor: pointer;
	white-space: nowrap;
}
.menuItemsContainer .dropDown {
	position: absolute;
	z-index: 100000;
	visibility: hidden;
	top: 0px;
	left: 0px;
	padding: 0px;
	margin: 0px;
}
.menuItemsContainer li {
	display: inline;
}
.menuItemsContainer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* ------------------------------------------------------ */
/* The following classes should be modified to customize  */
/* the appearance of your menu. */
/* ------------------------------------------------------ */



.Menu {
}

/* Main Nav */
.Menu .menuItem {
	margin-right: 3px;
}

/* Main Nav Dropdowns */
.Menu .dropItem {
	text-align: left;
	background-color: #58a618;
	padding: 0px 10px;
	line-height: 17px;
	font-size: 11px;
	text-decoration: none;
	border: 1px solid #58a618;
	border-bottom: 0px;
	color: white;
}
.Menu .dropLastItem {
	border-bottom: 1px solid #58a618;
}
.Menu .dropItem:hover {
	background-color: #d7eab2;
	color: black;
	text-decoration: none;
}


/* Main Nav Expander */
.Menu .expandItem {
	background-color: yellow;
	padding: 0px 10px 0px 20px;
	line-height: 17px;
	font-size: 11px;
	text-decoration: none;
	border: 1px solid #ccc;
	border-bottom: 0px;
	color: red;
}
.Menu .expandLastItem {
  /*  border-bottom: 1px solid pink;*/
}
.Menu .expandItem:hover {
	background-color: #f7f7f7;
	color: black;
	text-decoration: none;
}
.Menu .expandArrowItem, .Menu .dropArrowItem {
	background-image: url(../Images/menuArrowBlack.gif);
	background-repeat: no-repeat;
	background-position: center right;
}

.Menu .beforeExpandItem {
	/*color: blue;*/
	border-bottom: 0px;
}
.Menu .afterExpandItem {
	/*color: red;*/
	/*border-top: 1px solid black;*/
}

/* Currently selected items are highlighted the same colour in both main and dropdown nav */
.Menu .currentItem, .Menu .dropCurrentItem, .Menu .expandCurrentItem {
	background-color: green;
}
/********************************************************************************/



.FooterMenu .menuItem {
	font-size:10px;
	color:#FFFFFF;
	padding-left: 0.3em;
	padding-right: 0.3em;
	text-decoration: none;
}
.FooterMenu .separator {
	font-size:10px;
	color:#FFFFFF;
}
