.vtabs {
	/* a border is required for IE otherwise the tab panels will not be aligned correctly. */
	position: relative;  border: 1px solid #ffffff;
}
.vtabs .vtabs-tab-column {
	position: absolute; left: 0; margin: 0; width: 170px; 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:url("../img/header_bg.png") repeat scroll 0 0 transparent;
    border-bottom: 3px solid #64AFE9;
    border-left: 3px solid #64AFE9;
    border-radius: 10px 0 0 10px;
    border-top: 3px solid #64AFE9;
    margin: 4px 0;
    min-height: 20px;
    padding: 10px 5px 5px 7px;
    width: 92.5%;
    z-index: 10;
	/* round corners do not work in IE */
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;

}
/* css for tab that is closed */
.vtabs .vtabs-tab-column ul li.closed {
	background: none repeat scroll 0 0 #FFFFFF;
	border-right: 3px solid #64AFE9;
	    width: 91%;
}
/* css for tab hover */	
.vtabs .vtabs-tab-column ul li:hover {
	background-color: #ffffff;	
}
/* 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-weight: bold;
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	color: #D4571F;
}
/* css for link on tab that's closed */
.vtabs .vtabs-tab-column ul li a.closed {
	color: #777;
}	
.vtabs .vtabs-content-column {
	padding: 0px;
	margin: 0px;
}
/* css for the content panels */
.vtabs .vtabs-content-column .vtabs-content-panel {
	 background: url("../img/header_bg.png") repeat scroll 0 0 transparent;
    border-color: #64AFE9;
    border-style: solid;
    border-width: 3px;
    margin: 0;
    padding: 3px 7px;
	-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;
	
}