﻿/* Calendar Control set height and width of main div */
div.mainCalendar, iframe.shim
{
	width: 186px;
	height: 130px;
	/*
	width: 194px;
	height: 138px;
	*/
	/*
	width: 186px;
	height: 130px;
	*/
	position: absolute;
}

div.mainCalendar
{
	padding: 4px 4px 4px 4px;
	border: solid 1px #585858;
	background: #ff9801;
	/* for setting transitional box model for other browsers than IE
	If using strict mode:
		- remove box-sizing/-moz-box-sizing
		- change width/height of the main div (minus padding) 
		- in this case that would be width: 186px; height: 130px;	
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;*/
}

select.ddlMonth
{
	width: 94px;
	height: 18px; /* Height property seems to be only working in IE */
	font-family: Arial;
	font-size: 10px;
	color: #000000;
	font-weight: bold;
}

select.ddlYear
{
	width: 58px;
	height: 18px; /* Height property seems to be only working in IE */
	margin-left: 27px;
	font-family: Arial;
	font-size: 10px;
	color: #000000;
	font-weight: bold;
}

table#tbDays
{
	width: 184px;
	/*height: 105px;*/
	border: solid 1px #585858;
	border-collapse:collapse;
	margin-top: 4px;
	cursor: default;
}

td.DayHighlighted, td.DaySelected, td.Day, td.DaysHeader, td.DayOtherMonth
{
	width: 25px;
	text-align: center;
	border: solid 1px #585858;
	font-family: Arial;
	font-size: 10px;
	font-weight: bold;
}

td.DaysHeader
{
	background: #898989;
	color: #000000;
}

td.Day
{
	background: #ffffff;
	color: #ff9801;
}

td.DaySelected
{
	background: #fecd82;
	color: #000000;
}

td.DayHighlighted
{
	background: #C3F9FF;
	color: #ff9801;
	text-decoration: underline;
}

td.DayOtherMonth
{	
	background: #cccccc;
	color: #ffffff;
}

