/*-------------------------------------------------------------------------------------------
	CSS for small calendars.
	MJP // 03-09 // D3Corp
---------------------------------------------------------------------------------------------*/	



/*********************************************
	/ Main Calendar Div
*********************************************/	
div.small-calendar {
	width: 196px;
	padding: 5px;
	border: 1px solid #c1c8de;
	float: right;
}


/*********************************************
	/ Below are the individual rows for
	/ the calendar.
*********************************************/

/*calendar header */

div.cal-top {
	width: 196px;
	color: #262f48;
	background: #c1c8de;
}

.cal-previous {
	float: left;
	width: 25%;
}

.cal-month {
	width: 50%;
	padding: 2px 0 2px 0;
	float: left;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
}

.cal-next {
	width: 25%;
	float: right;
}


/* the days and weeks layout */
div.cal-days {
	width: 28px;
	height: 25px;
	background: #6d7fb2;
	padding: 1px 0 1px 0;
	color: #fff;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 11px;
	line-height: 24px;
	text-align: center;
	float: left;
	display: block;
}

div.cal-weeks {
	width: 28px;
	height: 25px;
	padding: 1px 0 1px 0;
	color: #20273c;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 11px;
	line-height: 24px;
	text-align: center;
	float: left;
	display: block;
}


	.cal-weeks a {
		text-decoration: none;
		background: #d2d6e1;
		display: block;
		color: #7a87b0;
		font-weight: bold;
	}
	
	.cal-weeks a:hover {
		text-decoration: none;
		background: #20273c;
		color: #fff;
		font-weight: bold;
		display: block;
	}


/*********************************************
	/ Tooltip for the remember me area.  
*********************************************/

div.cal-title {
	font-family: Tahoma, Geneva, sans-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;
}
