﻿/* root element for tabs  */
.dynamicTabs_Banner 
{
    margin-top: -27px;
    height: 227px;
    overflow: hidden;
    width: 100%;
}

/* tabs area */
.dynamicTabs_Banner ul.tabs {
	margin: 0px;
	padding: 0px 3px;
	list-style: none;
	list-style-type: none; 	
	list-style-image: none;
	text-align: right;	
	height: 27px;
}

/* single tab */
.dynamicTabs_Banner ul.tabs li {
	list-style: none;
	list-style-type: none; 	
	list-style-image: none;
	width: 27px;
	height: 27px;
	margin-right: 2px;
	display: inline-block;
	text-align: center;
	position: relative;
	z-index: 5;
	top: 190px;
}

/* link inside the tab. uses a background image */
.dynamicTabs_Banner ul.tabs a { 
background: url(images/roundButtons.png) no-repeat 0px 0px;
	font-size:11px;
	display:block;
	height: 27px;  
	line-height:27px;
	width: 27px;
	text-align:center;	
	text-decoration:none;
	color: white;
	padding:0px;
	margin:0px;	
	position:relative;
	z-index: 0;
	top:1px;
	overflow: hidden;

}

.dynamicTabs_Banner ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.dynamicTabs_Banner ul.tabs a:hover {
	background-position: 0px -27px;	
	color:#333;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.dynamicTabs_Banner ul.tabs a.current, 
.dynamicTabs_Banner ul.tabs a.current:hover,
.dynamicTabs_Banner ul.tabs li.current a {
	background-position: 0px -27px;		
	cursor:default !important; 
	color:#333 !important;
}

/* initially all panes are hidden */ 
/* tab pane styling */
.dynamicTabs_Banner div.panes div {
	display:none;		
	margin: 0px;
	padding: 0px;
	font-size:14px;
	height: 200px;
	overflow: auto;
}