﻿
/* root element for tabs  */
.dynamicTabs_Sidebar 
{
    height: 400px;
    width: 872px;
    overflow: hidden;    
    padding-top: 15px;
    background: url(images/background-tan.png) no-repeat;
}

/* tabs area */
.dynamicTabs_Sidebar ul.tabs {
	float: left;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	text-align: right;
	overflow: hidden;
	height: 370px;
	width: 192px;
}

/* single tab */
.dynamicTabs_Sidebar ul.tabs li {
	height: 30px;
	list-style: none;
	margin-right: 9px;
	z-index: 5;
}

/* link inside the tab. uses a background image */
.dynamicTabs_Sidebar ul.tabs a { 
    background: url(images/whiteLink.png) no-repeat 23px -30px;
	margin: 0px 0px 0px 0px;
    padding: 0px 10px 0px 0px;
	font-size:11px;
	display:block;
	height: 30px;  
	line-height: 30px;
	text-decoration:none;
	color: #333;
	position:relative;
	z-index: 0;
	top:1px;
	overflow: hidden;
	outline:none;
}

.dynamicTabs_Sidebar ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.dynamicTabs_Sidebar ul.tabs a:hover {
	background-position: 22px -1px;	
	color:#333;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.dynamicTabs_Sidebar ul.tabs a.current, 
.dynamicTabs_Sidebar ul.tabs a.current:hover,
.dynamicTabs_Sidebar ul.tabs li.current a {
	background-position: 23px 0px;		
	cursor:default !important; 
	color:#333 !important;
}

.dynamicTabs_Sidebar div.panes 
{
	height: 370px;
	width: 680px;
	padding: 0px;
	margin: 0px;
	overflow: auto;
}
/* initially all panes are hidden */ 
/* tab pane styling */
.dynamicTabs_Sidebar div.panes div {
	margin: 0px;
	display:none;		
	font-size:14px;
	padding: 0px 5px 0px 0px;
	text-align: left;
	overflow: auto;
	width: 670px;
}