body
{
	font-family:Arial, Helvetica, sans-serif;
}
.menu {
width:520px; 
font-size:12px;
position:relative;
z-index:100;
padding-bottom:15px;
left:50px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
width:80px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
width:90px;
position:relative;
}


/* style the links for the top level */
.menu a, .menu a:visited , .menu a:active{
display:block;
font-size:12px;
font-weight:bold;
text-decoration:none; 
color:#666666;
height:20px; 
border:1px solid #fff; 
border-width:1px 1px 0 0; 
background:#EFEFEF;
padding-left:5px;
padding-right:5px; 
line-height:19px;
}
/* a hack so that IE5.5 faulty box model is corrected */
/** html .menu a, * html .menu a:visited {
width:80px;
w\idth:69px;
}*/

.menu li.home { width:45px;}
.menu li.products { width:64px; }
.menu li.testimanials { width:84px; }
.menu li.download { width:67px; }
.menu li.buy { width:32px; }
.menu li.support { width:58px; }
.menu li.company { width:65px; }
.menu li.contact { width:75px; }

li.home a, li.home a:hover { width:34px; }
li.products a, li.products a:hover { width:53px; }
li.testimanials a, li.testimanials a:hover { width:73px; }
li.download a, li.download a:hover { width:56px; }
li.buy a, li.buy a:hover { width:21px; }
li.support a, li.support a:hover {width:47px;}
li.company  a, li.company a:hover{width:54px;}
li.contact a, li.contact a:hover{width:64px;}



/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:21px;
left:0; 
width:80px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:20px;
t\op:21px;
}



/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#EFEFEF;
color:#2645B0;
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:90px;

/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:90px;
w\idth:89px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#888888;
width:90px
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:#888888;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}



