#nav {
/*makes sure menu is above content with z-index*/
  position: absolute;
  left: 252px;
  top: -39px;
  margin-top: -22px;
  z-index: 2;
}
#nav, #nav ul {
/* all lists */
	padding: 0;
	margin: 0;
	font-family: helvetica, verdana, geneva, arial, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	list-style: none;
	line-height: 1;
}
#nav li {
/* all list items */
	float: left;
	width: 100px; /* width needed to keep Opera happy */
	text-align: center;
}
#nav li ul {
/* second-level lists inc width */
	position: absolute;
	width: 100px;
	left: -999em;
/* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav a {
/* width is for ie mouseover */
	display: block;
	width: 100px;
}
#nav a:link, #nav a:visited {/*fix width in ie 6.0*/
/* menu color style */
	padding: 7px 0px 2px 0px; 
	text-decoration: none;
	color: #666666;
}
#nav a:hover {
/* mouseover color style */
	color: #ffffff;
}
.nav_index{/*home*/
  border-bottom: 12px solid #780303;
}
.nav_index a:hover{
  background-color: #780303;
}
.nav_about{/*about*/
   border-bottom: 12px solid #DFDF07;
}
.nav_about a:hover{
  background-color: #DFDF07;
}
.nav_designers{/*designers*/
   border-bottom: 12px solid #004546;
}
.nav_designers a:hover{
  background-color: #004546;
}
.nav_events{/*events*/
   border-bottom: 12px solid #E48602;
}
.nav_events a:hover{
  background-color: #E48602;
}
.nav_gallery{/*gallery*/
   border-bottom: 12px solid #899B6E;
}
.nav_gallery a:hover{
  background-color: #899B6E;
}
.nav_press{/*press*/
   border-bottom: 12px solid #400040;
}
.nav_press a:hover{
  background-color: #400040;
}
.nav_contact{/*contact*/
   border-bottom: 12px solid #6198AB;
}
.nav_contact a:hover{
  background-color: #6198AB;
}

/* unused */
/* #nav li ul ul {
  third-and-above-level lists submenu positioning
	margin: -4em 0 0 10em;
}*/
/* #nav li:hover ul ul, #nav li.sfhover ul ul {
hides submenus 
	left: -999em;
}*/
/* #nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {
lists nested under hovered list items 
	left: auto;
}*/
