a {
  outline:none;
}
:focus {
  -moz-outline-style:none;
}
.tabs {
	padding: 3px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font: bold 12px Arial;
	list-style-type: none;
	text-align:left;/*set to left, center, or right to align the menu as desired*/
}

.tabs li {
	display:inline;
	margin:0px;
}

.tabs li a { /*to change the space between each tab, use margin property */
	text-decoration: none;
	padding: 3px 7px;
	margin-right: 3px;
	border: 1px solid #B0ACBD;
	color: #4A0A6D;
	background: white url(tab.gif) top left repeat-x;
}

.tabs li a:visited {
	color: #4A0A6D;
}

.tabs li a:hover {
	text-decoration: underline;
	color: #4A0A6D;
}

.tabs li.selected {
	position:relative;
	top:1px;
}

.tabs li.selected a { /*selected main tab style */
	background-image: url(tabactive.gif);
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 1px solid white;
	border-left: 1px solid #999;
	color: #4A0A6D;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.tabs li.selected a:hover {
	text-decoration: none;
	border-bottom-color: white;
	background-color: #E4EBD9;
}

.tabcontents { /*style of tab oontainer and contents inside*/
	border: 1px solid #B0ACBD;
	width: 590px;
	margin-bottom: 1em;
	padding: 10px;
	color: #4A0A6D;
	font: 12px/1.2 Arial, Helvetica, sans-serif;
}

@media print {
.tabcontent {
	display:block!important;
}
}

