#myjquerymenu{
background-image:url(/images/menuBG1.jpg);
background-position:right top;
background-repeat:no-repeat;
height:46px;
width:811px;
}

.jquerycssmenu{
	font: normal 22px "Times New Roman", Times, serif;
	padding-right: 32px;
	color: #a34754;
	z-index: 0;
}

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

/*Top level list items*/
.jquerycssmenu ul li{
	position: relative;
	display: inline;
	float: right;
	width: auto;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
padding: 0px;
margin-right: 30px; /*spacing between tabs*/
margin-top: 12px;
color: #a34754;
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
	position: absolute;
	right: 0;
	display: block;
	visibility: hidden;
	list-style-type: none;
	width: 170px;
	margin-right: 30px;
	overflow: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{

float: right;
width: auto;
}

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

}
* html .jquerycssmenu ul li a{ /*IE6 get sub menu links to behave correctly*/
display: block;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font: normal 13px Arial;
width: 170px; /*width of sub menus*/
background: #c0c0c0;
color: black;
padding: 4px 5px;
margin: 0px;
border-top-width: 0;
border-bottom: 1px solid #FFFFFF;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #ba4555;
color: #ffffff;
width: 170px;
}

