#menu{
margin: 0;
padding: 0;
}

#menu ul{
margin: 0;
margin-left: 10px; /*menu offset from left edge of window*/
float: left;
padding-left: 8px;
font: bold 12px Verdana;
background: #ffffff url(cssmenu/leftround2.gif) bottom left no-repeat; /*optional left round corner*/
}

* html #menu ul{ /*IE6 only rule. Decrease ul left margin and add 1em bottom margin*/
margin-bottom: 1em;
margin-left: 10px; /*menu offset from left edge of window in IE*/
}

#menu ul li{
display: inline;

}


#menu ul li a{
float: left;
color: black;
font-weight: bold;
padding: 10px 10px 1px 10px;
text-decoration: none;
}

#menu ul li a:visited{
color: gray;
}


#menu ul li a:hover, #menu ul li a#selected{ /*hover and selected link*/
color: red;
background: transparent url(cssmenu/pointer.png) bottom center no-repeat;
}

#menu ul li a#rightcorner{
padding-right: 0;
padding-left: 2px;
background: url(cssmenu/rightround2.gif) bottom right no-repeat; /*optional right round corner*/
}


