/****************************************************************************************/
/* RadMenu Top Navigation skin */
/****************************************************************************************/

/* Contains the appearance of the menu in general. */
.RadMenuMainTopNavigation
{
	background: none;
}

/* Contains the appearance of the top level menu item text. */
.RadMenuMainTopNavigation .rmLink
{
	text-decoration: none;
	color: white;
	padding: 0px 15px;
	text-align: left;
	font: normal 14pt Impact;
	line-height: 28px;
	padding-left: 30px;
	border-bottom: solid 1px white;
	white-space:nowrap;	
	min-width: 140px;
}

/* Contains the appearance of the top level menu item when the mouse is hovered over it. */
.RadMenuMainTopNavigation .rmLink:hover, .RadMenuMainTopNavigation .rmFocused, .RadMenuMainTopNavigation .rmExpanded
{
	background: #CCCCCC;
	cursor: hand;
}

/* Contains the overall appearance of the child level menu items. */
.RadMenuMainTopNavigation .rmGroup
{
	border: solid 1px white;
	background: #ACACAC;
	color: white;
}

/* Contains the appearance of the child level menu item text. */
.RadMenuMainTopNavigation .rmGroup .rmLink
{
	border: solid 1px #DDE1E4;
	border-bottom: solid 1px #dde1e4;
	font-weight: normal;
	text-align: left;
	padding-left: 15px;
	line-height: 26px;
}

/* Contains the appearance of the child level menu item when the mouse is hovered over it. */
.RadMenuMainTopNavigation .rmGroup .rmLink:hover, .RadMenuMainTopNavigation .rmGroup .rmFocused, .RadMenuMainTopNavigation .rmGroup .rmExpanded
{
	background: #CCCCCC;
}

/****************************************************************************************/