/*

'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''
'' Application:     XIA Management Suite
'' Type / Name:     Style Sheet / centrel.css
'' Description:     Provides the styles for the drop down menu system
''
''
''  CENTREL Comment Block Version 1.0 Copyright © CENTREL Solutions
''
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

*/

/* Provides the style for the top level of the menu */
.TopGroup
{
  background-color:#D9D9E6; 
  cursor:default; 
  background-image: url(../images/menu/menubackground.gif);
}

/* Provides the style of the area of menu that drops down when a menu item is selected */
.MenuGroup
{
  background-image:url(../images/menu/groupbackground.gif);
  background-color:white;
  border:solid 1px #7E7E81; 
  cursor:default; 
}

/* Provides the style for the top level menu items i.e. Tools, Help etc */
.TopMenuItem
{
	padding-left: 10px; 
	padding-right: 10px; 
	border-right: solid 1px #DDDDDD; 
	text-align: center;
	cursor:default; 
}

/* Provides the style for the top level menu items i.e. Tools, Help etc when the mouse is hovering over the menu */
.TopMenuItemHover 
{
	padding-left: 9px; 
	padding-right: 10px; 
	border: solid 1px #DDDDDD; 
	text-align: center;
	cursor:default; 
	background-color:#CCCCCC; 
}

/* Provides the style for items within the menu */
.MenuItem
{
  color:black; 
  font-family:tahoma; 
  font-size:11px; 
  margin:1px; 
  cursor:default; 
}

/* Provides the style for items within the menu when the mouse is hovering over the menu item */
.MenuItemHover 
{
  background-color:#E4F1F7; 
  background-image: url(../images/menu/item_bg.gif);
  color:#00025C;
  border: 1px solid #AADAED; 
  font-family:tahoma; 
  font-size:11px; 
  cursor:default; 
}

/* Provides the style for a break in the menu */
.MenuBreak
{
  background-image:url(../images/menu/break_bg.gif);
  width:100%;
  height:1px;
}