/* Main Table Setup Incluidng Date Number Fonts, Size and Color */
.mainTable
{
	background-color: #FFFFFF;
	padding-left: 10px;
}

/* Month and Year Row Setup */
.monthYearRow
{
	line-height: 10px;
	/*background-color: #8AAAB0;*/
	text-align: left;
	vertical-align: middle;
	/*background-image: url(monthBg.gif);*/
	border-width: 5px 0px 0px 0px;
	border-style: solid;
	border-color: #DCD2B7;
}
/* Month and Year Text Setup */
.monthYearText
{
	font-family: Tahoma, Verdana, Arial, Geneva, sans-serif;
	font-size: 10px;
	color: #827156;
	text-transform: uppercase;
	line-height: 15px;
	font-weight: bold;
}

/* Day Names Row Setup */
.dayNamesRow
{
	line-height: 10px;
	background-color: #CCC;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
}
/* Day Name Setup */
.dayNamesText {
    font-family: Tahoma, Verdana, Arial, Geneva, sans-serif; 
	font-size: 9px; 
	color: #433D27;
	/*background-image: url(dayBg.gif);*/
	}

/* Alignments, Font Face, Size and Color for Date Numbers and Row Height */
.rows {
	font-family: Tahoma, Verdana, Arial, Geneva, sans-serif;
	font-size: 9px;
	color: #827156;
    line-height: 15pt;
	text-align: center;
	vertical-align: middle;
	}

/* Color of Today's Date */
.today { color: #900; }

/*
---------------------------------------------------------------------------
The classes below determine how the calendar background markings will look.
---------------------------------------------------------------------------

Remove the "background-image..." lines to remove graphics as table cell background images.

If you do use images, change the "background-color..." to a sililar color to that
of your image. This will help persons with slow connections to see the event markings.

You can optionally remove the "background-color..." lines to only use graphics.

*/

/* Normal Cell Background (date number with no event markings) */
.s2 {
	/*background-image:  url("cdef.gif");*/
	background-color: #F0EBDF;
	}
/* Empty Cell Background (empty cells with no date numbers) */
.s20 {
	/*background-image:  url("cdef5.gif");*/
	background-color: #F5F2EB;
	}
/* Mark Start Cell Background (usually a slashed graphic to show availability or solid for events) */
.s21 {
	/*background-image:  url("cdef2.gif");*/
	background-color: #DCD2B7;
	}
/* Mark Solid Cell Background (solid marked event date background) */
.s22 {
	/*background-image:  url("cdef2.gif");*/
	background-color: #DCD2B7;
	}
/* Mark End Cell Background (usually a slashed graphic to show availability or solid for events) */
.s23 {
	/*background-image:  url("cdef2.gif");*/
	background-color: #DCD2B7;
	}
/* Mark End/Start Cell Background (usually a slashed graphic to show availability or solid for events) */
.s24 {
	/*background-image:  url("cdef2.gif");*/
	background-color: #DCD2B7;
	}