@charset "utf-8";
/* CSS Document */

#indentmenu{
font: bold 14px Tahoma;
width: 100%; /*leave this value as is in most cases*/
overflow: hidden;
}

#indentmenu ul{
	margin: 0;
	padding: 0;
	float: left;
	width: 100%; /*width of menu*/
	height:51px;
	border: 1px solid #910100; /*dark purple border*/
	border-width: 1px 0;
	background: black url(images/back1.jpg) center center repeat-x;
}

#indentmenu ul li{
	display: inline;
}

#indentmenu ul li a{
	float: left;
	color: white; /*text color*/
	text-align:center;
	text-decoration: none;
	border-left: 1px solid #910100; /*dark purple divider between menu items*/
	height:51px;
	line-height:51px;
	width:152px; /*important (width/number of links)*/
}

#indentmenu ul li a:visited{
	color: white;
}

#indentmenu ul li a:hover{
	color: white !important; /*text color of selected and active item*/
	background: black url(images/back3.jpg) center center repeat-x;
}

#indentmenu ul li a #current{
	color: white !important; /*text color of selected and active item*/
	background: black url(images/back3.jpg) center center repeat-x;
}
