/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.menu{
	text-align:center;
}
.menu ul{
	margin: auto;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.menu ul li{
	position: relative;
	display: inline;
	float: left;
	margin-left:2px;
	margin-right:2px;
}

/*Top level menu link items style*/
.menu ul li a{
	display:block;
	width:121px;
	height:44px;
	background-image:url(images/menuBtn.jpg);
	background-repeat: no-repeat;
	background-position: top left;

	color:#FFF;
	text-decoration: none;
	font-size:12pt;
	font-family: Verdana;
	line-height:35pt;
}
.menu ul li a:hover{font-size: 14pt;}
	
/*1st sub level menu*/
.menu ul li ul{
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;
}

/*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, 
.menu ul li ul li,
.menu ul li ul li a,
.menu ul li ul li a:hover{height:25px;}

.menu ul li ul li a{
	display: block;
	width: 160px; /*width of sub menu levels*/
	background-image:none;
	background-color: #994f69;
	border:1px solid #333;
	color: #FFF;
	font-size:10pt;
	text-decoration: none;
	padding: 1px 5px;
	border-top:0px solid #ccc;
	font-family: Verdana;
	line-height:15pt;
	text-align:left;
}
.menu ul li ul li a:hover{background-color:#cd7493;font-size:10pt;}

/*Background image for top level menu list links */
.menu .mainfoldericon{
/*background: #F3F3F3 url(images/arrow-down.gif) no-repeat center right;*/
}

/*Background image for subsequent level menu list links */
.menu .subfoldericon{
background: #F3F3F3 url(images/arrow-right.gif) no-repeat center right;
}

* 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:44px;}
* html .menu ul li a { height:44px; }
* html .menu ul li ul, html .menu ul li ul li, html .menu ul li ul li a, html .menu ul li ul li a:hover{height:25px;}
/* End */