@charset "utf-8";
/*
*		Default Calendar table styles
*
*
*/

#container_agenda table {
	background-color: #fff;
	color: #666666;
	margin: 0 auto 0;
	padding: 5px;
	text-align: center;
}
	#container_agenda table td {
		padding: 0; 
		margin: 0;
		height: 22px;
		width: 22px;
		background-color:#f4f4f4;
		color: #666666;
		text-align:center;
	}
	#container_agenda table td a, #container_agenda table td a:hover {
		text-align:center;
	}
	
	
/* 
*		Table Headers (month & jumpTo arrows)
*
*
*
*/

#container_agenda table th.caption { 
	color: #777;
}
#container_agenda table th.title {
	width:155px;
	height:24px;
	line-height:24px;
	background:#fff url(../images/layout/calendar_title_bg.gif) center no-repeat;
}
	#container_agenda table th a {
		font-size: 12px;
		text-transform:uppercase;
		color: #444; 
		font-weight: bold;
	}
	#container_agenda table th.jumpto a {
		width:24px;
		height:24px;
		display:block;
		line-height:22px;
		background-image:url(../images/layout/calendar_jumpTo_bg.gif);
		font-size: 12px;
		font-weight: bold;
	}


/**
*		ACTTIVE DAYS, SPECIAL DAYS
*
*
**/

#container_agenda td.week_cell {
	/* empty fields*/
}
#container_agenda table td.event, 
#container_agenda table td.period {
	color : #518F0A;	
	background-color: #96D023;
}
#container_agenda table td.specialday {
	background-color: #96D023;
	color : #ffffff;
}
#container_agenda table td.today {
	font-weight: bold;
	border:1px solid red;	
}

#container_agenda table td.current {
	font-weight: bold;
	border:1px solid #666666;	
}
#container_agenda table td.specialday a:hover,
#container_agenda table td.event a:hover, 
#container_agenda table td.period a:hover {
	color: #fff;
	font-weight: bold;
}


/*  INFO : possible td classes  */
/*
 '<td class="today">'
 '<td class="event">'
 '<td class="event today">'
  
 '<td class="event current">'
 
 '<td class="period">'
 '<td class="period today">'
 '<td class="specialday">'
 '<td class="specialday today">'
 
*/


