/* 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*/
li {
	float: left;
	position: relative;
	width: 110px;
	text-align: center;
	vertical-align:middle;
	height:25px;
	line-height: 25px;
	background-color: #FBEFD7;	
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
	margin-bottom:0px;
	font-size:14px;
}

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

li#last {
	width: 110px;
	border-right: 1px solid #000;
}

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

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

li li {
	display: block;
	float: none;
	border: 1px solid #000;
}

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

hr {
	display: none;
}
