/* CSS Document */


.calendarContainer {
	position: absolute;
	width: 200px;
	height: 100%;
	top: 0px;
	left: -10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;

	margin: 0px;
	padding: 0px;

}

/*
	the background image can be a transparent png ig you like.
	There should be a 10px margin at the left, right and bottom sides of the mage to allow for shadows
	this means that hte actual background size is 160 x 170 
*/
.calendar {
	width: 200px;
	height: 100%;
	position: inherit;
	background: #fff; /* For browsers that do not support gradients */
    /*border: 1px;
    border-style: solid;
    border-color: #191919;	*/
    background-position:top left;

	margin: 0 0 0 10px;
	padding: 0px;
	/*_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/calendar/calendarbg.png', sizingMethod='scale'); */
	_background-image:none; 
	
}



.calendar .heading {
	text-align:center;
	position: absolute;
	
	width: 200px;
	padding: 0px;
	margin: 0px 0px 0px 0px;
	top: 3px;



}

.calendar .heading h1 {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}

.calendar .heading .nextMonth {
	position: absolute;
	top: 0px;
	right: 22px;
	width: 9px;
	height: 11px;
	text-decoration:none;
	font-weight:bold;
	font-size: 16px;
	
}

.calendar .heading .prevMonth {
	position: absolute;
	top:0px;
	left: 14px;
	width: 9px;
	height: 11px;
	text-decoration:none;
	font-weight:bold;
	font-size: 16px;
}

.calendar .dates {
	text-align:center;
	position:absolute;
	width: 100%;
	top: 22px;
	z-index:3;
}

.calendar .dates .datesTable {
	margin: 3px auto 0px auto;
	padding: 0px;
}

.calendar .dates .datesTable th {
	border-bottom: 1px dashed #555555;
	margin-bottom: 3px;
	font-size:13px;
}

.calendar .dates .datesTable td {
	padding: 2px;
	margin: 0px;
	text-align:center;
}

.calendar .dates .datesTable td a {
	text-decoration:none;
	display: block;
	padding: 0px;
	margin: 0px;

}


/* ===== Off dates ===== */
.calendar .dates .datesTable .dateOff {
/*	background-color:#aac6e5;
	color:#333333; */
}
.calendar .dates .datesTable .dateOff a {
	color:#333333;
	text-decoration:none;
}
.calendar .dates .datesTable .dateOff a:hover{
	color:#c83d82;
	background-color:#DDDDDD;
	text-decoration:none;
}

/* ===== On dates ===== */
.calendar .dates .datesTable .dateOn {
	background-color:#66CCFF;
	color:#999999;
}
.calendar .dates .datesTable .dateOn a{
	color:#999999;
}
.calendar .dates .datesTable .dateOn a:hover{

}

/* ===== Permenant On dates ===== */
.calendar .dates .datesTable .datePermenantOn {
	background-color:#66FF66;
	color:#999999;
}
.calendar .dates .datesTable .datePermenantOn a{
	color:#999999;
}
.calendar .dates .datesTable .datePermenantOn a:hover{

}

