.menu, .menu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 140px; /*WIDTH OF MAIN MENU ITEMS*/
border: 1px solid black;

}

.menu li{
position: relative;
border:#900 thin solid;
}

.menu li a{
background-color: #ca090a;
font-family:Verdana;
font-size:11px;
color: #FFF;
display: block;
padding: 1px;
padding-left: 10px;
text-decoration: none;
font-weight:normal;
}

.menu li ul{ /*SUB MENU STYLE*/
position: absolute;
width:120px; /*WIDTH OF SUB MENU ITEMS*/
left: 0;
top: 0;
display: none;

}

.menu li ul li{
float: left;
}

.menu li ul a{
width:107px; /*WIDTH OF SUB MENU ITEMS - 10px padding-left for A elements */
height:15px;
font-family:Verdana;
font-size:11px;
}

.menu .arrowdiv{
position: absolute;
right: 2px;
}

.menu li a:visited, .menu li a:active{
color: white;
}

.menu li a:hover{
	background-color:#FFF;
	color:#ca090a;
	font-weight:bold;
}

/* Holly Hack for IE \*/
* html .menu li { float: left; height:15px; }
* html .menu li a { height:15px;}
/* End */
