/* CSS Document */

#navigation
{
	position:absolute;
	left:-400px;
	top:20px;
	display: block;
	height: 30px;
	margin-left: 0px;
	background-color:#ffffff;
	border: 0px solid black;
	z-index:100;
}

.menu {
width:250px; 
font-size:11px;
position:relative;
z-index:101;
font-family:Arial, Verdana, Helvetica, sans-serif
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}

.menu ul ul {
width:250px;
}

/* 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:250px;
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#ffffff; 
width:250px; 
height:20px; 
border:1px solid #ffffff; 
border-width:1px 1px 0 0; 
background:#cccccc; 
margin-left:10px; 
line-height:20px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:250px;
w\idth:239px;
}

/* 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:21px;
left:0; 
width:251px;
z-index:102;
}

/* another hack for IE5.5 */

* html .menu ul ul {
top:20px;
t\op:21px;
}


/* 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 second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#ffffff; 
color:#a8a9ae; 
height:auto; 
line-height:20px;
text-indent:0px; 
width:250px;
border-bottom:1px solid #649b40;
text-indent:10px;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a{
width:250px;
w\idth:239px;
}


/* style the second level hover */
.menu a:hover, .menu ul ul a:hover{
color:#373536; 
background:#649b40;
}

.menu :hover > a, .menu ul ul :hover > a {
color:#373536; 
background:#649b40;
}

/* 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; 
}



