/* MailSite ExpressPro 8.0.4.7 */
/* CalendarManager.css Copyright 2005-2007 Rockliffe, Inc. */

/* An item in the nav bar.  Contains a CalendarItemText and a CalendarItemColor */
.CalendarItem
{
}

/* The text that goes with a CalendarItemColor. */
.CalendarItemText
{
	/* Better alignment of the text with the CalendarItemColor, but only works in IE */
	padding-bottom: 2px;
}

/* An img tag inside a CalendarItem */
.CalendarItemColor 
{
	border: thin solid black;
	/* In the absence of any overridden colour, use white as the background */
	background-color: White;
	width: 12px;
	height: 12px;
	/* CArt's nav bar creates a table per row with an empty cell at the end with width 100%.  This means we must
		make sure our cell, which CArt encloses in a nobr tag, contains inline-block elements */
	display: inline-block;
}

/* Used on the edit form to describe a color choice.  A span containing a radio input */
.CalendarItemColorChoice
{
	border: thin solid black;
}

/* A radio input */
.CalendarItemColorChoice input
{
	/* Have to say important, else IE gets stuck with the width:90% form EditorValue: input */
	width: auto !important;
}