/* Style sheet for drop down menus */

/* stops indenting the drop downs and over rides default list format */
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* padding used to position text in drop down box */ 
#nav li li a {
	display: block;
}

/* definition of each menu item*/
#nav li {
	float: left;
	position: relative;
	width: 144px;
	text-align: center;
	vertical-align:middle;
	background-image: url(/images/grad-b4.jpg);
	background-repeat:repeat-x;
	height:25px;
	line-height: 25px;
	border-left: 1px solid #fff;
	font-size:13px;
	font-family: Helvetica, Arial, Verdana, sans-serif;
}

/* any specifics for the first and last element */
li#first {
	width: 65px;
}

li#last {
	width: 152px;
}

/*this stuff displays the drop downs*/
li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
}

li>ul {
	top: auto;
	left: auto;
}

li li {
	display: block;
	float: none;
	border: 0;
}

li:hover ul, li.over ul {
	display: block;
}

hr {
	display: none;
}

/* stops indenting the drop downs and over rides default list format */
.list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

