﻿/* ================================================================ 
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/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
width:730px; 
position:relative;
z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:250px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li
{
	position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
text-decoration:none; 
color:#647cbf;
width:250px;
border:1px solid #ebebeb; 
border-width:0 0 1px 0; 
background:white;
text-align:left;
padding:5px 4px 5px 4px;
font-size:9pt;
font-family:Verdana;
line-height:15px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:150px;
width:250px;
}

/* 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;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
top:31px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the top level hover */
.menu a:hover{
color:#da4714;
background:#ebebeb;
}
.menu :hover > a {
color:#da4714;
background:#ebebeb;
}

/* 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;
position:absolute;
top:-1px;
left:258px;
z-index:100;
padding:10px;
width:450px;
height:100%;
text-align:left;
background-color:White;
border:solid 1px #ebebeb;
color:#545454;
font-family:Verdana;
font-size:9pt;
line-height:15px;
}


.menu ul ul a.link-report, .menu ul ul a.link-report:visited
{
    color:#647cbf;
    font-family:Verdana;
    font-size:8pt;
	display:inline;
	text-decoration:none;
	background-color:white;
	text-align:left;
	border:none;
}
.menu ul ul a.link-report:hover
{
    color:#eeb334;
    background-color:white;
}
