
/* ------------------------------------------------------ */
/* Standard constructions that should apply to all menus. */
/* Edit these definitions should not be required.         */
/* ------------------------------------------------------ */
.menuItemsContainer .menuItem, .menuItemsContainer .expandItem {
	display: block;
	/*white-space:nowrap;*/
	white-space:pre;
}
.horizontalMenu .menuItem, .horizontalMenu .expandItem, .horizontalMenu .separator {
	float: left;
	/*white-space:nowrap;*/
	white-space:pre;
}
.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 {
/*	background-color: white;*/
	line-height: 25px;
	font-size: 12px;
	font-weight:bold;
	color: black;
	text-decoration: none;
	padding: 10px 10px 0px 10px;
	margin: 0px;
}
.Menu .hoverItem {
	background-color: #cecece;
	color: black;
	text-decoration: none;
	background-image: url(../Images/bullet-blue-down-hover.gif);
	background-repeat: no-repeat;
	background-position: center 5px;
}

.Menu .menuItem {
	border-left: 0px solid #ccc;
	border-top: 0px solid #ccc;
	border-bottom: 0px solid #ccc;
}
.Menu .lastItem {
	border-right: 0px solid #ccc;
}

/* Main Nav Dropdowns */
.Menu .dropItem {
	background-color: white;
	padding: 0px 10px;
	line-height: 25px;
	font-size: 11px;
	text-decoration: none;
	border: 1px solid #ccc;
	border-bottom: 0px;
	color: black;
}
.Menu .dropLastItem {
	border-bottom: 1px solid #ccc;
}
.Menu .dropItem:hover {
	background-color: #cecece;
	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 {
}

.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 {
	background-color: #dedede;
	background-image: url(../Images/bullet-blue-down-hover.gif);
	background-repeat: no-repeat;
	background-position: center 5px;
}
.Menu .dropCurrentItem {
	background-color: #dedede;
}
.Menu .expandCurrentItem {
	background-color: #dedede;
}
/********************************************************************************/


