.jqueryslidemenu {
width: 640px;
}

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

/*Top level list items*/
.jqueryslidemenu ul li {
position: relative;
display: inline;
float: left;
width: 160px;
z-index: 10;
}

/*Top level menu link items style*/
.jqueryslidemenu ul li a {
display: block;
text-decoration: none;
line-height: 49px;
text-align: left;
}

/*Background Images*/
.howwedoit a {
background: url(images/how-we-do-it.png) no-repeat;
color: white;
}

.howtohelp a {
background: url(images/how-to-help.png) no-repeat;
color: white;
}

.whosupportsus a {
background: url(images/who-supports-us.png) no-repeat;
color: white;
}

.whyitmatters a {
background: url(images/why-it-matters.png) no-repeat;
color: #005fac;
}

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

.jqueryslidemenu ul li ul li a:hover{
background: #010931; /*tab link background during hover state*/
color: white;
}
	
/*1st sub level menu*/
.jqueryslidemenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
}

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

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

/* Sub level menu links style */
.jqueryslidemenu ul li ul li a{
font: normal 90% Arial;
width: 140px; /*width of sub menus*/
padding: 10px;
margin: 0;
border-top-width: 0;
}

.howwedoit ul li a {
background: #005fac;
border-bottom: 1px solid #004190;
}

.howtohelp ul li a {
background: #706fb0;
border-bottom: 1px solid #504f94;
}

.whosupportsus ul li a {
background: #537a7b;
border-bottom: 1px solid #375a5b;
}

.whyitmatters ul li a {
background: #ffd384;
border-bottom: 1px solid #e49200;
}

.jqueryslidemenuz ul li ul li a:hover{ /*sub menus hover style*/
background: #eff9ff;
color: #010931;
}

#myslidemenu {
float: left;
}