/**
 * these styles are for the calendar widget 
 */


/* only the calendar has a line, not the individual cells */
table.calendar {
	border: 1px solid #444;
	padding: 0px;
	width: 175px;
	margin-bottom: 5px;
}


.calendar {
	margin: 0px;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	line-height: 1.3em;
	font-size: 0.9em;
}

.calendar td {
	padding: 3px 3px;
	margin: 0px;
	color: #465046;
	background-color: #E2EFD2;
}

.calendar td:hover {
	background-color: #E8FF6F; /*#ffff66;*/
}

.calendar th {
	font-weight: bold;
	color: #333333;
	background: #CAE2AB;
	padding: 3px 0px 3px 0px; /* THIS PADDING FIXES HEADING ROLLOVER JUMPING PROBLEM THOUGH I HAVE NO IDEA WHY. ON BIGDIRTMUSIC.COM THERE IS NO JUMPING PROBLEM AND IT DOESN'T HAVE THIS PADDING; BIGDIRT'S CALENDAR.CSS IS IDENTICAL IN EVERY OTHER WAY EXCEPT COLORS*/
	
}

.calendar a {
	font-weight: bold;
	color: #701001;
	text-decoration: none;
}

.calendar a:hover {
	font-weight: bold;
	color: #606F01;
	text-decoration: underline;
}

.calendar th a {
	font-weight: bold;
	color: #701001;
	text-decoration: none;
}

.calendar th a:hover {
	font-weight: bold;
	color: #606F01;
	text-decoration: none;
}

.calendarToday {
	font-weight: normal;	
	text-decoration: none;
	background-color: #ff9;
	border: 1px solid #999;
}

.calendarToday a {
	font-weight: bold;	
	text-decoration: none;
	color: #701001;
}

.calendarToday a:hover {
	font-weight: bold;	
	text-decoration: underline;
	color: #606F01;
}



.calendarHeaderControl {
	font-size:13px;
}