/*top menu home and login link on top*/
.top a {
	display: inline;
	margin: 0px 16px 0px 20px;
	text-decoration: none;
	color: #000;
}
.menu {
	z-index:1000;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin-top:19px;
margin-left:20px;
list-style-type:none;
width:150px;
}
/* hack for IE5.5 */
/** html .menu ul {margin-left:-16px; ma\rgin-left:0;}*/
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
background:transparent;
height: 35px;
}

.menu li#id12, .menu li#id20, .menu li#id6 {
	margin-top: 13px;
}
/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:20px;
line-height:20px;
width:139px;
color:#000;
text-indent:5px;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {background:transparent; width:140px; w\idth:139px;}
/* style the link hover */
* html .menu a:hover {color:#ff0000; background:white;}

.menu :hover > a {
color:#ff0000; 
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:140px; 
margin: 0;
background:#fff;
border-bottom: 1px solid #9999cc;
}
/* 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;
}
.menu ul ul li {
	border: 1px solid #9999cc;
	border-bottom: none;
	height: 20px;
}
.menu ul ul li {
	padding:5px 0px 5px 5px;
	margin:0;
}
/*if IE7*/
.menu li {*float:left;}