/*
    Title:          Menu.css
    Author:         Gary Hodge
    Date:           27/11/07
    Synopsis:       menu style
    Last Mod:       3/12/07 SP
*/



#navigation ul{
    list-style-type:none;
    padding:0;
    margin:0;
    background:#fff;
}

#navigation li{
    float:left;
    position:relative;
    z-index:100;
    background-color:#fff;
}

/* style all the links */
#navigation a, #navigation :visited{
    display:block;
    font-size:12px;
    width:124px;
    padding:5px 0;
    color:#fff;
    /*background:#69f;*/
    background: url(../images/nav_grad.gif) repeat-x;
    text-decoration:none;
    margin-right:1px;
    text-align:center;
    font-weight:bold;
    border-bottom:0;
}

#navigation a.sel{
    color:#fff;    
    background: url(../images/navsel_grad.gif) repeat-x;
}

#navigation .short{
    width:81px!important;
}

#navigation .long{
    width:174px!important;
}

/* style all the links */
#navigation .sub_navigation a, #navigation .sub_navigation :visited{
    display:block;
    font-size:0.9em;
    width: 167px;
    padding: 2px 0 2px 6px;
    color:#000;
    background:#fff;
    text-decoration:none;
    text-align:left;
    border-bottom: solid 1px #deecf7;
    border-left: solid 1px #3366cc;
    border-right: solid 1px #3366cc;
    line-height: 1.4em;
    font-weight:normal;
    margin:0px;
}

#navigation .navigation_end{
    margin-right:0px!important;
}

#navigation .end{
    margin-left:-100px;
}

#navigation .sub_navigation_end{
    width: 167px!important;
    position:relative;
}

#navigation .sub_navigation .bottom{
    border-bottom: solid 1px #3366cc;
    padding: 2px 0 2px 6px!important;
}

/* link hover */

#navigation a:hover{
    background: url(../images/navover_grad.gif) repeat-x;    
}

/* These cause issues in later version of IE6! */

/* sub item link hover */

#navigation .sub_navigation a:hover{
    width: 167px!important;
    color:#000;
    background:#deecf7;
}

/* hide sub level links */

#navigation ul ul{
    visibility:hidden;
    position:absolute;
    width:125px;
    height:0;
}

/* make the sub level visible */
#navigation ul li:hover ul{
    visibility:visible;
}

#navigation ul a:hover ul{
    visibility:visible;
}

#navigation li a:hover{
    visibility:visible;
}


