/* copyright infinite source systems corporation  */

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  }
  
li {
  float: left;  /* make horizontal  */
  position: relative;
  border-bottom: 1px solid #000;
  width: 151px; ?
  } 

/* second level drop downs  */  
li ul {  
  display: none;
  position: absolute; 
  top: 26px; 
  left: 0; 
  clear: left 
  } 

/* style */
ul li  a.menu2 {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff; /* ALT 1  */
	background-color: #06f; /* ALT 2 background */
	font-family: Arial, Helvetica, sans-serif; font-weight: Bold;
	font-size: 12px;
	padding: 5px;
	border: 1px solid #000;
	border-bottom: 0;
	border-top: 0;
	}
		
a.menu2:hover {
	color: #fff;  /* ALT 4  */
	background-color: #65e;  /*  ALT 3 */
	text-decoration: none;
	}
	
a.menu2:active {
	background-color: #f36;
	color: #fff;
	} 

li:hover ul, li.over ul{ display: block; }
 
li > ul {
	top: auto;
	left: auto;
	} /* sets in all but IE  */

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		
li#blank {border-bottom: 0; width: 95px;  
	} 


