/****************************************************************************************/
/* RadMenu Top Navigation skin */
/****************************************************************************************/

/* Contains the appearance of the menu in general. */
.MainMenu
{
	background: none;
}

/* Contains the appearance of the top level menu item text. */
.MainMenu .rmLink
{
	font-family: Arial, Sans-Serif;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 10pt;	
	text-align: center;
	line-height: 23px;
	padding:10px 30px 5px 30px;
}

/* Contains the appearance of the top level menu item when the mouse is hovered over it. */
.MainMenu .rmLink:hover, .MainMenu .rmFocused, .MainMenu .rmExpanded
{	
	cursor: hand;
}

/* Contains the overall appearance of the child level menu items. */
.MainMenu .rmGroup
{
	border: ridge 1px #444;
	background: #6e3019;
	color: #ffffff;
}

/* Contains the appearance of the child level menu item text. */
.MainMenu .rmGroup .rmLink
{
	
	border-bottom: ridge 0px #ffffff;
	font-weight: normal;
	text-align: left;
	padding:0px 20px 0px 5px;
}

/* Contains the appearance of the child level menu item when the mouse is hovered over it. */
.MainMenu .rmGroup .rmLink:hover, .MainMenu .rmGroup .rmFocused, .MainMenu .rmGroup .rmExpanded
{
	background: white;
	color: #6e3019;
}


