﻿/* ================================================================ 
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/basic_dd.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.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.navmenu ul{
list-style-type:none;
padding:0px;
margin:0px;
z-index: 78;

}

/* make the top level links horizontal and position relative so that we can position the sub level */
.navmenu li{
	float: left;
	position: relative;
	z-index: 78;
	padding: 1px;
	margin: 0px;
	background-color: #003366;
}

/* use the table to position the dropdown list */
.navmenu table{
position:absolute;
border-collapse:collapse;
z-index: 78;
top:24px;
left:0;
}

/* style all the links */
.navmenu :visited {
display:block;
font-size:11px;
font-family: Arial, Trebuchet, sans-serif;
font-weight:bold;
height:28px;
width:78px;
color:#003366;
background:#FFD700;
text-decoration:none;
}

.navmenu a {
display:block;
font-size:11px;
font-family: Arial, Trebuchet, sans-serif;
font-weight:bold;
height:28px;
width:78px;
color:#003366;
background:#FFD700;
text-decoration:none;
text-align:center;
}

/* style the links hover */
.navmenu :hover{
color:#FFD700;
background:#003366;
vertical-align:middle;
}

/* hide the sub level links */
.navmenu ul ul {
visibility:hidden;
position:absolute;
height:28px;
width:78px;
}

/* make the sub level visible on hover list or link */
.navmenu ul a:hover ul{
visibility:visible;
}
.navmenu ul li:hover ul{
visibility:visible;
}

.breadcrumb{
	display: block;
	font-size: 10px;
	font-family: Arial, Trebuchet, sans-serif;
	color: #FFFFFF;
	text-indent: 6px;
}

.breadcrumb a{
text-decoration: none;
padding-right: 10px; /*adjust bullet image padding*/
color: #FFFFFF;
}

.breadcrumb a:visited, .breadcrumb a:active{
	color: #F56610;
}

.breadcrumb a:hover{
text-decoration: underline;
}

