/* root element for tabs  */
ul.css-tabs {  
	/*margin:0 !important; */
	padding:0;
	height:29px;
	border-bottom:1px solid #d1d1d1;	 	
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;

}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:13px;
	display:block;
	padding:5px 0px;
	text-decoration:none;
	/*border:1px solid #666;	
	border-bottom:0px;*/
	height:19px;
	/*background-color:#efefef;*/
	color:#777;
	margin-right:2px;
	/*-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;*/
	position:relative;
	top:1px;
        background:url(/images/tab_left.jpg) no-repeat scroll left top;		
}
ul.css-tabs a span{
        background:url(/images/tab_right.jpg) no-repeat scroll right top;
	padding:5px 10px;
        display:block;
        height:19px;
        margin-top:-5px;
}

ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	/*background-color:#ddd;
	border-bottom:2px solid #ddd;*/
	color:#000;	
	cursor:default;
        background:url(/images/tab_left_act.jpg) no-repeat scroll left top;
}
ul.css-tabs a.current span{
        background:url(/images/tab_right_act.jpg) no-repeat scroll right top;
}
	
/* tab pane */
.css-panes div {
	display:none;
	border:1px solid #d1d1d1;
	border-width:0 1px 1px 1px;
	min-height:150px;
	/*padding:15px 20px;*/
	background-color:#fff;	
}

table.calend td{
  border-bottom:none !important;
}


