/* set height and width of main div */
div.mainCalendar, iframe.shim
{
	width: 186px;
	height: 130px;
	position: absolute;
}

div.mainCalendar
{
	padding: 4px 4px 4px 4px;
	border: solid 1px #666666;
	background: #e4e5df;
	/* 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: Verdana;
	font-size: 10px;
	color: #666666;
	font-weight: bold;
}

select.ddlYear
{
	width: 58px;
	height: 18px; /* Height property seems to be only working in IE */
	margin-left: 27px;
	font-family: Verdana;
	font-size: 10px;
	color: #666666;
	font-weight: bold;
}

table#tbDays
{
	width: 184px;
	height: 105px;
	border: solid 1px #adadad;
	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 #adadad;
	font-family: Verdana;
	font-size: 10px;
	font-weight: bold;
}

td.DaysHeader
{
	background: #fcf2e3;
	color: #fe9900;
}

td.Day
{
	background: #FFFFFF;
	color: #666666;
}

td.DaySelected
{
	background: #fe9900;
	color: #FFFFFF;
}

td.DayHighlighted
{
	background: #C3F9FF;
	color: #2E5FAA;
}

td.DayOtherMonth
{	
	background: #F2F2F2;
	color: #AAAAAA;
}
