﻿/*=========================================*/
/*            CSS for RAD Menu	 		   */
/*=========================================*/


/*  The main enclosing dom element - DIV */
.RadMenu_dnn 
{
	background: transparent;
	_top:0px;
	position:relative;
	white-space: normal;
}

/*  Applies to the root DIV element menu when in context mode 
    These settings negate the ones from the previous rule  */
.RadMenu_dnn_Context
{
	background:none;
	padding:0;
}

/*  Applies to the links in the menu  */
.RadMenu_dnn .link
{
	text-decoration:none;
}

/* The first level item focused and hover look  */

.RadMenu_dnn .rootGroup .focused,
.RadMenu_dnn .rootGroup .link:hover
{
	cursor:pointer;
}

/* Second and further item wrapper (DIV if scrollable, otherwise UL) */

.RadMenu_dnn .group
{
	/*Background Color of SubMenu */
	background-color: #2076B1;  
	border: 2px solid white;
}

/*  Second level links  */
.RadMenu_dnn .group .link
{
	font-family: verdana, sans-serif;
	font-weight: bold;
	font-size:7pt;
	color: white;
	text-align: left;
	cursor:pointer;
	padding: 5px;
	text-decoration: none;
}
/*  Second level items (LI). Negate the style inherited from the first level items. */
.RadMenu_dnn .group .item
{
	margin:0;
	padding:0px;
}
/*
    Second level links focused, hover and expanded state.
*/

.RadMenu_dnn .group .link:hover,
.RadMenu_dnn .group .focused,
.RadMenu_dnn .group .expanded
{
	font-family: verdana, sans-serif;
	font-weight: bold;
	font-size:7pt;
	color: white;
	text-align: left;
	border: 0px;
	margin-top:0px;
	text-decoration: none;
/*Background Over Color of SubMenu */
	background: #549046;
}
.RadMenu_dnn .group .item .link .text{
	width: 108px;
}