	/* Top Row */

.droplinebar {
	position: relative;
	float: left;
	display: inline;
	width: 1000px;
	z-index: 100;
	margin: 0px;
	padding: 0px;
	background:url(../images/nav-top-white.jpg) bottom repeat-x; /*default background of menu bar*/
}

/* hack to correct IE5.5 faulty box model */
* html .droplinebar { 
	width: 1000px;
	w\idth: 999px;}

/* remove all the bullets, borders and padding from the default list styling */
.droplinebar ul { 
	float: left;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.droplinebar ul ul {
	width: 149px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.droplinebar li { 
	float: left;
	position: relative;
}

/* style the links for the top level */
.droplinebar li a {
	display: block;
	padding:6px 15px;
	color:#00769b;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	text-transform:uppercase;
	outline: none;
}

.droplinebar li a:hover{
	color:#333;
	background: url(../images/nav-top-grey.jpg) repeat-x;
}

/* a hack so that IE5.5 faulty box model is corrected 
* html .droplinebar a, * html .droplinebar a:visited { 
	width: 149px;
	w\idth: 138px;
}*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
.droplinebar ul ul { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	top: 27px;
	left: 0px;
	width: 100px;
}

/* another hack for IE5.5 */
* html .droplinebar ul ul { 
	top: 27px;
	t\op: 26px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.droplinebar table {
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
}

/* style the second level links */
.droplinebar ul ul a, .droplinebar ul ul a:visited {
	background: url(../images/nav-top-grey.jpg) repeat-x;
	padding: 6px 15px;
	color: #00769b;
	height: auto;
	line-height: 15px;
	width: 150px;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
}

/* yet another hack for IE5.5 */
* html .droplinebar ul ul a, * html .droplinebar ul ul a:visited {
	width: 150px;
	w\idth: 149px;
}

/* style the top level hover */
.droplinebar a:hover{
	color:#333333;
	background: url(../images/nav-top-grey.jpg) repeat-x;
	text-decoration: none
}

.droplinebar ul ul a:hover{
	color:#333;
	background:#CCC;
}

.droplinebar :hover > a {
	color:#007dc3;
}

.droplinebar ul ul :hover > a {
	color:#333;
	background:#CCC;
}

/* make the second level visible when hover on first level list OR link */
.droplinebar ul li:hover ul,
.droplinebar ul a:hover ul{
	visibility: visible;
}