
.menu ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
/*Top level list items*/
.menu ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	display: inline;
	float: left;
	background-color: #CCCCCC; /*overall menu background color*/	
}
/*Top level menu link items style*/
.menu ul li a {
	display: block;
	/*width: auto;*/ /*Width of top level menu link items*/
	padding: 5px 6px 4px 2px;
	border: 5px;
	border-left-width: 0;
	text-decoration: none;
	color: #ffffff;
}
/*1st sub level menu*/
.menu ul li ul {
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #cccccc;
	color: #cccccc;
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu ul li ul li {
	display: list-item;
	float: none;
	background-color: #ffffff;
	top: 0px;
	border-width: 0px 0px 0px 0px;
	/*border: 1px solid #ccc;*/
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.menu ul li ul li ul{ 
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
}

/* Sub level menu links style */
.menu ul li ul li a{
	display: block;
	* display: inline;
	width: 120px; /*width of sub menu levels*/
	color: #808080;
	text-decoration: none;
	padding: 1px 5px;
}

.menu ul li a:hover{
	background-color: #CCCCCC;
	color: #808080;
	text-decoration: none;
}


#bar{
	font-size : 14px;
	color : #999999;



/*Background image for top level menu list links */
/*.menu .mainfoldericon{
	background: #c2a64c url(/images/menu_arrow.gif) no-repeat center left;
}*/

/*Background image for subsequent level menu list links */
/*.menu .subfoldericon{
	background: #fefefe url(/images/small-arrow1.jpg) no-repeat center left;
}*/

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .menu ul li { float: left; height: 1%; }
* html .menu ul li a { height: 1%; }
/* End */
