
/* tabs */
#tabs {

	height:550px;	
	width:200px;
	margin: 0px;
	padding:0px;
	float:left;

}

#tabs ul { 
	list-style:none !important; 
	margin:0 auto !important; 
	padding:0px 0px 0px 0px !important; 
	text-align:center;
}

#tabs li {	
	float:left;
	list-style-type:none;
	text-align:center;
	
	margin:0px;
	padding:0px 0px 0px 0px;
	width:198px;
	height:135px;
	
	position:relative;
		
	border-bottom: 2px solid #545757;
	
	border-right: 2px solid #545757;
	background:#e8e8e8;
/*	background: url('../img/bckgr-tab-off.gif') no-repeat; */
	
}

#tabs li.current {
	background: url('../img/bckgr-tab-on.gif') no-repeat;
}



/* Tab content */

#tabs .tab_shell {
	text-align:left;
	margin:0 auto;



}

#tabs .tab_title {
	margin:20px 0px 5px 10px;
}

#tabs .tab_text {
	height:auto;
	margin:9px 10px 5px 10px;
}

#tabs .tab_link  {
	text-align:right;
	height:auto;
	position:absolute;
	right:20px;
	bottom:10px;
}


#tabs .tab_link a:hover {
	color:#74a3bf;
	text-decoration:none;
}

#tabs .tab_link  a  {
	color:#557d95;
	font-weight:bold;
	text-decoration:underline;
}


/* panes */

#panes {
	background:#000000;
	width:800px; 
	height:548px;
	overflow:hidden;

	margin: 0px;
	margin-top:0px;
	/* must be relative so the individual panes can be absolutely positioned */
	position:relative;
	float:right;

}

/* crossfading effect needs absolute positioning from the elements */
#panes .pane {
	display:none;		
	position:absolute;
	top:0px;
	left:0px;
	font-size:13px;
	color:#444;	
		float:right;

}

#panes .bckgr_pane {

	position:absolute;
	top:0px;
	left:0px;
	
}


