/*-- Calendar styles --*/

.cal {
	margin: 10px;
}
	.cal .cal_header {
		width: 100%;
		position: relative;
		height: 50px;
		text-align: center;
	}
		.cal .cal_header strong {
			color: #a8161c;
			text-align: center;
			font-size: 140%;
			margin: 0;
		}
		.cal .cal_header a.prev {
			position: absolute;
			top: 0;
			left: 0;
		}
		.cal .cal_header a.next {
			position: absolute;
			top: 0;
			right: 0;
		}
	.cal table {
		width: 100%;
		border-collapse: collapse;
		border-spacing: 0;
	}
		.cal table th {
			background: transparent url(../images/calendar/cal_dow_bg.gif) repeat-x bottom;
			color: #BEBEBE;
			width: 14.2%;
			padding: 6px;
			border: 1px solid #BEBEBE;
			font-weight:bold;
			font: 11px Arial, Helvetica, sans-serif;
		}
		.cal table td {
			background: #F8F8F8;
			color: #56493d;
			padding: 6px;
			border: 1px solid #BEBEBE;
			height: 75px;
			vertical-align: top;
		}
			.cal table td .cal_date {
				float: right;
				display: block;
				color: #888;
				background: #fff;
				width: 18px;
				height: 18px;
				line-height: 18px;
				text-align: center;
				position: relative;
				top: -6px;
				right: -6px;
			}
			.cal table td.today {
				background: #fff;
			}
				.cal table td.today .cal_date {
					font-weight: bold;
				}
			.cal table td.blank {
				background: #efefef;
			}
			.cal table td.weekend {
				background: #efefef;
			}
		.cal .date-events {
			margin: 0 !important;
		}
			.cal .date-events li {
				list-style: none;
			}
			
/*-- Mini Calendar styles --*/

.mini_cal {
	margin: 0;
}
	.mini_cal .cal_header {
		width: 220px;
		position: relative;
		height: 20px;
		text-align: center; 
		margin: 0 auto;
	}
		.mini_cal .cal_header strong {
			color: #a8161c;
		}
		.mini_cal .cal_header a.prev {
			position: absolute;
			top: 0;
			left: 0;
		}
		.mini_cal .cal_header a.next {
			position: absolute;
			top: 0;
			right: 0;
		}
	.mini_cal table {
		width: 220px;
		border: 1px solid #BEBEBE;
		border-collapse: collapse;
		margin: 5px auto;
	}
		.mini_cal table th {
			background: transparent url(../images/calendar/minical_heading.gif) repeat-x;
			color: #AAA;
			padding: 4px 2px;
		}
		.mini_cal table td {
			padding: 4px 2px;
			text-align: center;
		}
		.mini_cal table tr.alt {
			background: #EBEBEB;
		}
	
/*-- Misc --*/

.cal_loading {
	display: block;
	width: 100%;
	height: 16px;
	background: transparent url(../images/calendar/indicator.gif) no-repeat 50% 50%;
}