﻿/* ================================================================ 
This copyright notice must be untouched at all times.
The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/v_menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.v_menu {
    height:34px; 
    position:absolute;
    top:0px;
    left:170px; 
    z-index:100;
    border-right:0px none #000;
    letter-spacing: -1px;
}
/* hack to correct IE5.5 faulty box model */
* html .v_menu {
    position: absolute; 
    /* width:746px; */
    /* w\idth:745px; */
}
/* remove all the bullets, borders and padding from the default list styling */
.v_menu ul {
    padding:0;
    margin:0;
    list-style-type:none;
}
.v_menu ul ul {
    /* width:149px; */
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown v_menu positon */
.v_menu li {
    float:left;
    /* width:149px; */
    position:relative; 
}
/* style the links for the top level */
.v_menu a, .v_menu a:visited {
    display:block; 
    text-decoration:none; 
    color:#fff; 
    /* width:138px; */
    height:34px; 
    border:0px none #000; 
    border-width:1px 0 1px 1px; 
    background-color: #0093dd; 
    padding-left:9px; 
    line-height:36px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .v_menu a, * html .v_menu a:visited {
    /* width:149px; */
    /* w\idth: 138px; */
    float: left;
    line-height:34px;
}
/* style the second level background */
.v_menu ul ul a.drop, .v_menu ul ul a.drop:visited {
    background-color:#eef2f1;
}
/* style the second level hover */
.v_menu ul ul a.drop:hover {
    background-color:#c9ba65;
}
.v_menu ul ul :hover > a.drop {
    background-color:#c9ba65;
}
/* style the third level background */
.v_menu ul ul ul a, .v_menu ul ul ul a:visited {
    background-color:#e2dfa8;
}
/* style the third level hover */
.v_menu ul ul ul a:hover {
    background-color:#b2ab9b;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.v_menu ul ul {
    visibility:hidden;
    position:absolute;
    height:0;
    top:34px;
    left:0; 
    width:149px;
    border:0px none #000;
}
/* another hack for IE5.5 */
* html .v_menu ul ul {
    top:33px;
    t\op:34px;
}
/* position the third level flyout v_menu */
.v_menu ul ul ul {
    left:149px; 
    top:-1px; 
    width:149px;
}
/* position the third level flyout v_menu for a left flyout */
.v_menu ul ul ul.left {
    left:-149px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.v_menu table {
    position:absolute; 
    top:0; 
    left:0; 
    border-collapse:collapse;
}
/* style the second level links */
.v_menu ul ul a, .v_menu ul ul a:visited {
    background-color:#eef2f1; 
    color:#000; 
    height:auto; 
    line-height:1em; 
    padding:5px 10px; 
    width:140px;
    border-width:0px;
    filter:alpha(opacity=80);
    -moz-opacity:.80;
    opacity:.80;
}
/* yet another hack for IE5.5 */
* html .v_menu ul ul a, * html .v_menu ul ul a:visited {
    width:150px;
    w\idth:140px;
}
/* style the top level hover */
.v_menu a:hover, .v_menu ul ul a:hover{
    color:#e87817; 
    background-color:#fff;
}
.v_menu :hover > a, .v_menu ul ul :hover > a {
    color:#e87817; 
    background-color:#fff;
}
/* make the second level visible when hover on first level list OR link */
.v_menu ul li:hover ul,
.v_menu ul a:hover ul {
    visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.v_menu ul :hover ul ul {
    visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.v_menu ul :hover ul :hover ul{ 
    visibility:visible;
}
/* uppercase top level links */
.uppercase {
    text-transform: uppercase;
    border-right:1px solid #FFFFFF;
    line-height: 18px;
    position: relative;
    top: 9px;
    padding-right: 10px;
}
.lastMenuItem {
    border-right:0px solid #FFFFFF;
}