.vtabs {
	/* a border is required for IE otherwise the tab panels will not be aligned correctly. */
	position: relative;  border: 0px solid #ffffff;
}
.vtabs .vtabs-tab-column {
	position: absolute; left: 0; margin: 0; width: 228px; min-width: 170px;
}
.vtabs .vtabs-tab-column ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
/* css for tab that is open */
.vtabs .vtabs-tab-column ul li.open, .vtabs .vtabs-tab-column ul li.closed {
	background-color: #a5ce3a;
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	/* round corners do not work in IE */
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	border-top: 0px solid #644a35;
	border-bottom: 0px solid #644a35;
	border-left: 0px solid #644a35;
	min-height:30px;
	z-index: 10;
}
/* css for tab that is closed */
.vtabs .vtabs-tab-column ul li.closed {
	background-color: #a5ce3a;
	border-right: 0px solid #644a35;
}

/* css for link on tab that's open */
.vtabs .vtabs-tab-column ul li a.open, .vtabs .vtabs-tab-column ul li a.closed {
	font: 15px Helvetica, Arial, sans-serif;
	text-decoration: none;
	font-weight:bold;
	color: #b3208d;
}
/* css for link on tab that's closed */
.vtabs .vtabs-tab-column ul li a.closed {
	color: #ffffff;
}	

/* css for tab hover */	
.vtabs .vtabs-tab-column ul li:hover {
	background-color: #a5ce3a;
}


.vtabs .vtabs-content-column {
}
/* css for the content panels */
.vtabs .vtabs-content-column .vtabs-content-panel {
	 width: 639px;
	background-color: #a5ce3a;
	padding-left: 7px;
	padding-right: 7px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin: 0px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;	
	-webkit-border-bottom-left-radius: 3px;
	border-top: 0px solid #644a35;
	border-bottom: 0px solid #644a35;
	border-right: 0px solid #644a35;
	border-left: 0px solid #644a35;
}