/* this is for the box when the menu is expanded */
.MenuGroup
{
  background-color:#218BC5;
  border:1px;
  border-bottom-color:black;
  border-top-color:gray;
  border-left-color:gray;
  border-right-color:black;
  border-style:solid;
  cursor:pointer;
}

/* This is the actual menu items */
.MenuItem
{
	font-weight: bold;
	font-size: 10px;
	background-image: url(images/menu-fill.jpg);
	cursor: pointer;
	color: white;
	font-family: Tahoma, 'Trebuchet MS' , Verdana, Helvetica, sans-serif;
	height: 40px;
}

.MenuItemHover
{
	font-weight: bold;
	font-size: 10px;
	cursor: pointer;
	color: white;
	font-family: Tahoma, 'Trebuchet MS' , Verdana, Helvetica, sans-serif;
	height: 40px;
	background-color: #619fc6;
}

.DownMenuItem
{
	font-weight: bold;
	font-size: 10px;
	cursor: pointer;
	color: white;
	font-family: Tahoma, 'Trebuchet MS' , Verdana, Helvetica, sans-serif;
  background-color:#8D8F95;
}

.DownMenuItemHover
{
	font-weight: bold;
	font-size: 10px;
	cursor: pointer;
	color: white;
	font-family: Tahoma, 'Trebuchet MS' , Verdana, Helvetica, sans-serif;
	background-color: #619fc6;
}

.MenuItemDown
{
  background-color:#8D8F95;
  color:white;
  font-size:10px;
  font-weight: bold;
  border:1px;
  border-left-color:black;
  border-top-color:black;
  border-right-color:#B8B8B9;
  border-bottom-color:#B8B8B9;
  border-style:solid;
  font-family: Tahoma, 'Trebuchet MS' , Verdana, Helvetica, sans-serif;
  cursor: pointer;
} 

