.calendar
{
	border: 0px solid ;
	/*font-size: 11px;*/
	color: #006C8A;
	cursor: default;
	background: #F7F7F7;
	font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar thead .head
{
	/* "<<", "<", ">", ">>" buttons have this class */
	text-align: center;
	/* They are the navigation buttons */
	padding: 2px;
	/* Make the buttons seem like they're pressing */
	background: #FBDB96;
	color: #006C8A;
}

.calendar thead .title
{
	/* This holds the current "month, year" */
	/* font-weight: bold; Pressing it will take you to the current date */
	text-align: center;
	background: #FBDB96;		/*#fee;*/
	color: #006C8A;
	padding: 2px;
}

.calendar thead .headrow
{
	/* Row <TR> containing navigation buttons */
	background: #556;
	color: white;
}

.calendar thead .name
{
	/* Cells <TD> containing the day names */
	border-bottom: 1px solid #FBDB96; /*Hotisontal Line Under Day Names*/
	padding: 2px;
	text-align: center;
	color: Silver;
}

.calendar thead .weekend
{
	/* How a weekend day name shows in header */
	color: #f00;
}

.calendar thead .hilite
{
	/* How do the buttons in header appear when hover */
	background: #D3D3D3; /* #DFA200; */
	border: 1px solid;
	padding: 1px;
	cursor: hand;
}

.calendar thead .active
{
	/* Active (pressed) buttons in header */
	background: #77c;
	padding: 2px 0px 0px 2px;
}

.calendar thead .daynames
{
	/* Row <TR> containing the day names */
	background: #F7F7F7;
	color: #f00;
	
}


/* The body part -- contains all the days in month. */

.calendar tbody .day
{
	/* Cells <TD> containing month days dates */
	/*width: 20px;*/
	text-align: right;
	padding: 2px 4px 2px 2px;
}

.calendar tbody .no_data_day
{
	/* Cells <TD> containing month days dates */
	/*width: 20px;*/
	color: Silver;
	text-align: right;
	padding: 2px 4px 2px 2px;
}

.calendar tbody .no_data_weekend
{
	/* Cells showing weekend days */
	color: #ff9999;
}

.calendar tbody .no_data_TrueToday
{
	/* Cell showing today date */
	color: Silver;
	border: 1px solid silver;
	padding: 1px 3px 1px 1px;
	text-align : right;
}

.calendar tbody .hilite
{
	/* Hovered cells <TD> */
	background: #D3D3D3;
	padding: 1px 3px 1px 1px;
	border: 1px solid;
	cursor: hand;
}

.calendar tbody .active
{
	/* Active (pressed) cells <TD> */
	background: #FBDB96;
	padding: 2px 2px 0px 2px;
}

.calendar tbody .today
{
	/* Cell showing today date */
	font-weight: bold;
	border: 1px solid; /* #000; */
	padding: 1px 3px 1px 1px;
	background: #FBDB96;   /*Selected Cell*/
	text-align : right;
}

.calendar tbody .TrueToday
{
	/* Cell showing today date */
	border: 1px solid silver;
	padding: 1px 3px 1px 1px;
	text-align : right;
}

.calendar tbody .weekend
{
	/* Cells showing weekend days */
	color: #f00;
}

.calendar tbody .emptycell
{
	/* Empty cells (the best is to hide them) */
	visibility: hidden;
}

.calendar tbody .emptyrow
{
	/* Empty row (some months need less than 6 rows) */
	display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow
{
	/* The <TR> in footer (only one right now) */
	text-align: center;
	background: #556;
	color: white;
}

.calendar tfoot .button
{
	/* The "Close" button cell <TD> */
	padding: 2px;
}

.calendar tfoot .hilite
{
	/* Hover style for buttons in footer */
	background: #aaf;
	border: 1px solid #04f;
	padding: 1px;
}

.calendar tfoot .active
{
	/* Active (pressed) style for buttons in footer */
	background: #77c;
	padding: 2px 0px 0px 2px;
}

.calendar tfoot .ttip
{
	/* Tooltip (status bar) cell <TD> */
	background: #F7F7F7;
	color: #006C8A; /* #DFA200; */
}
