
/* root element for tabs  */
ul.css-tabs {
    margin:0 !important;
    padding:0;
    height:30px;
   
}

/* single tab */
ul.css-tabs li {
    float:left;
    padding:0;
    margin:0;
    list-style-type:none; background:none
}

/* link inside the tab. uses a background image */
ul.css-tabs a {
    float:left;
   	display:block;
    padding:0;
    text-decoration:none;
	text-align:center;
	margin:0 10px;
 	padding-top:37px;
    height:100px;
    width:93px;
	background:url(../images/tabs.png) no-repeat;
	color:#ffffff;
    position:relative;
    top:0;
    outline:0;
	cursor:pointer;
	font-size:30px; text-align:center;
}

ul.css-tabs a:hover {
   
    
}

/* selected tab */
ul.css-tabs a.current {
    background:url(../images/tabs.png) no-repeat left -137px;
    
    color:#fff;
    cursor:default;
}


/* tab pane */
.css-panes div {
   
    
    
	width:718px;
	height:200px;
	border:1px solid #e1e0dd;
    padding:15px;
   
}


