.vtabs {
	position: relative; border: 1px solid #ffffff;
	width:100%;
	min-height: 329px; /* controls explicit height of div so size doesn't jump around, may need to be increased in some cases -DK */
}
.vtabs .vtabs-tab-column {
	position: absolute; left: 0; margin: 0; width: 10%; min-width: 200px;
}
.vtabs .vtabs-tab-column ul {
    text-align:left;
	list-style: none;
	list-style-image: 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: #D6EBD6;
	margin: 0px;
	padding:12px 1px 14px 6px;
	margin-bottom: 3px;
	list-style-image: none;
	/* round corners do not work in IE */
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
/* css for tab that is closed */
.vtabs .vtabs-tab-column ul li.closed {
	list-style-image: none;
	background-color: #99cc99;
	border-right: 1px solid #D6EBD6;
}
/* css for tab hover */	
.vtabs .vtabs-tab-column ul li:hover {
	list-style-image: none;
	background-color: #D6EBD6;
}
/* 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: 12px/14px verdana, georgia, times, arial, helvetica, sans-serif;
	list-style-image: none;
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	color: #004400;
	font-weight: bold;
}
/* css for link on tab that's closed */
.vtabs .vtabs-tab-column ul li a.closed {
	list-style-image: none;
	color: #004400;
}	
.vtabs .vtabs-content-column {
	padding: 0px;
	margin: 0px;
}
/* css for the content panels */
.vtabs .vtabs-content-column .vtabs-content-panel {
	width:440px;
	font-size:80%;
	background-color: #D6EBD6;
	padding: 15px 15px 0px 15px;
	margin-top: 3px;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
	border-bottom-left-radius:5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;	
	-webkit-border-bottom-left-radius: 5px;	
	/*behavior: url(/ethics/_code/PIE.htc);*/
}
a.panela:active, a.panela:link, a.panela:visited { font-weight:bold; color:#004400; text-decoration:none }
a.panela:hover { text-decoration:underline }