/*
 *	Styling for Popup Menu
 *	Copyright (c) 2009 Daniel Phillimore - Roger Clark Motorsport
 *	
 *	Notes: RCM Website's context/popup menu support
 */

#ulPopupMenu {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1000;
	
	display: none;
	width: 100px;
	height: auto;
	background-color: #FFFFFF;
	border: solid silver 1px;
	list-style: none;
	
	text-align: left;
}
#ulPopupMenu.clsOpen {
	display: block;
}
#ulPopupMenu li {
	padding-left: 30px;
	
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	font-weight: bold;
	background: transparent url("/images/gobstopper/rcms_logo_small.jpg") 0px 3px no-repeat scroll;
	
	cursor: pointer;
}
#ulPopupMenu li.clsHover {
	color: gray;
}

