.panes div {
	display:none;		
	padding:0px;
	border:0px solid #fff;
	border-top:0;
	font-size:12px;
	background-color:#fff;
}


/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:0px solid #fff;	
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs  { 
	border-bottom: 1px #ccc solid;
	color:#888888;
}

ul.tabs a { 
	background: url(blue.png) no-repeat 0px 0;
	font-size:11px;
	color:#707070 !important;
	display:block;
	height: 28px;  
	line-height:28px;
	text-align:center;	
	text-decoration:none;
	padding:0px 10px 0px 10px;
	margin:0px 3px 0px 0px;
	position:relative;
	top:1px;
	float: left;
	border: 1px #ccc solid;		
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: 0px -30px;	
	color:#c0c0c0 !important;
	border: 1px #ccc solid;		
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: 0px -60px;		
	cursor:default !important; 
	color:#000000 !important;
	background-color: #eee;		
	border: 1px #ccc solid;		
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}


/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#fff;
	width: 400px;
	border-bottom:0px solid #ddd;
}

/* accordion header */
#accordion h4 {
	background:#fff;
	margin:0;
	padding:5px 5px;
	color:#000000;
	font-size:13px;
	font-family: verdana, arial, helvetica, sans-serif;
	font-weight: bold;
	border:0px solid #fff;
	border:1px solid #ddd;
	margin-bottom: 3px;
	cursor:pointer;		
}

/* currently active header */
#accordion h4.current {
	cursor:default;
	background:#fff url(h30.png);
}

/* accordion pane */
#accordion .pane {
	border:0px solid #fff;
	border-width:0 2px;
	display:none;
	padding: 5px 15px 5px 15px;
	color:#000;
	font-size:12px;
	background:#fff;
}

/* a title inside pane */
#accordion .pane h5 {
	font-weight:normal;
	font-size:20px;
	color:#686868;
	line-height:28px;
	display: inline;
}

/* a title inside pane */
#accordion .pane h6 {
	font-weight:bold;
	font-size:13px;
	color:#000000;
	line-height:18px;
	display: inline;
}


