
/* ------------------------------------------------------ */
/* Standard constructions that should apply to all menus. */
/* Editing 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 {
	padding:0px;
	margin:0px;
	list-style:none;
	font-size:16px;
}

/* Main Nav */

.Menu .menuItem {
	text-decoration:none;
	color:#858585;
	width:130px;
	padding:6px 0px 6px 0px;
	display:block;
	border-top:1px #CCCCCC dashed;
}
.Menu .menuItem:hover {
	color:#f15a29;
}
.Menu .firstItem {
	border-top:none;
}


/* Main Nav Expander */
.Menu .verticalMenu ul li ul{
	padding:3px 0px 15px 0px;
}
.Menu .expandItem {
	margin:0px;
	font-size:12px;
	font-weight:normal;
	color:#858585;
	padding:2px 0px 2px 0px;
	text-decoration:none;
}
.Menu .expandItem:hover {
	color:#f15a29;
}

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

/********************************************************************************/

/* Point 6 Difference Side Menu */

.DiffMenu {
	padding:0px;
	margin:0px;
	list-style:none;
	font-size:14px;
	margin-top:230px;
}

/* Main Nav */

.DiffMenu .menuItem {
	padding:4px 9px 4px 12px;
	margin-top:2px;
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	float:right;
	clear:both;
	height:20px;
	white-space:nowrap;
}

.DiffMenu .menuItem:hover {
	color:#f15a29;
	background-color:#FFFFFF;
	
}


/* Currently selected items are highlighted the same colour in both main and dropdown nav */
.DiffMenu .currentItem {
	
	color:#f15a29;
	background-color:#FFFFFF;
}

/********************************************************************************/



