﻿.menu
{
    
    width: 1000px;
    font-size: 0.85em;
    background-image: url(../imgs/tab_cat_banner.gif);
    background-repeat:repeat-x;
    z-index: 1;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul
{
    padding: 0;
    margin: 0;
    list-style-type: none;
    z-index: 1;
}
.menu ul ul
{
    z-index: 1; /*width: 150px;*/
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li
{
    float: left; /*width: 150px;*/
    position: relative;
    z-index: 1;
    
}
/* style the links for the top level */
.menu a, .menu a:visited
{
    display: block;
    font-size: 13px;
    text-decoration: none;
    font-family:Arial;
    color: #2f2f2f;
    width: 125px;
    height: 30px;
    border-width: 0px 0px 0px 0px;
    background-image: url(../imgs/tab_cat_banner.gif);
    background-repeat:repeat-x;
    padding-left: 10px;
    line-height: 29px;
    text-align: left;
    font-weight: bold;
    z-index: 1;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited
{
    width: 150px;
    z-index: 1;
    
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited
{
    background: #ffffff;
    z-index: 1;
}
/* style the second level hover */
.menu ul ul a.drop:hover
{
    background: #c9ba65;
    z-index: 1;
}
.menu ul ul :hover > a.drop
{
    background: #c9ba65;
    z-index: 1;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited
{
    background: #e2dfa8;
    z-index: 1;
}
/* style the third level hover */
.menu ul ul ul a:hover
{
    background: #b2ab9b;
    z-index: 1;
}
.menu ul ul ul :hover > a
{
    background: #b2ab9b;
    z-index: 1;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul
{
    visibility: hidden;
    position: absolute;
    height: 0;
    top: 31px;
    left: 0;
    width: 150px;
    z-index: 1;
}
/* another hack for IE5.5 */
* html .menu ul ul
{
    top: 30px;
    z-index: 1;
}

/* position the third level flyout menu */
.menu ul ul ul
{
    left: 150px;
    top: 0;
    width: 150px;
    z-index: 1;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left
{
    left: -150px;
    z-index: 1;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited
{
    background: #B6B6B6;
    color: #000000;
    height: auto;
    line-height: 1em;
    padding: 5px 10px;
    width: 129px;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9; /* yet another hack for IE5.5 */
    z-index: 1;
}
* html .menu ul ul a
{
    width: 150px;
    z-index: 1;
    background-image: url(../imgs/tab_cat_banner.gif);
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover
{
    color: #fff;
    background: #ffffff;
    z-index: 1;
}
.menu :hover > a, .menu ul ul :hover > a
{
    color: #ffffff;
    /*background: #595858;
    Below give thing works at the mouse hover 
    */
    
    background-image: url(../imgs/tab_over.gif);
    z-index: 1;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul
{
    visibility: visible;
    z-index: 1;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul
{
    visibility: hidden;
    z-index: 1;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul
{
    visibility: hidden;
    z-index: 1;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul
{
    visibility: visible;
    z-index: 1;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul
{
    visibility: visible;
    z-index: 1;
}
