﻿.menu{
font: normal 12px arial;
background: #d6cbc9;
width: 100%;float:left;text-transform:capitalize;
border-top: #3F6075;
border-left: #3F6075;
border-right: #3F6075;
}

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

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

/*Top level menu link items style*/
.menu ul li a{
display: block;
background: #d6cbc9; /*background of tabs (default state)*/
color: white;
padding: 5px 15px;
border-right: #3F6075;
color: #381c00;
text-decoration: none;
outline:none
}

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

.menu ul li a:link, .menu ul li a:visited{
color: #381c00;
}

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

/*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 vertical offset after 1st level sub menu */
.menu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.menu ul li ul li a{
font: normal 13px arial;
width: 160px; /*width of sub menus*/
padding: 3px 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid #3F6075;
}

.menuz ul li ul li a:hover{ /*sub menus hover style*/
background:#c7c39d;
color: black;
}

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

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

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