@charset "UTF-8";
/* CSS Document */

/* ####################   Navigation bar CSS styling   ################## */ 

.mynavbar {
	position: relative;
  width: 716px; /* width of 896 minus padding of 180*/
  height: 30px; /* corresponds to 'line-height' of a.navbartitle below */
  background-color: #0D0082; 
  text-align: center;
  border: #6A4222 2px solid;
  float: left;
  padding-left: 180px;
}


a.navbartitle { 
  float: left;
  background-color:  #666633;
  margin: 0; border: 0; padding: 0;
  line-height: 30px; /* corresponds to 'top' value of .submenu below */
}

/* menu title widths */
#t1 { width: 97px; }
#t2 { width: 87px; }

.submenu {
	position:absolute;
	background-color:#0D0082;
  z-index: 2;
  top: 30px; /* corresponds to line-height of a.navbartitle above */
  padding-top: 5px; 
	width:150px; /* If adjust this, then adjust width of .submenu below a too */
	border-left: 2px solid #6A4222; /* box around entire sub-menu */
	border-right: 2px solid #6A4222;
	border-bottom: 2px solid #6A4222;
	 margin-left: 184px; /*180px + 4px*/
}
/* Fix IE formatting quirks. */
* html .submenu { width: 172px; } /* IE needs narrower than width of .submenu above */
/* End */

/* position of each sub menu */
/* We just eyeball the position of each submenu here -- can move left or right as needed. 
   If you adjust menu title text, you might want to adjust these too. */
#facility_submenu {  left: 3px; visibility: hidden;  }
#events_submenu {  left: 94px; visibility: hidden;  }

.submenu a
{
  display: block;
  width: 150px; /* This should be width of .submenu above minus left-side padding on next line */ 
  border-top: 0; border-left: 0; border-right: 0;
}


ul { position: relative; display: block; }
li { position: relative; display: block; }

.submenubox { 
  margin: 0; padding: 0; border: 0;
}
.submenubox ul
{
  margin: 0; padding: 0; border: 0;
  list-style-type: none;
}

.submenubox ul li { 
  margin: 0; padding: 0; border: 0;
}

.submenubox ul li a:link { }
.submenubox ul li a:visited { }
.submenubox ul li a:hover
{
  /*put rollover image here?*/ 
}


