.MenuBarCss{
	/*font: bold 12px Verdana;*/
	/*background: #414141;*/
	width: 820px;
}

.MenuBarCss ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.MenuBarCss ul li{
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.MenuBarCss ul li a{
	font-size:13px;
	display: block;
	/*background: #414141;*/ /*background of tabs (default state)*/
	/*color: white;*/
	padding: 0.3em 0.75em;
	/*border-right: 1px solid #ccc;*/
	text-decoration: none;
}

* html .MenuBarCss ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
	text-decoration: none;
}

.MenuBarCss ul li a:link, .MenuBarCss ul li a:visited{
	/*color: white;*/
}

.MenuBarCss ul li a:hover{
	text-decoration: none;
	/*background: black;*/ /*tab link background during hover state*/
	/*color: white;*/
}
	
/*1st sub level menu*/
.MenuBarCss ul li ul{
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.MenuBarCss ul li ul li{
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.MenuBarCss ul li ul li ul{
	top: 0px;
}

/* Sub level menu links style */
.MenuBarCss ul li ul li a{
	text-align:left;
	background-color:#ccc;
	/*font: normal 13px Verdana;*/
	width: 18em; /*width of sub menus*/
	padding: 0.3em 0.5em;
	margin: 0px;
	border: 1px solid #eee;
}

.MenuBarCss ul li ul li a:hover{ /*sub menus hover style*/
	background-color: #eee;
	text-decoration: none;
	/*color: black;*/
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass{
	position: absolute;
	top: 6px;
	right: 5px;
}