/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */

.box {
  -moz-border-radius: 15px; /* Firefox */
  -webkit-border-radius: 15px; /* Safari and Chrome */
  border-radius: 15px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */

  -moz-box-shadow: 10px 10px 20px #000; /* Firefox */
  -webkit-box-shadow: 10px 10px 20px #000; /* Safari and Chrome */
  box-shadow: 10px 10px 20px #000; /* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */

  behavior: url(ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */
}


.indentmenu{
	font: 10px Arial;
	width: 100%; /*leave this value as is in most cases*/
	text-transform: uppercase;
}

.indentmenu ul{
	margin: 0;
	padding: 0;
	float: left;
	/* width: 80%; width of menu*/
border-top: 0px solid darkred; /*darkred border*/
	background: #FAE7FD;

}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
	font: 10px Arial;
	float: left;
	color: black; /*text color*/
	padding: 8px 8px;
	text-decoration: none;
	border-right: 1px solid darkred;
}

.indentmenu ul li a:visited{
	color: black;
	border-top: 0px solid;
}

.indentmenu ul li a.selected{
	color: black !important;
	background: #E2BAEE;
}

