/*
Example CSS file for creating tabs using tabs.js.
Created by Rob Allen (rob at akrabat dot com)
Based on the CSS code from Silverorange Labs at :
http://labs.silverorange.com/archives/2003/september/simplecsstabs
*/
.tab-content {
	border-top: 2px solid #666;
	background: white; /*#FFF3B3;*/
	color: black;
	padding:5px;
	width:250px;
	border:1px dashed #c6c6c6;
	
}


.tab-header {
	position: relative;
	height: 3em;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.tab-header ul.tab-list {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -2px;
}

.tab-header ul.tab-list li  {
	display: inline;
	list-style: none;
	margin: 0;
}

.tab-header ul.tab-list a,
.tab-header ul.tab-list span,
.tab-header ul.tab-list a.tab-active {
	width: 7.8em;
	display: block;
	float: left;
	padding: 4px 0;
	margin: 1px 2px 0 0;
	text-align: center;
	font-family: 'Trebuchet MS', verdana, sans-serif;
	font-size: 100%;
	text-decoration: none;
	color: #000;
}

.tab-header ul.tab-list span,
.tab-header ul.tab-list a.tab-active,
.tab-header ul.tab-list a.tab-active:hover {
	border-top: 1px solid #bbb890;
	border-left: 1px solid #bbb890;
	border-right: 1px solid #bbb890;
	border-bottom: none;
	background: #e4e3d3;
	color: black;
	padding-bottom: 6px;
	margin-top: 0;
}

/* a link in a background tab */
.tab-header ul.tab-list a {
	background: #FFF;
	/* border-top: 1px solid #AAA;
	border-left: 1px solid #AAA;
	border-right: 1px solid #AAA;
	border-bottom: none;*/
}

/* hover on a background tab */
.tab-header ul.tab-list a:hover {
	margin-top: 0;
	border-color: #c0bfb2;
	background: #c0bfb2;
	color: black;
	padding-bottom: 5px;
}

.tab  /* the heading that became the li */
{
	display: none;
}
