/* 
BSSD Website Navigation Designed by John Thomas Young, Inshore Technologies, Inc.
Used to control the top navigation menu system on every page.
 */

.menu {
width:948px; 
font-size:14px;
position:relative;
z-index:100;
padding:0;
margin: 0;
height: 40px;
}
/* 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:150px;
}
/* float the list */
.menu li {
float:left;
width:150px;
position:relative;
height: 40px;
}
/* style the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#000000;
	width:139px;
	height:40px;
	background:#FFFFFF url(imgs/navbar.jpg) repeat-x;
	padding-left:10px;
	line-height:40px;
	font-family: "Palatino Linotype", "Times New Roman";
}
/* a hack IE5.5 */
* html .menu a, * html .menu a:visited {
width:150px;
w\idth:139px;
}

/* 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:40px;
top:31px;
left:0; 
width:150px;
padding: 0;
margin: 0;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}

/* style the table so that it takes no part 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 {
font-size:12px;
background:#EEEEEE; 
color:#000; 
height:40px; 
line-height:1em; 
padding:5px 10px; 
width:129px
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.menu a:hover,
.menu ul ul a:hover
{	height:40px;
	color:#fff; 
	background: #CACACA;
}
.menu :hover > a,
.menu ul ul :hover > a
{	color:#fff;
}

/* 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;
	background-color: #E2E2E2;
}
