body {
  font: normal 11px verdana;
  }

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 151px; /* Width of Menu Items */
  border-bottom: 0px dashed #ccc;
  z-index:999;
  }
  
ul li {
  position: relative;
  text-align:left;
  padding-left:5px;
  background:#fff url(bgDotedLine.gif) bottom center repeat-x;
  }
  
li ul {
  position: absolute;
  left: 148px; /* Set 1px less than menu width */

  top: 0;
  display: none;
  border:1px #ccc solid;
  border-bottom:1px;
  z-index:999;
  }

/* Styles for Menu Items */
ul li a {
	text-transform:capitalize;
  display: block;
  text-decoration: none;
  background: #fff; /* IE6 Bug */
  padding: 5px;

   background:#fff url(bgDotedLine.gif) bottom center repeat-x;
  }
.catOn,
ul li a:hover {
	 color:#0078f7;
	 background:#fff url(menuon.gif) bottom center repeat-x;
/*  color:#0078f7;background:#fff  url(catArr.gif) 140px center no-repeat;*/
  }
  
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */