/* the styling of the exposed element */
.expose {
	b/order:1px solid #ccc;
	b/ackground-color:yellow;
	p/adding:50px;
	f/ont-size:30px;
	m/argin:20px auto;
	t/ext-align:center;
	w/idth:600px;
	cursor:crosshair;
}
/* root element for tabs  */
ul.tabs {  
	margin:0 !important; 
	padding:0;
	height:20px;
	border-bottom:1px solid #999;
}
/* single tab */
ul.tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;
}
/* link inside the tab. uses a background image */
ul.tabs a{ 
	float:left;
	font-size:11px;
	display:block;
	padding:2px 10px;
	text-decoration:none;
	border:1px solid #999;	
	border-bottom:0px;
	height:14px;
	background-color:#F7F7F7;
	color:#777;
	margin-left:6px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}
ul.tabs a:hover{
	background-color:#DCDCDC;
	color:#333;
}	
/* selected tab */
ul.tabs a.current {
	background-color:#fff;
	border-bottom:2px solid #fff;	
	color:#000;	
	cursor:default;
}
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	-background:#666;
	height:350px;
}
/* accordion header */
#accordion h2 {
	margin:0;
	margin-bottom: 5px;
	padding:3px 15px;
	font-size:1.1em;
	font-weight:normal;
	border:1px solid #999;
	background-color:#F7F7F7;
	cursor:pointer;		
}
#accordion h2 a{
	color: #000;
	text-decoration: none;
}
/* currently active header */
#accordion h2.current {
	cursor:default;
}
/* accordion pane */
#accordion .pane {
	border-width:0 2px;
	display:none;
	height:225px;
	padding:15px;
	background-color: #fff;
}
/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}
/* styling for elements inside overlay */
.details {
	position:absolute;
	top:15px;
	right:15px;
	font-size:11px;
	color:#fff;
	width:150px;
}
.details h3 {
	color:#aba;
	font-size:15px;
	margin:0 0 -10px 0;
}
