/*-------------------------------------------------------------------------------------------
	CSS for small calendars.
	MJP // 03-09 // D3Corp
---------------------------------------------------------------------------------------------*/	



/*********************************************
	/ Main Calendar Div
*********************************************/	
div.small-calendar {
	width: 223px;
	height: 194px;
	padding: 0 30px 0 18px;
	background: url(../images/cal-bg.jpg) right top no-repeat;
	float: right;
}



/*********************************************
	/ Below are the individual rows for
	/ the calendar.
*********************************************/

/*calendar header */
.cal-previous {
	float: left;
	width: 25%;
}

.cal-month {
	width: 50%;
	padding: 2px 0 2px 0;
	float: left;
	text-align: center;
	font-weight: bold;
}

.cal-next {
	width: 25%;
	padding: 2px 0 2px 0;
	float: left;
}


/* the days and weeks layout */
div.cal-days {
	width: 14%;
	padding: 1px 0 1px 0;
	color: #F00;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	text-align: center;
	float: left;
	display: block;
}

div.cal-weeks {
	width: 14%;
	padding: 1px 0 1px 0;
	color: #000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	text-align: center;
	float: left;
	display: block;
}


	.cal-weeks a {
		text-decoration: none;
		background: #ccae5e;
		display: block;
		color: #320000;
		font-weight: bold;
	}
	
	.cal-weeks a:hover {
		text-decoration: none;
		background: #320000;
		color: #fff;
		font-weight: bold;
		display: block;
	}


/*********************************************
	/ Tooltip for the remember me area.  
*********************************************/

div.cal-title {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #320000;
	width: 97%;
	padding: 15px 0 0 0;
}


/*********************************************
	/ Tooltip for the remember me area.  
*********************************************/

#dhtmltooltip{
	position: absolute;
	left: -300px;
	width: 70px;
	padding: 2px;
	background: #fff;
	visibility: hidden;
	z-index: 20000;
	border: 1px solid #000;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 9px;
	color: #000;
	}

#dhtmlpointer{
	position:absolute;
	left: -300px;
	z-index: 21000;
	visibility: hidden;
}


/*********************************************
	/ Large Calendar  
*********************************************/

.calendar-list-title {
	background: #5b0e07;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	border: 1px solid #000;
	padding: 5px;
}

.calendar-list-title a{
	color: #fff;
	text-decoration: none;
}

.calendar-list-title a:hover {
	color: #FF6;
	text-decoration: underline;
}



