﻿/* Root = Horizontal, Secondary = Vertical */
/* Root Container- Nav Bar */
ul#navmenu {
  margin: 0;
  border: 0 none;
  padding: 0;
  width: 638px; /*Get everything to fit in a single row here*/
  list-style: none;
  height: 21px;

}

/*Drop Down Menu */

ul#navmenu li {  
  margin: 0;
  border: 0 none;
  padding: 0;
  float: left; 
  display: inline;
  list-style: none;
  position: relative;
  height: 21px;
}

/* Drop Down Menu Container */

ul#navmenu ul {
  margin: 0;
  border: 0 none;
  padding: 0;
  width: 160px;
  list-style: none;
  display: none;
  position: absolute;
  top: 21px;
  left: 0;
}



/*ul#navmenu ul:after /*From IE 7 lack of compliance*/
/* {clear: both;
  display: block;
  font: 1px/0px serif;
  content: ".";
  height: 0;
  visibility: hidden;
}*/



ul#navmenu ul li {
  width: 180px;							/* Drop Down Menu Width so Text fits */
  float: left; /*For IE 7 lack of compliance*/
  display: block !important;
  display: inline; /*For IE*/
}

/* Root Menu */

ul#navmenu a {
  border: 1px solid #666666; 				/* Thickness, style and color of border goes around */
  border-right-color: #666666; 			/* Border of Nav Bar */
  border-bottom-color: #666666; 			/* Border of Nav Bar */
  padding: 0 8px; 						/* Spacing between buttons*/
  float: none !important; 				/*For Opera*/
  float: left; 							/*For IE*/
  display: block;
  background: #666666; 					/* Background Color of Nav Bar*/
  color: #fff; 						/* Text Color of Nav Bar*/
  font: bold 12px/22px Verdana, Arial, Helvetica, sans-serif;  /* Font Size for Menu */
  text-decoration: none;
  height: auto !important;
  height: 1%; /*For IE*/
}

/* Root Menu Hover Persistence */
ul#navmenu a:hover,
ul#navmenu li:hover a,
ul#navmenu li.iehover a {
	 /*background-image:url('images/button.gif');
	 background-repeat:repeat-x; /* Container Hover Background Color*/;
	 /*background-position: center;*/
	color: #CCCCCC; /* Container Hover Text Color*/;
}


