/*=======================================================================================================
//	CALENDAR STYLES
//-------------------------------------------------------------------------------------------------------
//		Standard eventsmgr_makecalendar
//=======================================================================================================*/
/*-------------------------------------------------------------------------------------------------------
//	Section navigation conainer
//-------------------------------------------------------------------------------------------------------*/
table#calendartable
{
	empty-cells:			show;
}

/*=========================================================================================================
//	Month headers
//=======================================================================================================*/
/*---------------------------------------------------------------------------------------------------------
//	Position & spacing only
//-------------------------------------------------------------------------------------------------------*/
table#calendartable th
{
	vertical-align:			top;
	text-align:				left;
	white-space:			nowrap;
	padding:				1.0em 0em 0em;
}

/*---------------------------------------------------------------------------------------------------------
//	Month headers, text styling
//-------------------------------------------------------------------------------------------------------*/
h2
{
	color:					rgb(119,119,119);
	color:					rgb(59,121,166);
}

table#calendartable th.nav
{
	vertical-align:			bottom;
	text-align:				right;
}

/*=========================================================================================================
//	Calendar content cells
//=======================================================================================================*/
/*---------------------------------------------------------------------------------------------------------
//	Position & spacing
//-------------------------------------------------------------------------------------------------------*/
table#calendartable td
{
	vertical-align:			top;
	padding:				1.0em 1.0em 0.25em 0em;
}

/*---------------------------------------------------------------------------------------------------------
//	Position & spacing
//-------------------------------------------------------------------------------------------------------*/
table#calendartable td.newday
{
	border-top:				1px solid rgb(177,177,177);
	padding-top:			0.25em;
}

/*=========================================================================================================
//	Date/weekday block
//=======================================================================================================*/
/*---------------------------------------------------------------------------------------------------------
//	Day number
//-------------------------------------------------------------------------------------------------------*/
h3
{
	margin:					0px;
	padding:				0px;
	padding-top:			0.1em;
	text-align:				center;
	font-weight:			bold;
	color:					rgb(59,121,166);
	font-size:				20px;
}

/*	Make sure anchor link (day numbers are anchors) does not change color	*/
h3 a,
h3 a:hover
{
	color:					rgb(184,184,141)!important;
}

/*---------------------------------------------------------------------------------------------------------
//	Weekday
//-------------------------------------------------------------------------------------------------------*/
.day-weekday
{
	text-align:				center;
	text-transform:			uppercase;
	color:					rgb(119,119,119);
}

/*=========================================================================================================
//	Event content block
//=======================================================================================================*/
/*---------------------------------------------------------------------------------------------------------
//	Event title
//-------------------------------------------------------------------------------------------------------*/
h4
{
	margin:					0px;
	padding:				0px;
	color:					rgb(102,102,102);
	font-size: 1.2em;
	line-height: 1.4em;
}

/*---------------------------------------------------------------------------------------------------------
//	Event body text
//-------------------------------------------------------------------------------------------------------*/
.smtext
{
	margin:					0px;
	padding:				0px;
	color:					rgb(102,102,102);
	font-size: 1.2em;
	line-height: 1.4em;
}

/*=========================================================================================================
//	Calendar thumbnail
//=======================================================================================================*/
table.calendar-thumbnail
{
	width:					170px;
	margin-bottom:			25px;
}

table.calendar-thumbnail th
{
	margin-bottom:			7px;
	padding-bottom:			7px;
	border-bottom:			1px solid #EEEEEE;
	text-align:				left;
	font-weight:			bold;
}

table.calendar-thumbnail th a
{
	font-size:				9px;
}

table.calendar-thumbnail td,
table.calendar-thumbnail td.active
{
	width:					1.8em;
	height:					1.6em;
	border:					1px solid #EEEEEE;
	text-align:				center;
	padding-top:			3px;
}

table.calendar-thumbnail td.active
{
	background-color:		pink;
}

table.calendar-thumbnail td.previous
{
	width:					50%;
	text-align:				left;
	border:					none;
}

table.calendar-thumbnail td.next
{
	width:					50%;
	text-align:				right;
	border:					none;
}

table.calendar-thumbnail a
{
}