﻿/* Toplevel images item styles ------------------------------------ */
.ImageItem
{
	cursor: pointer;
}

.ImageItemHover
{
	cursor: pointer;
}

.ImageItemExpanded
{
	cursor: pointer;
}


/* Default item styles ------------------------------------ */
/*Note the main menu item white bottom border had to be accomplished with the height and background color to look the same in IE and FF. Using a border would cause height differences that are then noticable with dropdown menu alignment.*/
.Item
{
	cursor: pointer;
	height: 25px;
	font-family: Arial;
	font-size: 11px;
	font-weight: bold;
	color: White;
	text-decoration: none;
	background-color: Transparent;
	text-align: left;
	text-transform: uppercase;
	background-image: url(images/menuitemback.jpg);
	background-position: top left;
	background-repeat: repeat-x;
	border-bottom: solid 0px White;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-left: 22px;
	background-color:White;
}

.ItemHover, .ItemExpanded
{
	cursor: pointer;
	height: 25px;
	font-family: Arial;
	font-size: 11px;
	font-weight: bold;
	color: White;
	text-decoration: none;
	background-color: Transparent;
	text-align: left;
	text-transform: uppercase;
	background-image: url(images/menuitemback_f2.jpg);
	background-repeat: repeat-x;
	border-bottom: solid 0px White;
	padding-left: 22px;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	background-color:White;
}


/* Child selected item styles ------------------------------------ */
.ChildItem
{
	cursor: pointer;
	height: 24px;
	padding-left: 4px;
	padding-right: 4px;
	font-family: Arial;
	font-size: 11px;
	font-weight: normal;
	color: White;
	text-decoration: none;
	background-color: #5E5E5E;
	text-align: left;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
}

.ChildItemHover, .ChildItemExpanded
{
	cursor: pointer;
	height: 24px;
	padding-left: 4px;
	padding-right: 4px;
	font-family: Arial;
	font-size: 11px;
	font-weight: normal;
	color: White;
	text-decoration: none;
	background-color: #197D55;
	text-align: left;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
}

