/* ######### Indent Main Menu Bar CSS ######### */

.indentmenu{
font: bold 13px Arial;
width: 100%; /*leave this value as is in most cases*/
overflow: hidden;
}

.indentmenu ul{
	margin: 8px 0px;
	padding: 0px;
	float: right;
	width: 70%; /*width of menu*/
	border: none; /*dark purple border*/
	border-width: 0px 0;
	background:  none;
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
	float: left;
	color: black; /*text color*/
	padding: 5px 5px;
	text-decoration: none;
	border-right: none; /*dark purple divider between menu items*/
	
}

.indentmenu ul li a:visited{
color: none;
}

.indentmenu ul li a:hover, .indentmenu ul li a.selected{
color: black !important; /*text color of selected and active item*/
padding-top: 6px; /*shift text down 1px for selected and active item*/
padding-bottom: 4px; /*shift text down 1px for selected and active item*/
background:  none;
}
