/* NOTE:!! there could be problems with borders being defined here, and the width of the element defined in layout!!! */ 

/*
--------------------------------------------- 
Horizontal menu list based
--------------------------------------------- 
*/
 ul.hMenu {
/*  height: 20px; */
  list-style-type: none;

  /* this width value is also effected by
  the padding we will later set on the links. */
  font-family: verdana, arial, sanf-serif;
 }
 ul.hMenu li {
  float:left;
  display: block;
  padding:0px;
  margin: 0px;
/*  border: 2px solid #00f;*/
 }
 ul.hMenu a {
  float:left;
  padding:3px 6px;
  margin: 0;
	font-weight: bold;
	
  border-right: 1px solid #333;
  text-decoration: none; /*lets remove the link underlines*/
 }
 .hMenu a:link, .hMenu a:active, .hMenu a:visited {
  color: #000;
 }
 .hMenu a:hover {
/*  border-left: 1px solid #fff;*/
  border-right: 1px solid #fff;
   background: #333;
   color: #fff;
 }

/* end of hMenu */
