/* This is part of the tabpane implementation. */

	/* This controls the display of individual tabs */

	.tabs a {
		float: left;          
		text-decoration: none;
		letter-spacing: 1px;
		color: white;
		background: #CCC url(../../../img/ashraem/blueshine.png) 50% 50% repeat-x;
		width: 18%;
		border-right: 1px solid #FFF;
		border-radius:8px 8px 0 0;
		-moz-border-radius:8px 8px 0 0; /* Firefox 3.6 and earlier */
		padding: 5px 0px 1px 0px;
		text-align: center;		
		white-space: wrap;
		height: 4em;
		overflow:hidden;
}
	.tabs a span {
		color: white; /* color added to fix IE6 bug */
	}

	/* this controls what the active tab looks like */
	.tabs a.tab-active { background-color: #074D86; }

	/* this controls what happens when the cursor is over the tab */
	.tabs a:hover, .tabs a#confex:hover {
		cursor: pointer;
		background-color: #7DBA00;
	}

	/* this controls the look of the bar under the tabs */
	.tabsline {
		clear: both;
		padding: 0;
		width: 100%;
		height: 1px;
		overflow:hidden;
		font-size: 1px;
		line-height: 1px;
		background: #ffffff;
		border-top: 1px solid #006EC7; /*Remove this to remove border between bar and tabs*/
	}

	.tab-panes {
		margin-top: 15px;
	}
/* end tabpanes */
