/****************************************************************************************/
/* 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: Verdana, Arial, Sans-Serif;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 10pt;	
	text-align: center;
	line-height: 23px;
}

/* 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: solid 1px #444;
	background: black;
	color: #ffffff;
}

/* Contains the appearance of the child level menu item text. */
.MainMenu .rmGroup .rmLink
{
	
	border-bottom: solid 0px #ffffff;
	font-weight: normal;
	text-align: left;
	padding-left:5px;
	padding-right:20px
}

/* 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: black;
}

