﻿/* vertical tabs styles */
/* style for the whole tab area inclusive of tabs and tab content */
.tabarea
{
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-bottom: 5px;
	background-color: White;
	border: solid 2px Black;
	height: 100%;
	overflow: visible;
}
/* column containing list of tabs */
.tabcolumn
{	
	float: left;
	left: 0px;
	width: 120px; /*Width of frame div*/
	height: 100%;
	overflow: visible; /*Disable scrollbars. Set to "scroll" to enable*/
	margin: 5px 5px 5px 5px;
}
/* list of tab in tab column */
.tablist
{
	padding-left: 0;
	margin-left: 0;
	background-image: none;
	background-repeat: no-repeat;
	background-position: 0 0.5em;
	width: 110px;
	list-style: none;
	text-align: left;
}
/* styling of a individula tab */
.tablist li
{
	list-style: none;
	margin: 0;
	border-bottom: 1px solid #000000;
	padding-left: 10px;
	padding-top: 0.2em;
	padding-right: 0em;
	padding-bottom: 0.5em;
}
/* selected tab style */
.selectedtabitem
{
	background-image: url("../../images/blockcurrent.gif");
	/*background-repeat: no-repeat;
	background-position: 0 0.5em;*/
	display: block;
	/*background-color: #e1e3f1;*/
	font-weight: bold;
	width: auto;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	position: relative;
}

.tablist li a
{
	color: Black;
	text-decoration: none;	
}

.tablist li a:visited
{
	color: Black;
	text-decoration: none;
}
.tablist li a:hover
{
	color: Black;
	font-weight: bold;
	text-decoration: none;
}

/* column containing tab detail view */
.tabcontent
{
	float: left;
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: visible;
	margin: 0px 5px 5px 5px;
	padding-top: 0px;
}
/*heading for the tab content */
.tabheading
{
	/*display: block;*/
	background: black url("../../images/blockdefault.gif");
	width: auto;
	text-align: center;
	margin-bottom: 0px;
	color: White;
	margin-top: 5px;
	margin-right: 0px;
}
