﻿
/* Default item styles ------------------------------------ */ 
.Item,.ItemHover,.ItemExpanded
{
	/*Height should end up being 39 but do not specify it since we have padding. Font-size, lineheight and padding effect render height*/
	cursor:pointer;
	text-transform:capitalize;
	font-size:18px;
	font-weight:normal;
	color:#6B5736;
	text-align:left;
	vertical-align:top;
	padding-top:5px;
	padding-bottom:4px;
	padding-left:20px;
	padding-right:10px;
	background-repeat:no-repeat;
	background-position:6px 14px;
}

.ItemHover,.ItemExpanded
{
	color:#8F0000;
}


/* Child selected item styles ------------------------------------ */ 
.ChildItem,.ChildItemHover,.ChildItemExpanded
{
	cursor:pointer;  
	font-family:Arial;
	font-size:12px;
	font-weight:normal;
	color:#6B5736;
	text-decoration:none;
	background-color:#D9E4D1;
	text-align:left;
	padding-left:25px;
	padding-right:20px;
	height:26px;
	line-height:26px;
	vertical-align:middle;
}

.ChildItemExpanded
{
	background-color:#A6BF93;
}

.ChildItemHover
{
	color:#8F0000;
	background-color:#E1DDD7;
}

