div.panes div { /* Main content container */
	background: #fff;
	height:auto;
	*height:auto;
	padding:20px;
	width: 800px;
	margin: 0 auto;
	overflow: hidden;
}




/* root element for tabs  */
ul.tabs { 
	list-style:none;
	float:left;
	/* margin:0 !important; */
	margin: -70px 0 0 -30px;
	_margin: -70px 0 0 -15px;
	padding:0;
	height:40px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
	width: auto;
	height:40px;
	max-width: 186px;
	_max-width: 156px;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	display: block;
	background: url('http://www.swanlakelimos.co.nz/images/layout/TabBGOff.png') top left repeat-x;
	font-size:12.5px;
	height: 40px;  
	line-height:40px;
	width: auto;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:0 25px 0 25px;
	_padding:0 10px 0 10px;
	margin:-1px 2px 0 0;	
	position:relative;
	border-bottom: 1px solid #cbcbcb;
	_width: 136px;
}

ul.tabs a:active {
	outline:none;	
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: url('http://www.swanlakelimos.co.nz/images/layout/TabBGOver.png') top left repeat-x;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background: url('http://www.swanlakelimos.co.nz/images/layout/TabBG.png') top left repeat-x #fff;		
	cursor:default !important; 
	color:#000 !important;
	border-bottom: none;
	margin:-6px 2px 0 0;
	height:47px;
	line-height: 47px;
	font-weight: bold;
}




/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}

