﻿/*Referenced by EventCalendar.aspx*/

/*Check colors here: http://www.killersites.com/HTML_COLOR_CODES/ColorWheel.htm*/

.eCal /*covers caption, day names*/
{
   background-color:#99AAAA; /*#94B2AE*/
   color:Navy;
   text-align:center;
   font-size:20px;
   line-height:26px;
	/*CSS to center the calendar*/
		margin-left: auto;
		margin-right: auto;	
	/* Border for calendar can only be set in asp:Calendar / border: ridge 5px black; / border here only impacts month title*/
}

/*Common Settings*/
 .eCalToday a:hover,.eCalDay a:hover, .eCalDayWkEnd a:hover, .eCalDayOtherMonth a:hover
{
	font-weight:bold;
	border: dashed 1px black;
}

 .eCalDayWkEnd, .eCalDayOtherMonth
{
   text-decoration:none;
   background-color:#88AA99; /*#89a39f*/
}


.eCalToday a, .eCalDay a, .eCalDayWkEnd a, .eCalDayOtherMonth a
{
   text-decoration:none;
}

/*Today Settings*/
.eCalToday
{
	border: solid 1px black;
}

/*Day Settings*/
.eCalDay
{
   text-decoration:none;
}

/*Selected Day Settings*/
.eCalSelDay a
{
	text-decoration:none;
	font-weight:bold;
	/*the Gray back and white letters are the default from the control*/	 
}
