/*** ESSENTIAL STYLES ***/
.containerTable {
	width:			975px;
	height:			30px;
}

.containerMain {
	background-color:#745A93; 
	width:			965px;
}

.containerLeftCorner {
	width:			5px;
	background: 	no-repeat url('../images/menu-left.gif');
}

.containerRightCorner {
	width:			5px;
	background: 	no-repeat url('../images/menu-right.gif');	
}

.mwave-menu, .mwave-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.mwave-menu {
	line-height:	1.0;
	position:relative;
}
.mwave-menu ul {
	position:		absolute;
	top:			-999em;
	width:			20em; /* left offset of submenus need to match @@##$$ */
}
.mwave-menu ul li {
	width:			100%;
}
.mwave-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.mwave-menu li {
	float:			left;
	position:		relative;
}
.mwave-menu a {
	display:		block;
	position:		relative;
}

.mwave-menu li:hover ul,
.mwave-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.mwave-menu li:hover li ul,
ul.mwave-menu li.sfHover li ul {
	top:			-999em;
}
ul.mwave-menu li li:hover ul,
ul.mwave-menu li li.sfHover ul {
	left:			20em; /* match ul width @@##$$ */
	top:			0;
}
ul.mwave-menu li li:hover li ul,
ul.mwave-menu li li.sfHover li ul {
	top:			-999em;
}
ul.mwave-menu li li li:hover ul,
ul.mwave-menu li li li.sfHover ul {
	left:			20em; /* match ul width @@##$$ */
	top:			0;
}

/*** SKIN ***/
.mwave-menu {
	margin-left: 9px;
}
.mwave-menu a {
	border-left:	1px solid #fff;
	border-top:		1px solid #745A93; /*drop down box border color*/
	padding: 		.75em .75em;
	text-decoration:none;
}
.mwave-menu a, .mwave-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#FFFFFF; /*text color*/
}
.mwave-menu li {
	background:		#745A93; /*main menu item bg color*/
	font-size:		11px;
	font-weight:	bold;
	font-family:    Tahoma;
}
.mwave-menu li ul li a:visited {
	border-left:	1px solid #fff;
	border-top:		1px solid #fff; 
}
.mwave-menu li li {
	background:		#8E72AF; /*drop down item bg color*/
	font-weight:	normal;
}
.mwave-menu li li li {
	background:		#AA90C9; /*drop down item bg sub-listings color*/
	font-weight: 	normal;
}
.mwave-menu li:hover, .mwave-menu li.sfHover,
.mwave-menu a:focus, .mwave-menu a:hover, .mwave-menu a:active {
	background:		#F8BA21; /*menu item bg hover color*/
	outline:		0;
	text-decoration:none;
}

/*** arrows ***/

/* only add padding to the sub menu(s) since we don't want arrows on the top layer */
.mwave-menu li ul a.sf-with-ul { 
	padding-right:2.25em;
	min-width:1px; /* trigger IE7 hasLayout so spans position accurately */
	}
	
.sf-sub-indicator { background:none; display:none; width:0; height:0; overflow:hidden; } /* overflow:hidden - hides the double arrow that gets inserted! */

.mwave-menu li ul a .sf-sub-indicator {
	background:		url('../images/arrows-ffffff.png') no-repeat -10px -100px;			/* 8-bit indexed alpha png. IE6 gets solid image only */		
	display:block;
	height:10px;
	overflow:hidden;
	position:absolute;
	right:.75em; /* how far from the right to show the arrow */
	text-indent:-999em;
	top:1.05em; /*** IE6 ***/
	width:10px;
	}
	
.mwave-menu li ul a > .sf-sub-indicator { top:.8em; } /* IE6 doesn't understand the child selector, so adjust the value for all other browsers */

/* point right for anchors in subs */
.mwave-menu li ul a .sf-sub-indicator { background-position:-10px 0; }
.mwave-menu li ul a > .sf-sub-indicator { background-position:0 0; }

/* apply hovers to modern browsers */
.mwave-menu ul a:focus > .sf-sub-indicator,
.mwave-menu ul a:hover > .sf-sub-indicator,
.mwave-menu ul a:active > .sf-sub-indicator,
.mwave-menu ul li:hover > a > .sf-sub-indicator,
.mwave-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position:-10px 0; /* arrow hovers for modern browsers*/
}

.mwave-menu ul a {
border-top-color: #fff;
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../images/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}


