.tabContainer{
	/* The UL */
	float:left;
	padding:5px;
	
}

#contentHolder{
	background-color:#EEEEEE;
	border:2px solid #FFFFFF;
	margin:10px;
	padding:10px;
	overflow:hidden;
	color:#444444;
	clear:both;
	min-height:360px;
	
}

#tabContent{

	margin-top:-15px;
	width:100%;
}

#tabContent, .tabContainer li a,#contentHolder{

}

.tabContainer li{
	/* This will arrange the LI-s next to each other */
	display:inline;
}

.tabContainer li a,.tabContainer li a:visited{
	/* Styling the hyperlinks of the tabs as colorful buttons */
	
	float:left;
	font-size:18px;
	
	/* display:block allows for additinal CSS rules to take effect, such as paddings: */
	display:block;
	
	padding:7px 43px 1px;
	margin:0px 8px;
	height:29px;
	
	/* Giving positioning */
	position:relative;
	
	/* CSS3 text-shadow */
	text-shadow:1px 1px 1px #CCCCCC;
}

#overLine{
	/* The line above the active button. */
	position:absolute;

	height:3px;
	background-color:white;
	width:90px;
	
	float:left;
	left:1px;
	top:-5px;
	overflow:hidden;
}

#tabs{
	margin:0;
	position:relative;
	width:640px;
}


ul .left{
	/* The left span in the hyperlink */
	
	height:37px;
	left:0;
	position:absolute;
	top:0;
	width:40px;
}

ul .right{
	/* The right span in the hyperlink */
	
	height:37px;
	right:0;
	position:absolute;
	top:0;
	width:40px;
}

/* Styling the colors individually: */


ul a.orange{	background:url(img/orange_mid.png) repeat-x top center;	color:#000000; text-decoration:none;}
ul a.orange span.left{ background:url(img/orange_left.png) no-repeat left top;}
ul a.orange span.right{ background:url(img/orange_right.png) no-repeat right top;}



/* The hover states: */
ul a:hover{	background-position:bottom center; text-decoration:none; color:#c54502;}
ul a:hover span.left{ background-position:left bottom;}
ul a:hover span.right{ background-position:right bottom;}

ul a:active  {background:url(img/orange_mid.png) repeat-x;	background-position:bottom center; text-decoration:none; color:#c54502;}
ul a:active  span.left{background:url(img/orange_left.png) no-repeat left bottom;}
ul a:active  span.right{background:url(img/orange_right.png) no-repeat left bottom;}

.preloader{
	display:block;
	margin:120px auto;
}

.clear{
	/* Old-school clear fix hack to clear the floats: */
	clear:both;
	height:1px;
	overflow:hidden;
}

