

/* All <ul> tags in the menu including the first level */

.menulist, .menulist ul {
 margin: 0;
 list-style: none;
 padding-left:0px;
 float:left;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
display: none;
position: absolute;
white-space:nowrap;
background: #e0d9cf ;
margin-top:2px;
list-style: none;
padding-left:0px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul li ul {
display: none;
border:1px solid white;
list-style: none;
}

.menulist ul li a {
border:1px solid white;
}


/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 list-style: none;
 background: #60564d;
 color: #ffffff;
 border-right: 1px solid #a89f96;
 text-align:center;
 
}

.menulist li ul li{
 border-bottom:1px solid #d4cdc5;
 border-right:1px solid #d4cdc5;
 border-left:1px solid #d4cdc5;
 width:200px;
 list-style: none;
 text-align:left;
 background-color:#e0d9cf;
}

/* 2nd tier sub nav*/
.menulist li a:link, .menulist li a:visited {
color: #ffffff;
text-decoration: none;
display: block;
padding-top:9px;
padding-bottom:9px;
padding-right:25px;
padding-left:25px;
margin:0px;
font-weight:500;
}

.menulist li a:hover {
color: #ffffff;
text-decoration: none;
background-color: #7f7266;
}

/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
 border-width: 0;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/

/*for hover color */
.menulist ul li a:hover, .menulist ul li a.highlighted:hover, ul li .menulist a:focus {
 background-color: #fdb94e;

 
}
.menulist a.highlighted {
 list-style: none;
 margin: 0;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. 
.menulist a .subind {
 float:none;
}*/

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
}

* html .menulist li {
 float: left;
 height: 1%;
}


/* End Hacks */