#innerTabWrapper {
	width:828px;
	margin:0 auto;
	text-align:center;
}
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #ededed;	
	width:821px;
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:13px;
	display:block;
	padding:5px 27px;	
	text-decoration:none;
	border:1px solid #ccc;	
	border-bottom:0px;
	height:18px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#ddd;
	border-bottom:2px solid #ddd;	
	color:#000;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	clear:both;
	display:none;
	text-align:left;
	border:1px solid #ccc;
	border-width:0 1px 1px 1px;
	min-height:150px;
	width:778px;
	padding:15px 20px;
}
/* alternate colors: skin2 */
ul.skin2 a {
	background-color:#f8f8f8;		
	color:#999;
}

/* mouseover state */
ul.skin2 a:hover {
	background-color:#f1f1f1;
	color:#333;
}

/* active tab */
ul.skin2 a.current {
	background-color:#f5f5f5;
	color:#333;
	border-bottom:2px solid #039;	
}

/* tab pane with background gradient */
div.skin2 div {
	min-height:200px;
	background:url(../images/tab-bg.jpg) repeat-x;
}

