/*

	Default stylesheet for 3D MenuLink template

*/

/* defines CSS classes for item in NORMAL state */

.d3Item 
{
	padding: 1;	
	border-width: 0;
	background-color: #b0050b;
	background-image: url(bkgnd.jpg);
}

.d3Item #item
{
	font-family: verdana, tahoma, helvetica;
	font-size: 11px;
	color: white;
}

/* item in ACTIVE state */

.d3ItemActive
{
	padding: 1;
	background-color: #F00A0E;	
	cursor: default;
	border-width: 0;
}

.d3ItemActive #item
{
	font-family: verdana, tahoma, helvetica;
	font-size: 11px;
	color: white;
}

/* item in SELECTED state */

.d3ItemSelected
{
	background-color: #F00A0E;
	cursor: default;

	border-width: 0;
	
}

.d3ItemSelected #item
{
	font-family: verdana, tahoma, helvetica;
	font-size: 11px;
	font-weight: bold;
	color: white;
}

/* disabled item */

.d3ItemDisabled 
{
	background-color: silver;
	
	border-width: 0;
	
}

.d3ItemDisabled #item
{
	font-family: tahoma, helvetica;
	font-size: 11px;
	font-weight: bold;
	color: gray;
}

/* separator */

.d3ItemSeparator
{
}

/* level (surrounding html)*/

.d3Level 
{
}

/* items container */

.d3Container 
{
}

