
.menu {
 height: 35px;
 width:700px;
 display:table-cell;
 margin:0;
 padding:0;
 background-image: url(../images/nav_bg.jpg);
 background-position: top left;
 background-repeat: repeat-x;
 z-index: 6000;
 border-bottom: 1px solid red;
border-top: 1px solid black;
 }


#nav, #nav ul /* all lists */
{ 
	padding: 0 0 0 2px;
	margin: 0;
	list-style: none;
	line-height: 35px;
	/* height: 69px; */
	display: table;
}

#nav a /*menu items*/
{
	/* height: 69px; */
	/*padding: 1px 8px 1px 8px;*/
	text-align : center;
	text-decoration: none;
	display: block;
	color: #ffffff;
	text-transform: uppercase;
	font-family: arial,verdana,helvetica;
	font-size:55%;
	font-weight: normal;
}

#nav a:hover  /*menu items*/
{

	display: block;
	color : #ba0000;

}

#nav li ul li a:hover  /*menu items*/
{

	display: block;
	background-color : #ba0000;
	color : #ffffff;
}

#nav li /* all list items */
{ 
	float: left;
	width: auto;
	width: 114px;
	/* height: 69px; */
	text-align: center;
	position: relative;
	border-right: 1px solid #000000;
	border-left: 1px solid #6e0202;
	z-index: 6000;

}

#nav #first {
 border-left: 0;
 }

#nav #last {
 border-right: 0;
}

#nav li ul li /* all menu items */
{ 
	width: auto;
	width: 114px;
	padding : 3px 0 3px 0;
	text-align: left;
	line-height : 20px;
	height : 20px;
	background: #6E0202;
	border-top: 1px solid #ccc;
}

#nav li ul  /* menus */
{ 	
	/* For a border around the drop-down, turn this on. 
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;*/
	margin-top: 0px;
	position: absolute;
	width: auto;
	width: 114px;
	display:none;
	margin-left: 0;
}

#nav li:hover ul ul, #nav li.sfhover ul ul  /* IE sucks */
{
	left: -999em;

}

/* lists nested under hovered list items */
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul 
{ 
	left: 0;
	display: block;
	height  : 20px;

}

a.top /* make the actual menu 'buttons' look different */
{
	color: #ccc;
	font-weight: normal;



}

a.selected /* make the actual menu 'buttons' look different */
{
	color: #ccc;
	font-weight: normal;
	background: transparent;
	border-right:1px solid #ffffec;
	border-top:1px solid #ffffec;

}